has_many_and_belongs_to.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  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 tbale that should be fetched.
  20. *
  21. * @var array
  22. */
  23. protected $with = array('id', 'created_at', 'updated_at');
  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. parent::__construct($model, $associated, $foreign);
  39. }
  40. /**
  41. * Determine the joining table name for the relationship.
  42. *
  43. * By default, the name is the models sorted and joined with underscores.
  44. *
  45. * @return string
  46. */
  47. protected function joining($model, $associated)
  48. {
  49. $models = array(class_basename($model), class_basename($associated));
  50. sort($models);
  51. return strtolower($models[0].'_'.$models[1]);
  52. }
  53. /**
  54. * Get the properly hydrated results for the relationship.
  55. *
  56. * @return array
  57. */
  58. public function results()
  59. {
  60. return parent::get();
  61. }
  62. /**
  63. * Insert a new record into the joining table of the association.
  64. *
  65. * @param int $id
  66. * @param array $joining
  67. * @return bool
  68. */
  69. public function attach($id, $attributes = array())
  70. {
  71. $joining = array_merge($this->join_record($id), $attributes);
  72. return $this->insert_joining($joining);
  73. }
  74. /**
  75. * Insert a new record for the association.
  76. *
  77. * @param Model|array $attributes
  78. * @param array $joining
  79. * @return bool
  80. */
  81. public function insert($attributes, $joining = array())
  82. {
  83. // If the attributes are actually an instance of a model, we'll just grab the
  84. // array of attributes off of the model for saving, allowing the developer
  85. // to easily validate the joining models before inserting them.
  86. if ($attributes instanceof Model)
  87. {
  88. $attributes = $attributes->attributes;
  89. }
  90. $model = $this->model->create($attributes);
  91. // If the insert was successful, we'll insert a record into the joining table
  92. // using the new ID that was just inserted into the related table, allowing
  93. // the developer to not worry about maintaining the join table.
  94. if ($model instanceof Model and is_numeric($id = $model->get_key()))
  95. {
  96. $result = $this->insert_joining(array_merge($this->join_record($id), $joining));
  97. }
  98. return $model instanceof Model and $result;
  99. }
  100. /**
  101. * Delete all of the records from the joining table for the model.
  102. *
  103. * @return int
  104. */
  105. public function delete()
  106. {
  107. $id = $this->base->get_key();
  108. return $this->joining_table()->where($this->foreign_key(), '=', $id)->delete();
  109. }
  110. /**
  111. * Create an array representing a new joining record for the association.
  112. *
  113. * @param int $id
  114. * @return array
  115. */
  116. protected function join_record($id)
  117. {
  118. return array($this->foreign_key() => $this->base->get_key(), $this->other_key() => $id);
  119. }
  120. /**
  121. * Insert a new record into the joining table of the association.
  122. *
  123. * @param array $attributes
  124. * @return void
  125. */
  126. protected function insert_joining($attributes)
  127. {
  128. $attributes['created_at'] = $this->model->get_timestamp();
  129. $attributes['updated_at'] = $attributes['created_at'];
  130. return $this->joining_table()->insert($attributes);
  131. }
  132. /**
  133. * Get a fluent query for the joining table of the relationship.
  134. *
  135. * @return Query
  136. */
  137. protected function joining_table()
  138. {
  139. return $this->connection()->table($this->joining);
  140. }
  141. /**
  142. * Set the proper constraints on the relationship table.
  143. *
  144. * @return void
  145. */
  146. protected function constrain()
  147. {
  148. $other = $this->other_key();
  149. $foreign = $this->foreign_key();
  150. $this->set_select($foreign, $other)->set_join($other)->set_where($foreign);
  151. }
  152. /**
  153. * Set the SELECT clause on the query builder for the relationship.
  154. *
  155. * @param string $foreign
  156. * @param string $other
  157. * @return void
  158. */
  159. protected function set_select($foreign, $other)
  160. {
  161. $columns = array($this->model->table().'.*');
  162. $this->with = array_merge($this->with, array($foreign, $other));
  163. // Since pivot tables may have extra information on them that the developer
  164. // needs, we allow an extra array of columns to be specified that will be
  165. // fetched from the pivot table and hydrate into the pivot model.
  166. foreach ($this->with as $column)
  167. {
  168. $columns[] = $this->joining.'.'.$column.' as pivot_'.$column;
  169. }
  170. $this->table->select($columns);
  171. return $this;
  172. }
  173. /**
  174. * Set the JOIN clause on the query builder for the relationship.
  175. *
  176. * @param string $other
  177. * @return void
  178. */
  179. protected function set_join($other)
  180. {
  181. $this->table->join($this->joining, $this->associated_key(), '=', $this->joining.'.'.$other);
  182. return $this;
  183. }
  184. /**
  185. * Set the WHERE clause on the query builder for the relationship.
  186. *
  187. * @param string $foreign
  188. * @return void
  189. */
  190. protected function set_where($foreign)
  191. {
  192. $this->table->where($this->joining.'.'.$foreign, '=', $this->base->get_key());
  193. return $this;
  194. }
  195. /**
  196. * Initialize a relationship on an array of parent models.
  197. *
  198. * @param array $parents
  199. * @param string $relationship
  200. * @return void
  201. */
  202. public function initialize(&$parents, $relationship)
  203. {
  204. foreach ($parents as &$parent)
  205. {
  206. $parent->relationships[$relationship] = array();
  207. }
  208. }
  209. /**
  210. * Set the proper constraints on the relationship table for an eager load.
  211. *
  212. * @param array $results
  213. * @return void
  214. */
  215. public function eagerly_constrain($results)
  216. {
  217. $this->table->where_in($this->joining.'.'.$this->foreign_key(), array_keys($results));
  218. }
  219. /**
  220. * Match eagerly loaded child models to their parent models.
  221. *
  222. * @param array $parents
  223. * @param array $children
  224. * @return void
  225. */
  226. public function match($relationship, &$parents, $children)
  227. {
  228. $foreign = $this->foreign_key();
  229. foreach ($children as $key => $child)
  230. {
  231. $parents[$child->pivot->$foreign]->relationships[$relationship][$child->{$child->key()}] = $child;
  232. }
  233. }
  234. /**
  235. * Hydrate the Pivot model on an array of results.
  236. *
  237. * @param array $results
  238. * @return void
  239. */
  240. protected function pivot(&$results)
  241. {
  242. foreach ($results as &$result)
  243. {
  244. // Every model result for a many-to-many relationship needs a Pivot instance
  245. // to represent the pivot table's columns. Sometimes extra columns are on
  246. // the pivot table that may need to be accessed by the developer.
  247. $pivot = new Pivot($this->joining);
  248. // If the attribute key starts with "pivot_", we know this is a column on
  249. // the pivot table, so we will move it to the Pivot model and purge it
  250. // from the model since it actually belongs to the pivot.
  251. foreach ($result->attributes as $key => $value)
  252. {
  253. if (starts_with($key, 'pivot_'))
  254. {
  255. $pivot->{substr($key, 6)} = $value;
  256. $result->purge($key);
  257. }
  258. }
  259. // Once we have completed hydrating the pivot model instance, we'll set
  260. // it on the result model's relationships array so the developer can
  261. // quickly and easily access any pivot table information.
  262. $result->relationships['pivot'] = $pivot;
  263. $pivot->sync() and $result->sync();
  264. }
  265. }
  266. /**
  267. * Set the columns on the joining table that should be fetched.
  268. *
  269. * @param array $column
  270. * @return Relationship
  271. */
  272. public function with($columns)
  273. {
  274. $columns = (is_array($columns)) ? $columns : func_get_args();
  275. // The "with" array contains a couple of columns by default, so we will
  276. // just merge in the developer specified columns here, and we'll make
  277. // sure the values of the array are unique.
  278. $this->with = array_unique(array_merge($this->with, $columns));
  279. $this->set_select($this->foreign_key(), $this->other_key());
  280. return $this;
  281. }
  282. /**
  283. * Get the other or associated key for the relationship.
  284. *
  285. * @return string
  286. */
  287. protected function other_key()
  288. {
  289. return Relationship::foreign($this->model, $this->other);
  290. }
  291. /**
  292. * Get the fully qualified associated table's primary key.
  293. *
  294. * @return string
  295. */
  296. protected function associated_key()
  297. {
  298. return $this->model->table().'.'.$this->model->key();
  299. }
  300. }