HasManyThrough.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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. use think\model\Relation;
  16. class HasManyThrough extends Relation
  17. {
  18. // 中间关联表外键
  19. protected $throughKey;
  20. // 中间表模型
  21. protected $through;
  22. /**
  23. * 中间主键
  24. * @var string
  25. */
  26. protected $throughPk;
  27. /**
  28. * 架构函数
  29. * @access public
  30. * @param Model $parent 上级模型对象
  31. * @param string $model 模型名
  32. * @param string $through 中间模型名
  33. * @param string $foreignKey 关联外键
  34. * @param string $throughKey 关联外键
  35. * @param string $localKey 当前主键
  36. */
  37. public function __construct(Model $parent, $model, $through, $foreignKey, $throughKey, $localKey)
  38. {
  39. $this->parent = $parent;
  40. $this->model = $model;
  41. $this->through = (new $through)->db();
  42. $this->foreignKey = $foreignKey;
  43. $this->throughKey = $throughKey;
  44. $this->throughPk = $this->through->getPk();
  45. $this->localKey = $localKey;
  46. $this->query = (new $model)->db();
  47. }
  48. /**
  49. * 延迟获取关联数据
  50. * @access public
  51. * @param string $subRelation 子关联名
  52. * @param \Closure $closure 闭包查询条件
  53. * @return \think\Collection
  54. */
  55. public function getRelation($subRelation = '', $closure = null)
  56. {
  57. if ($closure) {
  58. $closure($this->query);
  59. }
  60. $this->baseQuery();
  61. return $this->query->relation($subRelation)->select();
  62. }
  63. /**
  64. * 根据关联条件查询当前模型
  65. * @access public
  66. * @param string $operator 比较操作符
  67. * @param integer $count 个数
  68. * @param string $id 关联表的统计字段
  69. * @param string $joinType JOIN类型
  70. * @return Query
  71. */
  72. public function has($operator = '>=', $count = 1, $id = '*', $joinType = 'INNER')
  73. {
  74. $model = App::parseName(App::classBaseName($this->parent));
  75. $throughTable = $this->through->getTable();
  76. $pk = $this->throughPk;
  77. $throughKey = $this->throughKey;
  78. $relation = (new $this->model)->db();
  79. $relationTable = $relation->getTable();
  80. $softDelete = $this->query->getOptions('soft_delete');
  81. if ('*' != $id) {
  82. $id = $relationTable . '.' . $relation->getPk();
  83. }
  84. return $this->parent->db()
  85. ->alias($model)
  86. ->field($model . '.*')
  87. ->join($throughTable, $throughTable . '.' . $this->foreignKey . '=' . $model . '.' . $this->localKey)
  88. ->join($relationTable, $relationTable . '.' . $throughKey . '=' . $throughTable . '.' . $this->throughPk)
  89. ->when($softDelete, function ($query) use ($softDelete, $relationTable) {
  90. $query->where($relationTable . strstr($softDelete[0], '.'), '=' == $softDelete[1][0] ? $softDelete[1][1] : null);
  91. })
  92. ->group($relationTable . '.' . $this->throughKey)
  93. ->having('count(' . $id . ')' . $operator . $count);
  94. }
  95. /**
  96. * 根据关联条件查询当前模型
  97. * @access public
  98. * @param mixed $where 查询条件(数组或者闭包)
  99. * @param mixed $fields 字段
  100. * @return Query
  101. */
  102. public function hasWhere($where = [], $fields = null)
  103. {
  104. $model = App::parseName(App::classBaseName($this->parent));
  105. $throughTable = $this->through->getTable();
  106. $pk = $this->throughPk;
  107. $throughKey = $this->throughKey;
  108. $modelTable = (new $this->model)->db()->getTable();
  109. if (is_array($where)) {
  110. $this->getQueryWhere($where, $modelTable);
  111. }
  112. $fields = $this->getRelationQueryFields($fields, $model);
  113. $softDelete = $this->query->getOptions('soft_delete');
  114. return $this->parent->db()
  115. ->alias($model)
  116. ->join($throughTable, $throughTable . '.' . $this->foreignKey . '=' . $model . '.' . $this->localKey)
  117. ->join($modelTable, $modelTable . '.' . $throughKey . '=' . $throughTable . '.' . $this->throughPk)
  118. ->when($softDelete, function ($query) use ($softDelete, $modelTable) {
  119. $query->where($modelTable . strstr($softDelete[0], '.'), '=' == $softDelete[1][0] ? $softDelete[1][1] : null);
  120. })
  121. ->group($modelTable . '.' . $this->throughKey)
  122. ->where($where)
  123. ->field($fields);
  124. }
  125. /**
  126. * 预载入关联查询(数据集)
  127. * @access protected
  128. * @param array $resultSet 数据集
  129. * @param string $relation 当前关联名
  130. * @param array $subRelation 子关联名
  131. * @param Closure $closure 闭包
  132. * @return void
  133. */
  134. public function eagerlyResultSet(array &$resultSet, $relation, array $subRelation = [], $closure = null)
  135. {
  136. $localKey = $this->localKey;
  137. $foreignKey = $this->foreignKey;
  138. $range = [];
  139. foreach ($resultSet as $result) {
  140. // 获取关联外键列表
  141. if (isset($result->$localKey)) {
  142. $range[] = $result->$localKey;
  143. }
  144. }
  145. if (!empty($range)) {
  146. $this->query->removeWhereField($foreignKey);
  147. $data = $this->eagerlyWhere([
  148. [$this->foreignKey, 'in', $range],
  149. ], $foreignKey, $relation, $subRelation, $closure);
  150. // 关联属性名
  151. $attr = App::parseName($relation);
  152. // 关联数据封装
  153. foreach ($resultSet as $result) {
  154. $pk = $result->$localKey;
  155. if (!isset($data[$pk])) {
  156. $data[$pk] = [];
  157. }
  158. foreach ($data[$pk] as &$relationModel) {
  159. $relationModel->setParent(clone $result);
  160. }
  161. // 设置关联属性
  162. $result->setRelation($attr, $this->resultSetBuild($data[$pk]));
  163. }
  164. }
  165. }
  166. /**
  167. * 预载入关联查询(数据)
  168. * @access protected
  169. * @param Model $result 数据对象
  170. * @param string $relation 当前关联名
  171. * @param array $subRelation 子关联名
  172. * @param Closure $closure 闭包
  173. * @return void
  174. */
  175. public function eagerlyResult($result, $relation, array $subRelation = [], $closure = null)
  176. {
  177. $localKey = $this->localKey;
  178. $foreignKey = $this->foreignKey;
  179. $pk = $result->$localKey;
  180. $this->query->removeWhereField($foreignKey);
  181. $data = $this->eagerlyWhere([
  182. [$foreignKey, '=', $pk],
  183. ], $foreignKey, $relation, $subRelation, $closure);
  184. // 关联数据封装
  185. if (!isset($data[$pk])) {
  186. $data[$pk] = [];
  187. }
  188. foreach ($data[$pk] as &$relationModel) {
  189. $relationModel->setParent(clone $result);
  190. }
  191. $result->setRelation(App::parseName($relation), $this->resultSetBuild($data[$pk]));
  192. }
  193. /**
  194. * 关联模型预查询
  195. * @access public
  196. * @param array $where 关联预查询条件
  197. * @param string $key 关联键名
  198. * @param string $relation 关联名
  199. * @param array $subRelation 子关联
  200. * @param Closure $closure
  201. * @return array
  202. */
  203. protected function eagerlyWhere(array $where, $key, $relation, array $subRelation = [], $closure = null)
  204. {
  205. // 预载入关联查询 支持嵌套预载入
  206. $throughList = $this->through->where($where)->select();
  207. $keys = $throughList->column($this->throughPk, $this->throughPk);
  208. if ($closure) {
  209. $closure($this->query);
  210. }
  211. $list = $this->query->where($this->throughKey, 'in', $keys)->select();
  212. // 组装模型数据
  213. $data = [];
  214. $keys = $throughList->column($this->foreignKey, $this->throughPk);
  215. foreach ($list as $set) {
  216. $data[$keys[$set->{$this->throughKey}]][] = $set;
  217. }
  218. return $data;
  219. }
  220. /**
  221. * 关联统计
  222. * @access public
  223. * @param Model $result 数据对象
  224. * @param Closure $closure 闭包
  225. * @param string $aggregate 聚合查询方法
  226. * @param string $field 字段
  227. * @param string $name 统计字段别名
  228. * @return integer
  229. */
  230. public function relationCount($result, $closure, $aggregate = 'count', $field = '*', &$name = null)
  231. {
  232. $localKey = $this->localKey;
  233. if (!isset($result->$localKey)) {
  234. return 0;
  235. }
  236. if ($closure) {
  237. $return = $closure($this->query);
  238. if ($return && is_string($return)) {
  239. $name = $return;
  240. }
  241. }
  242. $alias = App::parseName(App::classBaseName($this->model));
  243. $throughTable = $this->through->getTable();
  244. $pk = $this->throughPk;
  245. $throughKey = $this->throughKey;
  246. $modelTable = $this->parent->getTable();
  247. if (false === strpos($field, '.')) {
  248. $field = $alias . '.' . $field;
  249. }
  250. return $this->query
  251. ->alias($alias)
  252. ->join($throughTable, $throughTable . '.' . $pk . '=' . $alias . '.' . $throughKey)
  253. ->join($modelTable, $modelTable . '.' . $this->localKey . '=' . $throughTable . '.' . $this->foreignKey)
  254. ->where($throughTable . '.' . $this->foreignKey, $result->$localKey)
  255. ->$aggregate($field);
  256. }
  257. /**
  258. * 创建关联统计子查询
  259. * @access public
  260. * @param Closure $closure 闭包
  261. * @param string $aggregate 聚合查询方法
  262. * @param string $field 字段
  263. * @param string $name 统计字段别名
  264. * @return string
  265. */
  266. public function getRelationCountQuery($closure = null, $aggregate = 'count', $field = '*', &$name = null)
  267. {
  268. if ($closure) {
  269. $return = $closure($this->query);
  270. if ($return && is_string($return)) {
  271. $name = $return;
  272. }
  273. }
  274. $alias = App::parseName(App::classBaseName($this->model));
  275. $throughTable = $this->through->getTable();
  276. $pk = $this->throughPk;
  277. $throughKey = $this->throughKey;
  278. $modelTable = $this->parent->getTable();
  279. if (false === strpos($field, '.')) {
  280. $field = $alias . '.' . $field;
  281. }
  282. return $this->query
  283. ->alias($alias)
  284. ->join($throughTable, $throughTable . '.' . $pk . '=' . $alias . '.' . $throughKey)
  285. ->join($modelTable, $modelTable . '.' . $this->localKey . '=' . $throughTable . '.' . $this->foreignKey)
  286. ->whereExp($throughTable . '.' . $this->foreignKey, '=' . $this->parent->getTable() . '.' . $this->localKey)
  287. ->fetchSql()
  288. ->$aggregate($field);
  289. }
  290. /**
  291. * 执行基础查询(仅执行一次)
  292. * @access protected
  293. * @return void
  294. */
  295. protected function baseQuery()
  296. {
  297. if (empty($this->baseQuery) && $this->parent->getData()) {
  298. $alias = Loader::parseName(basename(str_replace('\\', '/', $this->model)));
  299. $throughTable = $this->through->getTable();
  300. $pk = $this->throughPk;
  301. $throughKey = $this->throughKey;
  302. $modelTable = $this->parent->getTable();
  303. $fields = $this->getQueryFields($alias);
  304. $this->query
  305. ->field($fields)
  306. ->alias($alias)
  307. ->join($throughTable, $throughTable . '.' . $pk . '=' . $alias . '.' . $throughKey)
  308. ->join($modelTable, $modelTable . '.' . $this->localKey . '=' . $throughTable . '.' . $this->foreignKey)
  309. ->where($throughTable . '.' . $this->foreignKey, $this->parent->{$this->localKey});
  310. $this->baseQuery = true;
  311. }
  312. }
  313. }