HasOne.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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\Loader;
  14. use think\Model;
  15. class HasOne extends OneToOne
  16. {
  17. /**
  18. * 架构函数
  19. * @access public
  20. * @param Model $parent 上级模型对象
  21. * @param string $model 模型名
  22. * @param string $foreignKey 关联外键
  23. * @param string $localKey 当前模型主键
  24. */
  25. public function __construct(Model $parent, $model, $foreignKey, $localKey)
  26. {
  27. $this->parent = $parent;
  28. $this->model = $model;
  29. $this->foreignKey = $foreignKey;
  30. $this->localKey = $localKey;
  31. $this->joinType = 'INNER';
  32. $this->query = (new $model)->db();
  33. if (get_class($parent) == $model) {
  34. $this->selfRelation = true;
  35. }
  36. }
  37. /**
  38. * 延迟获取关联数据
  39. * @access public
  40. * @param string $subRelation 子关联名
  41. * @param \Closure $closure 闭包查询条件
  42. * @return Model
  43. */
  44. public function getRelation($subRelation = '', $closure = null)
  45. {
  46. $localKey = $this->localKey;
  47. if ($closure) {
  48. $closure($this->query);
  49. }
  50. // 判断关联类型执行查询
  51. $relationModel = $this->query
  52. ->removeWhereField($this->foreignKey)
  53. ->where($this->foreignKey, $this->parent->$localKey)
  54. ->relation($subRelation)
  55. ->find();
  56. if ($relationModel) {
  57. $relationModel->setParent(clone $this->parent);
  58. }
  59. return $relationModel;
  60. }
  61. /**
  62. * 创建关联统计子查询
  63. * @access public
  64. * @param \Closure $closure 闭包
  65. * @param string $aggregate 聚合查询方法
  66. * @param string $field 字段
  67. * @param string $aggregateAlias 聚合字段别名
  68. * @return string
  69. */
  70. public function getRelationCountQuery($closure, $aggregate = 'count', $field = '*', &$aggregateAlias = '')
  71. {
  72. if ($closure) {
  73. $return = $closure($this->query);
  74. if ($return && is_string($return)) {
  75. $aggregateAlias = $return;
  76. }
  77. }
  78. return $this->query
  79. ->whereExp($this->foreignKey, '=' . $this->parent->getTable() . '.' . $this->localKey)
  80. ->fetchSql()
  81. ->$aggregate($field);
  82. }
  83. /**
  84. * 关联统计
  85. * @access public
  86. * @param Model $result 数据对象
  87. * @param \Closure $closure 闭包
  88. * @param string $aggregate 聚合查询方法
  89. * @param string $field 字段
  90. * @param string $name 统计字段别名
  91. * @return integer
  92. */
  93. public function relationCount($result, $closure, $aggregate = 'count', $field = '*', &$name = '')
  94. {
  95. $localKey = $this->localKey;
  96. if (!isset($result->$localKey)) {
  97. return 0;
  98. }
  99. if ($closure) {
  100. $return = $closure($this->query);
  101. if ($return && is_string($return)) {
  102. $name = $return;
  103. }
  104. }
  105. return $this->query
  106. ->where($this->foreignKey, '=', $result->$localKey)
  107. ->$aggregate($field);
  108. }
  109. /**
  110. * 根据关联条件查询当前模型
  111. * @access public
  112. * @param string $operator 比较操作符
  113. * @param integer $count 个数
  114. * @param string $id 关联表的统计字段
  115. * @param string $joinType JOIN类型
  116. * @return Query
  117. */
  118. public function has($operator = '>=', $count = 1, $id = '*', $joinType = 'INNER')
  119. {
  120. $table = $this->query->getTable();
  121. $model = basename(str_replace('\\', '/', get_class($this->parent)));
  122. $relation = basename(str_replace('\\', '/', $this->model));
  123. $localKey = $this->localKey;
  124. $foreignKey = $this->foreignKey;
  125. $softDelete = $this->query->getOptions('soft_delete');
  126. return $this->parent->db()
  127. ->alias($model)
  128. ->whereExists(function ($query) use ($table, $model, $relation, $localKey, $foreignKey) {
  129. $query->table([$table => $relation])
  130. ->field($relation . '.' . $foreignKey)
  131. ->whereExp($model . '.' . $localKey, '=' . $relation . '.' . $foreignKey)
  132. ->when($softDelete, function ($query) use ($softDelete, $relation) {
  133. $query->where($relation . strstr($softDelete[0], '.'), '=' == $softDelete[1][0] ? $softDelete[1][1] : null);
  134. });
  135. });
  136. }
  137. /**
  138. * 根据关联条件查询当前模型
  139. * @access public
  140. * @param mixed $where 查询条件(数组或者闭包)
  141. * @param mixed $fields 字段
  142. * @return Query
  143. */
  144. public function hasWhere($where = [], $fields = null)
  145. {
  146. $table = $this->query->getTable();
  147. $model = basename(str_replace('\\', '/', get_class($this->parent)));
  148. $relation = basename(str_replace('\\', '/', $this->model));
  149. if (is_array($where)) {
  150. $this->getQueryWhere($where, $relation);
  151. }
  152. $fields = $this->getRelationQueryFields($fields, $model);
  153. $softDelete = $this->query->getOptions('soft_delete');
  154. return $this->parent->db()
  155. ->alias($model)
  156. ->field($fields)
  157. ->join([$table => $relation], $model . '.' . $this->localKey . '=' . $relation . '.' . $this->foreignKey, $this->joinType)
  158. ->when($softDelete, function ($query) use ($softDelete, $relation) {
  159. $query->where($relation . strstr($softDelete[0], '.'), '=' == $softDelete[1][0] ? $softDelete[1][1] : null);
  160. })
  161. ->where($where);
  162. }
  163. /**
  164. * 预载入关联查询(数据集)
  165. * @access protected
  166. * @param array $resultSet 数据集
  167. * @param string $relation 当前关联名
  168. * @param string $subRelation 子关联名
  169. * @param \Closure $closure 闭包
  170. * @return void
  171. */
  172. protected function eagerlySet(&$resultSet, $relation, $subRelation, $closure)
  173. {
  174. $localKey = $this->localKey;
  175. $foreignKey = $this->foreignKey;
  176. $range = [];
  177. foreach ($resultSet as $result) {
  178. // 获取关联外键列表
  179. if (isset($result->$localKey)) {
  180. $range[] = $result->$localKey;
  181. }
  182. }
  183. if (!empty($range)) {
  184. $this->query->removeWhereField($foreignKey);
  185. $data = $this->eagerlyWhere([
  186. [$foreignKey, 'in', $range],
  187. ], $foreignKey, $relation, $subRelation, $closure);
  188. // 关联属性名
  189. $attr = Loader::parseName($relation);
  190. // 关联数据封装
  191. foreach ($resultSet as $result) {
  192. // 关联模型
  193. if (!isset($data[$result->$localKey])) {
  194. $relationModel = null;
  195. } else {
  196. $relationModel = $data[$result->$localKey];
  197. $relationModel->setParent(clone $result);
  198. $relationModel->isUpdate(true);
  199. }
  200. if (!empty($this->bindAttr)) {
  201. // 绑定关联属性
  202. $this->bindAttr($relationModel, $result, $this->bindAttr);
  203. } else {
  204. // 设置关联属性
  205. $result->setRelation($attr, $relationModel);
  206. }
  207. }
  208. }
  209. }
  210. /**
  211. * 预载入关联查询(数据)
  212. * @access protected
  213. * @param Model $result 数据对象
  214. * @param string $relation 当前关联名
  215. * @param string $subRelation 子关联名
  216. * @param \Closure $closure 闭包
  217. * @return void
  218. */
  219. protected function eagerlyOne(&$result, $relation, $subRelation, $closure)
  220. {
  221. $localKey = $this->localKey;
  222. $foreignKey = $this->foreignKey;
  223. $this->query->removeWhereField($foreignKey);
  224. $data = $this->eagerlyWhere([
  225. [$foreignKey, '=', $result->$localKey],
  226. ], $foreignKey, $relation, $subRelation, $closure);
  227. // 关联模型
  228. if (!isset($data[$result->$localKey])) {
  229. $relationModel = null;
  230. } else {
  231. $relationModel = $data[$result->$localKey];
  232. $relationModel->setParent(clone $result);
  233. $relationModel->isUpdate(true);
  234. }
  235. if (!empty($this->bindAttr)) {
  236. // 绑定关联属性
  237. $this->bindAttr($relationModel, $result, $this->bindAttr);
  238. } else {
  239. $result->setRelation(Loader::parseName($relation), $relationModel);
  240. }
  241. }
  242. /**
  243. * 执行基础查询(仅执行一次)
  244. * @access protected
  245. * @return void
  246. */
  247. protected function baseQuery()
  248. {
  249. if (empty($this->baseQuery)) {
  250. if (isset($this->parent->{$this->localKey})) {
  251. // 关联查询带入关联条件
  252. $this->query->where($this->foreignKey, '=', $this->parent->{$this->localKey});
  253. }
  254. $this->baseQuery = true;
  255. }
  256. }
  257. }