OneToOne.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\model\relation;
  12. use think\db\Query;
  13. use think\Exception;
  14. use think\Loader;
  15. use think\Model;
  16. use think\model\Relation;
  17. /**
  18. * Class OneToOne
  19. * @package think\model\relation
  20. *
  21. */
  22. abstract class OneToOne extends Relation
  23. {
  24. // 预载入方式 0 -JOIN 1 -IN
  25. protected $eagerlyType = 1;
  26. // 当前关联的JOIN类型
  27. protected $joinType;
  28. // 要绑定的属性
  29. protected $bindAttr = [];
  30. // 关联名
  31. protected $relation;
  32. /**
  33. * 设置join类型
  34. * @access public
  35. * @param string $type JOIN类型
  36. * @return $this
  37. */
  38. public function joinType($type)
  39. {
  40. $this->joinType = $type;
  41. return $this;
  42. }
  43. /**
  44. * 预载入关联查询(JOIN方式)
  45. * @access public
  46. * @param Query $query 查询对象
  47. * @param string $relation 关联名
  48. * @param mixed $field 关联字段
  49. * @param string $joinType JOIN方式
  50. * @param \Closure $closure 闭包条件
  51. * @param bool $first
  52. * @return void
  53. */
  54. public function eagerly(Query $query, $relation, $field, $joinType, $closure, $first)
  55. {
  56. $name = Loader::parseName(basename(str_replace('\\', '/', get_class($this->parent))));
  57. if ($first) {
  58. $table = $query->getTable();
  59. $query->table([$table => $name]);
  60. if ($query->getOptions('field')) {
  61. $masterField = $query->getOptions('field');
  62. $query->removeOption('field');
  63. } else {
  64. $masterField = true;
  65. }
  66. $query->field($masterField, false, $table, $name);
  67. }
  68. // 预载入封装
  69. $joinTable = $this->query->getTable();
  70. $joinAlias = $relation;
  71. $joinType = $joinType ?: $this->joinType;
  72. $query->via($joinAlias);
  73. if ($this instanceof BelongsTo) {
  74. $joinOn = $name . '.' . $this->foreignKey . '=' . $joinAlias . '.' . $this->localKey;
  75. } else {
  76. $joinOn = $name . '.' . $this->localKey . '=' . $joinAlias . '.' . $this->foreignKey;
  77. }
  78. if ($closure) {
  79. // 执行闭包查询
  80. $closure($query);
  81. // 使用withField指定获取关联的字段,如
  82. // $query->where(['id'=>1])->withField('id,name');
  83. if ($query->getOptions('with_field')) {
  84. $field = $query->getOptions('with_field');
  85. $query->removeOption('with_field');
  86. }
  87. }
  88. $query->join([$joinTable => $joinAlias], $joinOn, $joinType)
  89. ->field($field, false, $joinTable, $joinAlias, $relation . '__');
  90. }
  91. /**
  92. * 预载入关联查询(数据集)
  93. * @access protected
  94. * @param array $resultSet
  95. * @param string $relation
  96. * @param string $subRelation
  97. * @param \Closure $closure
  98. * @return mixed
  99. */
  100. abstract protected function eagerlySet(&$resultSet, $relation, $subRelation, $closure);
  101. /**
  102. * 预载入关联查询(数据)
  103. * @access protected
  104. * @param Model $result
  105. * @param string $relation
  106. * @param string $subRelation
  107. * @param \Closure $closure
  108. * @return mixed
  109. */
  110. abstract protected function eagerlyOne(&$result, $relation, $subRelation, $closure);
  111. /**
  112. * 预载入关联查询(数据集)
  113. * @access public
  114. * @param array $resultSet 数据集
  115. * @param string $relation 当前关联名
  116. * @param string $subRelation 子关联名
  117. * @param \Closure $closure 闭包
  118. * @param bool $join 是否为JOIN方式
  119. * @return void
  120. */
  121. public function eagerlyResultSet(&$resultSet, $relation, $subRelation, $closure, $join = false)
  122. {
  123. if ($join || 0 == $this->eagerlyType) {
  124. // 模型JOIN关联组装
  125. foreach ($resultSet as $result) {
  126. $this->match($this->model, $relation, $result);
  127. }
  128. } else {
  129. // IN查询
  130. $this->eagerlySet($resultSet, $relation, $subRelation, $closure);
  131. }
  132. }
  133. /**
  134. * 预载入关联查询(数据)
  135. * @access public
  136. * @param Model $result 数据对象
  137. * @param string $relation 当前关联名
  138. * @param string $subRelation 子关联名
  139. * @param \Closure $closure 闭包
  140. * @param bool $join 是否为JOIN方式
  141. * @return void
  142. */
  143. public function eagerlyResult(&$result, $relation, $subRelation, $closure, $join = false)
  144. {
  145. if (0 == $this->eagerlyType || $join) {
  146. // 模型JOIN关联组装
  147. $this->match($this->model, $relation, $result);
  148. } else {
  149. // IN查询
  150. $this->eagerlyOne($result, $relation, $subRelation, $closure);
  151. }
  152. }
  153. /**
  154. * 保存(新增)当前关联数据对象
  155. * @access public
  156. * @param mixed $data 数据 可以使用数组 关联模型对象 和 关联对象的主键
  157. * @return Model|false
  158. */
  159. public function save($data)
  160. {
  161. if ($data instanceof Model) {
  162. $data = $data->getData();
  163. }
  164. $model = new $this->model;
  165. // 保存关联表数据
  166. $data[$this->foreignKey] = $this->parent->{$this->localKey};
  167. return $model->save($data) ? $model : false;
  168. }
  169. /**
  170. * 设置预载入方式
  171. * @access public
  172. * @param integer $type 预载入方式 0 JOIN查询 1 IN查询
  173. * @return $this
  174. */
  175. public function setEagerlyType($type)
  176. {
  177. $this->eagerlyType = $type;
  178. return $this;
  179. }
  180. /**
  181. * 获取预载入方式
  182. * @access public
  183. * @return integer
  184. */
  185. public function getEagerlyType()
  186. {
  187. return $this->eagerlyType;
  188. }
  189. /**
  190. * 绑定关联表的属性到父模型属性
  191. * @access public
  192. * @param mixed $attr 要绑定的属性列表
  193. * @return $this
  194. */
  195. public function bind($attr)
  196. {
  197. if (is_string($attr)) {
  198. $attr = explode(',', $attr);
  199. }
  200. $this->bindAttr = $attr;
  201. return $this;
  202. }
  203. /**
  204. * 获取绑定属性
  205. * @access public
  206. * @return array
  207. */
  208. public function getBindAttr()
  209. {
  210. return $this->bindAttr;
  211. }
  212. /**
  213. * 一对一 关联模型预查询拼装
  214. * @access public
  215. * @param string $model 模型名称
  216. * @param string $relation 关联名
  217. * @param Model $result 模型对象实例
  218. * @return void
  219. */
  220. protected function match($model, $relation, &$result)
  221. {
  222. // 重新组装模型数据
  223. foreach ($result->getData() as $key => $val) {
  224. if (strpos($key, '__')) {
  225. list($name, $attr) = explode('__', $key, 2);
  226. if ($name == $relation) {
  227. $list[$name][$attr] = $val;
  228. unset($result->$key);
  229. }
  230. }
  231. }
  232. if (isset($list[$relation])) {
  233. $array = array_unique($list[$relation]);
  234. if (count($array) == 1 && null === current($array)) {
  235. $relationModel = null;
  236. } else {
  237. $relationModel = new $model($list[$relation]);
  238. $relationModel->setParent(clone $result);
  239. $relationModel->isUpdate(true);
  240. }
  241. if (!empty($this->bindAttr)) {
  242. $this->bindAttr($relationModel, $result, $this->bindAttr);
  243. }
  244. } else {
  245. $relationModel = null;
  246. }
  247. $result->setRelation(Loader::parseName($relation), $relationModel);
  248. }
  249. /**
  250. * 绑定关联属性到父模型
  251. * @access protected
  252. * @param Model $model 关联模型对象
  253. * @param Model $result 父模型对象
  254. * @return void
  255. * @throws Exception
  256. */
  257. protected function bindAttr($model, &$result)
  258. {
  259. foreach ($this->bindAttr as $key => $attr) {
  260. $key = is_numeric($key) ? $attr : $key;
  261. if (isset($result->$key)) {
  262. throw new Exception('bind attr has exists:' . $key);
  263. } else {
  264. $result->setAttr($key, $model ? $model->$attr : null);
  265. }
  266. }
  267. }
  268. /**
  269. * 一对一 关联模型预查询(IN方式)
  270. * @access public
  271. * @param array $where 关联预查询条件
  272. * @param string $key 关联键名
  273. * @param string $relation 关联名
  274. * @param string $subRelation 子关联
  275. * @param \Closure $closure
  276. * @return array
  277. */
  278. protected function eagerlyWhere($where, $key, $relation, $subRelation = '', $closure = null)
  279. {
  280. // 预载入关联查询 支持嵌套预载入
  281. if ($closure) {
  282. $closure($this->query);
  283. if ($field = $this->query->getOptions('with_field')) {
  284. $this->query->field($field)->removeOption('with_field');
  285. }
  286. }
  287. $list = $this->query->where($where)->with($subRelation)->select();
  288. // 组装模型数据
  289. $data = [];
  290. foreach ($list as $set) {
  291. $data[$set->$key] = $set;
  292. }
  293. return $data;
  294. }
  295. }