has_many_and_belongs_to.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. <?php namespace Laravel\Database\Eloquent\Relationships;
  2. use Laravel\Str;
  3. use Laravel\Database\Eloquent\Model;
  4. use Laravel\Database\Eloquent\Pivot;
  5. class Has_Many_And_Belongs_To extends Relationship {
  6. /**
  7. * The name of the intermediate, joining table.
  8. *
  9. * @var string
  10. */
  11. protected $joining;
  12. /**
  13. * The other or "associated" key. This is the foreign key of the related model.
  14. *
  15. * @var string
  16. */
  17. protected $other;
  18. /**
  19. * The columns on the joining table that should be fetched.
  20. *
  21. * @var array
  22. */
  23. protected $with = array();
  24. /**
  25. * Create a new many to many relationship instance.
  26. *
  27. * @param Model $model
  28. * @param string $associated
  29. * @param string $table
  30. * @param string $foreign
  31. * @param string $other
  32. * @return void
  33. */
  34. public function __construct($model, $associated, $table, $foreign, $other)
  35. {
  36. $this->other = $other;
  37. $this->joining = $table ?: $this->joining($model, $associated);
  38. if (Pivot::$timestamps)
  39. {
  40. $this->with = array('id', 'created_at', 'updated_at');
  41. }
  42. parent::__construct($model, $associated, $foreign);
  43. }
  44. /**
  45. * Determine the joining table name for the relationship.
  46. *
  47. * By default, the name is the models sorted and joined with underscores.
  48. *
  49. * @return string
  50. */
  51. protected function joining($model, $associated)
  52. {
  53. $models = array(class_basename($model), class_basename($associated));
  54. sort($models);
  55. return strtolower($models[0].'_'.$models[1]);
  56. }
  57. /**
  58. * Get the properly hydrated results for the relationship.
  59. *
  60. * @return array
  61. */
  62. public function results()
  63. {
  64. return parent::get();
  65. }
  66. /**
  67. * Insert a new record into the joining table of the association.
  68. *
  69. * @param int $id
  70. * @param array $joining
  71. * @return bool
  72. */
  73. public function attach($id, $attributes = array())
  74. {
  75. $joining = array_merge($this->join_record($id), $attributes);
  76. return $this->insert_joining($joining);
  77. }
  78. /**
  79. * Detach a record from the joining table of the association.
  80. *
  81. * @param int $ids
  82. * @return bool
  83. */
  84. public function detach($ids)
  85. {
  86. if ( ! is_array($ids)) $ids = array($ids);
  87. return $this->pivot()->where_in($this->other_key(), $ids)->delete();
  88. }
  89. /**
  90. * Sync the joining table with the array of given IDs.
  91. *
  92. * @param array $ids
  93. * @return bool
  94. */
  95. public function sync($ids)
  96. {
  97. $current = $this->pivot()->lists($this->other_key());
  98. // First we need to attach any of the associated models that are not currently
  99. // in the joining table. We'll spin through the given IDs, checking to see
  100. // if they exist in the array of current ones, and if not we insert.
  101. foreach ($ids as $id)
  102. {
  103. if ( ! in_array($id, $current))
  104. {
  105. $this->attach($id);
  106. }
  107. }
  108. // Next we will take the difference of the current and given IDs and detach
  109. // all of the entities that exists in the current array but are not in
  110. // the array of IDs given to the method, finishing the sync.
  111. $detach = array_diff($current, $ids);
  112. if (count($detach) > 0)
  113. {
  114. $this->detach(array_diff($current, $ids));
  115. }
  116. }
  117. /**
  118. * Insert a new record for the association.
  119. *
  120. * @param Model|array $attributes
  121. * @param array $joining
  122. * @return bool
  123. */
  124. public function insert($attributes, $joining = array())
  125. {
  126. // If the attributes are actually an instance of a model, we'll just grab the
  127. // array of attributes off of the model for saving, allowing the developer
  128. // to easily validate the joining models before inserting them.
  129. if ($attributes instanceof Model)
  130. {
  131. $attributes = $attributes->attributes;
  132. }
  133. $model = $this->model->create($attributes);
  134. // If the insert was successful, we'll insert a record into the joining table
  135. // using the new ID that was just inserted into the related table, allowing
  136. // the developer to not worry about maintaining the join table.
  137. if ($model instanceof Model)
  138. {
  139. $joining = array_merge($this->join_record($model->get_key()), $joining);
  140. $result = $this->insert_joining($joining);
  141. }
  142. return $model instanceof Model and $result;
  143. }
  144. /**
  145. * Delete all of the records from the joining table for the model.
  146. *
  147. * @return int
  148. */
  149. public function delete()
  150. {
  151. return $this->pivot()->delete();
  152. }
  153. /**
  154. * Create an array representing a new joining record for the association.
  155. *
  156. * @param int $id
  157. * @return array
  158. */
  159. protected function join_record($id)
  160. {
  161. return array($this->foreign_key() => $this->base->get_key(), $this->other_key() => $id);
  162. }
  163. /**
  164. * Insert a new record into the joining table of the association.
  165. *
  166. * @param array $attributes
  167. * @return void
  168. */
  169. protected function insert_joining($attributes)
  170. {
  171. $attributes['created_at'] = $this->model->get_timestamp();
  172. $attributes['updated_at'] = $attributes['created_at'];
  173. return $this->joining_table()->insert($attributes);
  174. }
  175. /**
  176. * Get a fluent query for the joining table of the relationship.
  177. *
  178. * @return Query
  179. */
  180. protected function joining_table()
  181. {
  182. return $this->connection()->table($this->joining);
  183. }
  184. /**
  185. * Set the proper constraints on the relationship table.
  186. *
  187. * @return void
  188. */
  189. protected function constrain()
  190. {
  191. $other = $this->other_key();
  192. $foreign = $this->foreign_key();
  193. $this->set_select($foreign, $other)->set_join($other)->set_where($foreign);
  194. }
  195. /**
  196. * Set the SELECT clause on the query builder for the relationship.
  197. *
  198. * @param string $foreign
  199. * @param string $other
  200. * @return void
  201. */
  202. protected function set_select($foreign, $other)
  203. {
  204. $columns = array($this->model->table().'.*');
  205. $this->with = array_merge($this->with, array($foreign, $other));
  206. // Since pivot tables may have extra information on them that the developer
  207. // needs we allow an extra array of columns to be specified that will be
  208. // fetched from the pivot table and hydrate into the pivot model.
  209. foreach ($this->with as $column)
  210. {
  211. $columns[] = $this->joining.'.'.$column.' as pivot_'.$column;
  212. }
  213. $this->table->select($columns);
  214. return $this;
  215. }
  216. /**
  217. * Set the JOIN clause on the query builder for the relationship.
  218. *
  219. * @param string $other
  220. * @return void
  221. */
  222. protected function set_join($other)
  223. {
  224. $this->table->join($this->joining, $this->associated_key(), '=', $this->joining.'.'.$other);
  225. return $this;
  226. }
  227. /**
  228. * Set the WHERE clause on the query builder for the relationship.
  229. *
  230. * @param string $foreign
  231. * @return void
  232. */
  233. protected function set_where($foreign)
  234. {
  235. $this->table->where($this->joining.'.'.$foreign, '=', $this->base->get_key());
  236. return $this;
  237. }
  238. /**
  239. * Initialize a relationship on an array of parent models.
  240. *
  241. * @param array $parents
  242. * @param string $relationship
  243. * @return void
  244. */
  245. public function initialize(&$parents, $relationship)
  246. {
  247. foreach ($parents as &$parent)
  248. {
  249. $parent->relationships[$relationship] = array();
  250. }
  251. }
  252. /**
  253. * Set the proper constraints on the relationship table for an eager load.
  254. *
  255. * @param array $results
  256. * @return void
  257. */
  258. public function eagerly_constrain($results)
  259. {
  260. $this->table->where_in($this->joining.'.'.$this->foreign_key(), array_keys($results));
  261. }
  262. /**
  263. * Match eagerly loaded child models to their parent models.
  264. *
  265. * @param array $parents
  266. * @param array $children
  267. * @return void
  268. */
  269. public function match($relationship, &$parents, $children)
  270. {
  271. $foreign = $this->foreign_key();
  272. // For each child we'll just get the parent that connects to the child and set the
  273. // child model on the relationship array using the keys. Once we're done looping
  274. // through the children all of the proper relations will be set.
  275. foreach ($children as $key => $child)
  276. {
  277. $parent =& $parents[$child->pivot->$foreign];
  278. $parent->relationships[$relationship][$child->{$child->key()}] = $child;
  279. }
  280. }
  281. /**
  282. * Hydrate the Pivot model on an array of results.
  283. *
  284. * @param array $results
  285. * @return void
  286. */
  287. protected function hydrate_pivot(&$results)
  288. {
  289. foreach ($results as &$result)
  290. {
  291. // Every model result for a many-to-many relationship needs a Pivot instance
  292. // to represent the pivot table's columns. Sometimes extra columns are on
  293. // the pivot table that may need to be accessed by the developer.
  294. $pivot = new Pivot($this->joining);
  295. // If the attribute key starts with "pivot_", we know this is a column on
  296. // the pivot table, so we will move it to the Pivot model and purge it
  297. // from the model since it actually belongs to the pivot model.
  298. foreach ($result->attributes as $key => $value)
  299. {
  300. if (starts_with($key, 'pivot_'))
  301. {
  302. $pivot->{substr($key, 6)} = $value;
  303. $result->purge($key);
  304. }
  305. }
  306. // Once we have completed hydrating the pivot model instance, we'll set
  307. // it on the result model's relationships array so the developer can
  308. // quickly and easily access any pivot table information.
  309. $result->relationships['pivot'] = $pivot;
  310. $pivot->sync() and $result->sync();
  311. }
  312. }
  313. /**
  314. * Set the columns on the joining table that should be fetched.
  315. *
  316. * @param array $column
  317. * @return Relationship
  318. */
  319. public function with($columns)
  320. {
  321. $columns = (is_array($columns)) ? $columns : func_get_args();
  322. // The "with" array contains a couple of columns by default, so we will just
  323. // merge in the developer specified columns here, and we will make sure
  324. // the values of the array are unique to avoid duplicates.
  325. $this->with = array_unique(array_merge($this->with, $columns));
  326. $this->set_select($this->foreign_key(), $this->other_key());
  327. return $this;
  328. }
  329. /**
  330. * Get a model instance of the pivot table for the relationship.
  331. *
  332. * @return Pivot
  333. */
  334. public function pivot()
  335. {
  336. $key = $this->base->get_key();
  337. $foreign = $this->foreign_key();
  338. return with(new Pivot($this->joining))->where($foreign, '=', $key);
  339. }
  340. /**
  341. * Get the other or associated key for the relationship.
  342. *
  343. * @return string
  344. */
  345. protected function other_key()
  346. {
  347. return Relationship::foreign($this->model, $this->other);
  348. }
  349. /**
  350. * Get the fully qualified associated table's primary key.
  351. *
  352. * @return string
  353. */
  354. protected function associated_key()
  355. {
  356. return $this->model->table().'.'.$this->model->key();
  357. }
  358. }