BelongsToMany.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  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\Collection;
  13. use think\db\Query;
  14. use think\Exception;
  15. use think\Loader;
  16. use think\Model;
  17. use think\model\Pivot;
  18. use think\model\Relation;
  19. class BelongsToMany extends Relation
  20. {
  21. // 中间表表名
  22. protected $middle;
  23. // 中间表模型名称
  24. protected $pivotName;
  25. // 中间表数据名称
  26. protected $pivotDataName = 'pivot';
  27. // 中间表模型对象
  28. protected $pivot;
  29. /**
  30. * 架构函数
  31. * @access public
  32. * @param Model $parent 上级模型对象
  33. * @param string $model 模型名
  34. * @param string $table 中间表名
  35. * @param string $foreignKey 关联模型外键
  36. * @param string $localKey 当前模型关联键
  37. */
  38. public function __construct(Model $parent, $model, $table, $foreignKey, $localKey)
  39. {
  40. $this->parent = $parent;
  41. $this->model = $model;
  42. $this->foreignKey = $foreignKey;
  43. $this->localKey = $localKey;
  44. if (false !== strpos($table, '\\')) {
  45. $this->pivotName = $table;
  46. $this->middle = basename(str_replace('\\', '/', $table));
  47. } else {
  48. $this->middle = $table;
  49. }
  50. $this->query = (new $model)->db();
  51. $this->pivot = $this->newPivot();
  52. }
  53. /**
  54. * 设置中间表模型
  55. * @access public
  56. * @param $pivot
  57. * @return $this
  58. */
  59. public function pivot($pivot)
  60. {
  61. $this->pivotName = $pivot;
  62. return $this;
  63. }
  64. /**
  65. * 设置中间表数据名称
  66. * @access public
  67. * @param string $name
  68. * @return $this
  69. */
  70. public function pivotDataName($name)
  71. {
  72. $this->pivotDataName = $name;
  73. return $this;
  74. }
  75. /**
  76. * 获取中间表更新条件
  77. * @param $data
  78. * @return array
  79. */
  80. protected function getUpdateWhere($data)
  81. {
  82. return [
  83. $this->localKey => $data[$this->localKey],
  84. $this->foreignKey => $data[$this->foreignKey],
  85. ];
  86. }
  87. /**
  88. * 实例化中间表模型
  89. * @access public
  90. * @param array $data
  91. * @param bool $isUpdate
  92. * @return Pivot
  93. * @throws Exception
  94. */
  95. protected function newPivot($data = [], $isUpdate = false)
  96. {
  97. $class = $this->pivotName ?: '\\think\\model\\Pivot';
  98. $pivot = new $class($data, $this->parent, $this->middle);
  99. if ($pivot instanceof Pivot) {
  100. return $isUpdate ? $pivot->isUpdate(true, $this->getUpdateWhere($data)) : $pivot;
  101. }
  102. throw new Exception('pivot model must extends: \think\model\Pivot');
  103. }
  104. /**
  105. * 合成中间表模型
  106. * @access protected
  107. * @param array|Collection|Paginator $models
  108. */
  109. protected function hydratePivot($models)
  110. {
  111. foreach ($models as $model) {
  112. $pivot = [];
  113. foreach ($model->getData() as $key => $val) {
  114. if (strpos($key, '__')) {
  115. list($name, $attr) = explode('__', $key, 2);
  116. if ('pivot' == $name) {
  117. $pivot[$attr] = $val;
  118. unset($model->$key);
  119. }
  120. }
  121. }
  122. $model->setRelation($this->pivotDataName, $this->newPivot($pivot, true));
  123. }
  124. }
  125. /**
  126. * 创建关联查询Query对象
  127. * @access protected
  128. * @return Query
  129. */
  130. protected function buildQuery()
  131. {
  132. $foreignKey = $this->foreignKey;
  133. $localKey = $this->localKey;
  134. // 关联查询
  135. $pk = $this->parent->getPk();
  136. $condition[] = ['pivot.' . $localKey, '=', $this->parent->$pk];
  137. return $this->belongsToManyQuery($foreignKey, $localKey, $condition);
  138. }
  139. /**
  140. * 延迟获取关联数据
  141. * @access public
  142. * @param string $subRelation 子关联名
  143. * @param \Closure $closure 闭包查询条件
  144. * @return Collection
  145. */
  146. public function getRelation($subRelation = '', $closure = null)
  147. {
  148. if ($closure) {
  149. $closure($this->query);
  150. }
  151. $result = $this->buildQuery()->relation($subRelation)->select();
  152. $this->hydratePivot($result);
  153. return $result;
  154. }
  155. /**
  156. * 重载select方法
  157. * @access public
  158. * @param mixed $data
  159. * @return Collection
  160. */
  161. public function select($data = null)
  162. {
  163. $result = $this->buildQuery()->select($data);
  164. $this->hydratePivot($result);
  165. return $result;
  166. }
  167. /**
  168. * 重载paginate方法
  169. * @access public
  170. * @param null $listRows
  171. * @param bool $simple
  172. * @param array $config
  173. * @return Paginator
  174. */
  175. public function paginate($listRows = null, $simple = false, $config = [])
  176. {
  177. $result = $this->buildQuery()->paginate($listRows, $simple, $config);
  178. $this->hydratePivot($result);
  179. return $result;
  180. }
  181. /**
  182. * 重载find方法
  183. * @access public
  184. * @param mixed $data
  185. * @return Model
  186. */
  187. public function find($data = null)
  188. {
  189. $result = $this->buildQuery()->find($data);
  190. if ($result) {
  191. $this->hydratePivot([$result]);
  192. }
  193. return $result;
  194. }
  195. /**
  196. * 查找多条记录 如果不存在则抛出异常
  197. * @access public
  198. * @param array|string|Query|\Closure $data
  199. * @return Collection
  200. */
  201. public function selectOrFail($data = null)
  202. {
  203. return $this->failException(true)->select($data);
  204. }
  205. /**
  206. * 查找单条记录 如果不存在则抛出异常
  207. * @access public
  208. * @param array|string|Query|\Closure $data
  209. * @return Model
  210. */
  211. public function findOrFail($data = null)
  212. {
  213. return $this->failException(true)->find($data);
  214. }
  215. /**
  216. * 根据关联条件查询当前模型
  217. * @access public
  218. * @param string $operator 比较操作符
  219. * @param integer $count 个数
  220. * @param string $id 关联表的统计字段
  221. * @param string $joinType JOIN类型
  222. * @return Query
  223. */
  224. public function has($operator = '>=', $count = 1, $id = '*', $joinType = 'INNER')
  225. {
  226. return $this->parent;
  227. }
  228. /**
  229. * 根据关联条件查询当前模型
  230. * @access public
  231. * @param mixed $where 查询条件(数组或者闭包)
  232. * @param mixed $fields 字段
  233. * @return Query
  234. * @throws Exception
  235. */
  236. public function hasWhere($where = [], $fields = null)
  237. {
  238. throw new Exception('relation not support: hasWhere');
  239. }
  240. /**
  241. * 设置中间表的查询条件
  242. * @access public
  243. * @param string $field
  244. * @param string $op
  245. * @param mixed $condition
  246. * @return $this
  247. */
  248. public function wherePivot($field, $op = null, $condition = null)
  249. {
  250. $this->query->where('pivot.' . $field, $op, $condition);
  251. return $this;
  252. }
  253. /**
  254. * 预载入关联查询(数据集)
  255. * @access public
  256. * @param array $resultSet 数据集
  257. * @param string $relation 当前关联名
  258. * @param string $subRelation 子关联名
  259. * @param \Closure $closure 闭包
  260. * @return void
  261. */
  262. public function eagerlyResultSet(&$resultSet, $relation, $subRelation, $closure)
  263. {
  264. $localKey = $this->localKey;
  265. $foreignKey = $this->foreignKey;
  266. $pk = $resultSet[0]->getPk();
  267. $range = [];
  268. foreach ($resultSet as $result) {
  269. // 获取关联外键列表
  270. if (isset($result->$pk)) {
  271. $range[] = $result->$pk;
  272. }
  273. }
  274. if (!empty($range)) {
  275. // 查询关联数据
  276. $data = $this->eagerlyManyToMany([
  277. ['pivot.' . $localKey, 'in', $range],
  278. ], $relation, $subRelation, $closure);
  279. // 关联属性名
  280. $attr = Loader::parseName($relation);
  281. // 关联数据封装
  282. foreach ($resultSet as $result) {
  283. if (!isset($data[$result->$pk])) {
  284. $data[$result->$pk] = [];
  285. }
  286. $result->setRelation($attr, $this->resultSetBuild($data[$result->$pk]));
  287. }
  288. }
  289. }
  290. /**
  291. * 预载入关联查询(单个数据)
  292. * @access public
  293. * @param Model $result 数据对象
  294. * @param string $relation 当前关联名
  295. * @param string $subRelation 子关联名
  296. * @param \Closure $closure 闭包
  297. * @return void
  298. */
  299. public function eagerlyResult(&$result, $relation, $subRelation, $closure)
  300. {
  301. $pk = $result->getPk();
  302. if (isset($result->$pk)) {
  303. $pk = $result->$pk;
  304. // 查询管理数据
  305. $data = $this->eagerlyManyToMany([
  306. ['pivot.' . $this->localKey, '=', $pk],
  307. ], $relation, $subRelation, $closure);
  308. // 关联数据封装
  309. if (!isset($data[$pk])) {
  310. $data[$pk] = [];
  311. }
  312. $result->setRelation(Loader::parseName($relation), $this->resultSetBuild($data[$pk]));
  313. }
  314. }
  315. /**
  316. * 关联统计
  317. * @access public
  318. * @param Model $result 数据对象
  319. * @param \Closure $closure 闭包
  320. * @param string $aggregate 聚合查询方法
  321. * @param string $field 字段
  322. * @param string $name 统计字段别名
  323. * @return integer
  324. */
  325. public function relationCount($result, $closure, $aggregate = 'count', $field = '*', &$name = '')
  326. {
  327. $pk = $result->getPk();
  328. if (!isset($result->$pk)) {
  329. return 0;
  330. }
  331. $pk = $result->$pk;
  332. if ($closure) {
  333. $return = $closure($this->query);
  334. if ($return && is_string($return)) {
  335. $name = $return;
  336. }
  337. }
  338. return $this->belongsToManyQuery($this->foreignKey, $this->localKey, [
  339. ['pivot.' . $this->localKey, '=', $pk],
  340. ])->$aggregate($field);
  341. }
  342. /**
  343. * 获取关联统计子查询
  344. * @access public
  345. * @param \Closure $closure 闭包
  346. * @param string $aggregate 聚合查询方法
  347. * @param string $field 字段
  348. * @param string $aggregateAlias 聚合字段别名
  349. * @return array
  350. */
  351. public function getRelationCountQuery($closure, $aggregate = 'count', $field = '*', &$aggregateAlias = '')
  352. {
  353. if ($closure) {
  354. $return = $closure($this->query);
  355. if ($return && is_string($return)) {
  356. $aggregateAlias = $return;
  357. }
  358. }
  359. return $this->belongsToManyQuery($this->foreignKey, $this->localKey, [
  360. [
  361. 'pivot.' . $this->localKey, 'exp', $this->query->raw('=' . $this->parent->getTable() . '.' . $this->parent->getPk()),
  362. ],
  363. ])->fetchSql()->$aggregate($field);
  364. }
  365. /**
  366. * 多对多 关联模型预查询
  367. * @access protected
  368. * @param array $where 关联预查询条件
  369. * @param string $relation 关联名
  370. * @param string $subRelation 子关联
  371. * @param \Closure $closure 闭包
  372. * @return array
  373. */
  374. protected function eagerlyManyToMany($where, $relation, $subRelation = '', $closure = null)
  375. {
  376. // 预载入关联查询 支持嵌套预载入
  377. if ($closure) {
  378. $closure($this->query);
  379. }
  380. $list = $this->belongsToManyQuery($this->foreignKey, $this->localKey, $where)
  381. ->with($subRelation)
  382. ->select();
  383. // 组装模型数据
  384. $data = [];
  385. foreach ($list as $set) {
  386. $pivot = [];
  387. foreach ($set->getData() as $key => $val) {
  388. if (strpos($key, '__')) {
  389. list($name, $attr) = explode('__', $key, 2);
  390. if ('pivot' == $name) {
  391. $pivot[$attr] = $val;
  392. unset($set->$key);
  393. }
  394. }
  395. }
  396. $set->setRelation($this->pivotDataName, $this->newPivot($pivot, true));
  397. $data[$pivot[$this->localKey]][] = $set;
  398. }
  399. return $data;
  400. }
  401. /**
  402. * BELONGS TO MANY 关联查询
  403. * @access protected
  404. * @param string $foreignKey 关联模型关联键
  405. * @param string $localKey 当前模型关联键
  406. * @param array $condition 关联查询条件
  407. * @return Query
  408. */
  409. protected function belongsToManyQuery($foreignKey, $localKey, $condition = [])
  410. {
  411. // 关联查询封装
  412. $tableName = $this->query->getTable();
  413. $table = $this->pivot->getTable();
  414. $fields = $this->getQueryFields($tableName);
  415. $query = $this->query
  416. ->field($fields)
  417. ->field(true, false, $table, 'pivot', 'pivot__');
  418. if (empty($this->baseQuery)) {
  419. $relationFk = $this->query->getPk();
  420. $query->join([$table => 'pivot'], 'pivot.' . $foreignKey . '=' . $tableName . '.' . $relationFk)
  421. ->where($condition);
  422. }
  423. return $query;
  424. }
  425. /**
  426. * 保存(新增)当前关联数据对象
  427. * @access public
  428. * @param mixed $data 数据 可以使用数组 关联模型对象 和 关联对象的主键
  429. * @param array $pivot 中间表额外数据
  430. * @return array|Pivot
  431. */
  432. public function save($data, array $pivot = [])
  433. {
  434. // 保存关联表/中间表数据
  435. return $this->attach($data, $pivot);
  436. }
  437. /**
  438. * 批量保存当前关联数据对象
  439. * @access public
  440. * @param array $dataSet 数据集
  441. * @param array $pivot 中间表额外数据
  442. * @param bool $samePivot 额外数据是否相同
  443. * @return array|false
  444. */
  445. public function saveAll(array $dataSet, array $pivot = [], $samePivot = false)
  446. {
  447. $result = [];
  448. foreach ($dataSet as $key => $data) {
  449. if (!$samePivot) {
  450. $pivotData = isset($pivot[$key]) ? $pivot[$key] : [];
  451. } else {
  452. $pivotData = $pivot;
  453. }
  454. $result[] = $this->attach($data, $pivotData);
  455. }
  456. return empty($result) ? false : $result;
  457. }
  458. /**
  459. * 附加关联的一个中间表数据
  460. * @access public
  461. * @param mixed $data 数据 可以使用数组、关联模型对象 或者 关联对象的主键
  462. * @param array $pivot 中间表额外数据
  463. * @return array|Pivot
  464. * @throws Exception
  465. */
  466. public function attach($data, $pivot = [])
  467. {
  468. if (is_array($data)) {
  469. if (key($data) === 0) {
  470. $id = $data;
  471. } else {
  472. // 保存关联表数据
  473. $model = new $this->model;
  474. $id = $model->insertGetId($data);
  475. }
  476. } elseif (is_numeric($data) || is_string($data)) {
  477. // 根据关联表主键直接写入中间表
  478. $id = $data;
  479. } elseif ($data instanceof Model) {
  480. // 根据关联表主键直接写入中间表
  481. $relationFk = $data->getPk();
  482. $id = $data->$relationFk;
  483. }
  484. if ($id) {
  485. // 保存中间表数据
  486. $pk = $this->parent->getPk();
  487. $pivot[$this->localKey] = $this->parent->$pk;
  488. $ids = (array) $id;
  489. foreach ($ids as $id) {
  490. $pivot[$this->foreignKey] = $id;
  491. $this->pivot->replace()
  492. ->exists(false)
  493. ->data([])
  494. ->save($pivot);
  495. $result[] = $this->newPivot($pivot, true);
  496. }
  497. if (count($result) == 1) {
  498. // 返回中间表模型对象
  499. $result = $result[0];
  500. }
  501. return $result;
  502. } else {
  503. throw new Exception('miss relation data');
  504. }
  505. }
  506. /**
  507. * 判断是否存在关联数据
  508. * @access public
  509. * @param mixed $data 数据 可以使用关联模型对象 或者 关联对象的主键
  510. * @return Pivot
  511. * @throws Exception
  512. */
  513. public function attached($data)
  514. {
  515. if ($data instanceof Model) {
  516. $id = $data->getKey();
  517. } else {
  518. $id = $data;
  519. }
  520. $pivot = $this->pivot
  521. ->where($this->localKey, $this->parent->getKey())
  522. ->where($this->foreignKey, $id)
  523. ->find();
  524. return $pivot ?: false;
  525. }
  526. /**
  527. * 解除关联的一个中间表数据
  528. * @access public
  529. * @param integer|array $data 数据 可以使用关联对象的主键
  530. * @param bool $relationDel 是否同时删除关联表数据
  531. * @return integer
  532. */
  533. public function detach($data = null, $relationDel = false)
  534. {
  535. if (is_array($data)) {
  536. $id = $data;
  537. } elseif (is_numeric($data) || is_string($data)) {
  538. // 根据关联表主键直接写入中间表
  539. $id = $data;
  540. } elseif ($data instanceof Model) {
  541. // 根据关联表主键直接写入中间表
  542. $relationFk = $data->getPk();
  543. $id = $data->$relationFk;
  544. }
  545. // 删除中间表数据
  546. $pk = $this->parent->getPk();
  547. $pivot[] = [$this->localKey, '=', $this->parent->$pk];
  548. if (isset($id)) {
  549. $pivot[] = [$this->foreignKey, is_array($id) ? 'in' : '=', $id];
  550. }
  551. $result = $this->pivot->where($pivot)->delete();
  552. // 删除关联表数据
  553. if (isset($id) && $relationDel) {
  554. $model = $this->model;
  555. $model::destroy($id);
  556. }
  557. return $result;
  558. }
  559. /**
  560. * 数据同步
  561. * @access public
  562. * @param array $ids
  563. * @param bool $detaching
  564. * @return array
  565. */
  566. public function sync($ids, $detaching = true)
  567. {
  568. $changes = [
  569. 'attached' => [],
  570. 'detached' => [],
  571. 'updated' => [],
  572. ];
  573. $pk = $this->parent->getPk();
  574. $current = $this->pivot
  575. ->where($this->localKey, $this->parent->$pk)
  576. ->column($this->foreignKey);
  577. $records = [];
  578. foreach ($ids as $key => $value) {
  579. if (!is_array($value)) {
  580. $records[$value] = [];
  581. } else {
  582. $records[$key] = $value;
  583. }
  584. }
  585. $detach = array_diff($current, array_keys($records));
  586. if ($detaching && count($detach) > 0) {
  587. $this->detach($detach);
  588. $changes['detached'] = $detach;
  589. }
  590. foreach ($records as $id => $attributes) {
  591. if (!in_array($id, $current)) {
  592. $this->attach($id, $attributes);
  593. $changes['attached'][] = $id;
  594. } elseif (count($attributes) > 0 && $this->attach($id, $attributes)) {
  595. $changes['updated'][] = $id;
  596. }
  597. }
  598. return $changes;
  599. }
  600. /**
  601. * 执行基础查询(仅执行一次)
  602. * @access protected
  603. * @return void
  604. */
  605. protected function baseQuery()
  606. {
  607. if (empty($this->baseQuery) && $this->parent->getData()) {
  608. $pk = $this->parent->getPk();
  609. $table = $this->pivot->getTable();
  610. $this->query
  611. ->join([$table => 'pivot'], 'pivot.' . $this->foreignKey . '=' . $this->query->getTable() . '.' . $this->query->getPk())
  612. ->where('pivot.' . $this->localKey, $this->parent->$pk);
  613. $this->baseQuery = true;
  614. }
  615. }
  616. }