query.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <?php namespace Laravel\Database\Eloquent; use Laravel\Database;
  2. class Query {
  3. /**
  4. * The model instance being queried.
  5. *
  6. * @var Model
  7. */
  8. public $model;
  9. /**
  10. * The fluent query builder for the query instance.
  11. *
  12. * @var Query
  13. */
  14. public $table;
  15. /**
  16. * The relationships that should be eagerly loaded by the query.
  17. *
  18. * @var array
  19. */
  20. public $includes = array();
  21. /**
  22. * The methods that should be returned from the fluent query builder.
  23. *
  24. * @var array
  25. */
  26. public $passthru = array(
  27. 'lists', 'only', 'insert', 'insert_get_id', 'update', 'increment',
  28. 'decrement', 'count', 'min', 'max', 'avg', 'sum',
  29. );
  30. /**
  31. * Creat a new query instance for a model.
  32. *
  33. * @param Model $model
  34. * @return void
  35. */
  36. public function __construct($model)
  37. {
  38. $this->model = ($model instanceof Model) ? $model : new $model;
  39. $this->table = $this->query();
  40. }
  41. /**
  42. * Get the first model result for the query.
  43. *
  44. * @param array $columns
  45. * @return mixed
  46. */
  47. public function first($columns = array('*'))
  48. {
  49. $results = $this->hydrate($this->model, $this->table->take(1)->get($columns, false));
  50. return (count($results) > 0) ? head($results) : null;
  51. }
  52. /**
  53. * Get all of the model results for the query.
  54. *
  55. * @param array $columns
  56. * @param bool $include
  57. * @return array
  58. */
  59. public function get($columns = array('*'), $include = true)
  60. {
  61. return $this->hydrate($this->model, $this->table->get($columns), $include);
  62. }
  63. /**
  64. * Get an array of paginated model results.
  65. *
  66. * @param int $per_page
  67. * @param array $columns
  68. * @return Paginator
  69. */
  70. public function paginate($per_page = null, $columns = array('*'))
  71. {
  72. $per_page = $per_page ?: $this->model->per_page();
  73. // First we'll grab the Paginator instance and get the results. Then we can
  74. // feed those raw database results into the hydrate method to get models
  75. // for the results, which we'll set on the paginator and return it.
  76. $paginator = $this->table->paginate($per_page, $columns);
  77. $paginator->results = $this->hydrate($this->model, $paginator->results);
  78. return $paginator;
  79. }
  80. /**
  81. * Hydrate an array of models from the given results.
  82. *
  83. * @param Model $model
  84. * @param array $results
  85. * @return array
  86. */
  87. public function hydrate($model, $results, $include = true)
  88. {
  89. $class = get_class($model);
  90. $models = array();
  91. // We'll spin through the array of database results and hydrate a model
  92. // for each one of the records. We will also set the "exists" flag to
  93. // "true" so that the model will be updated when it is saved.
  94. foreach ((array) $results as $result)
  95. {
  96. $result = (array) $result;
  97. $new = new $class(array(), true);
  98. // We need to set the attributes manually in case the accessible property is
  99. // set on the array which will prevent the mass assignemnt of attributes if
  100. // we were to pass them in using the constructor or fill methods.
  101. foreach ($result as $key => $value)
  102. {
  103. $new->set_attribute($key, $value);
  104. }
  105. $new->original = $new->attributes;
  106. $models[$result[$this->model->key()]] = $new;
  107. }
  108. if ($include and count($results) > 0)
  109. {
  110. foreach ($this->model_includes() as $relationship => $constraints)
  111. {
  112. // If the relationship is nested, we will skip laoding it here and let
  113. // the load method parse and set the nested eager loads on the right
  114. // relationship when it is getting ready to eager laod.
  115. if (str_contains($relationship, '.'))
  116. {
  117. continue;
  118. }
  119. $this->load($models, $relationship, $constraints);
  120. }
  121. }
  122. // The many to many relationships may have pivot table column on them
  123. // so we will call the "clean" method on the relationship to remove
  124. // any pivot columns that are on the model.
  125. if ($this instanceof Relationships\Has_Many_And_Belongs_To)
  126. {
  127. $this->hydrate_pivot($models);
  128. }
  129. return $models;
  130. }
  131. /**
  132. * Hydrate an eagerly loaded relationship on the model results.
  133. *
  134. * @param array $results
  135. * @param string $relationship
  136. * @param array|null $constraints
  137. * @return void
  138. */
  139. protected function load(&$results, $relationship, $constraints)
  140. {
  141. $query = $this->model->$relationship();
  142. $query->model->includes = $this->nested_includes($relationship);
  143. // We'll remove any of the where clauses from the relationship to give
  144. // the relationship the opportunity to set the constraints for an
  145. // eager relationship using a separate, specific method.
  146. $query->table->reset_where();
  147. $query->eagerly_constrain($results);
  148. // Constraints may be specified in-line for the eager load by passing
  149. // a Closure as the value portion of the eager load. We can use the
  150. // query builder's nested query support to add the constraints.
  151. if ( ! is_null($constraints))
  152. {
  153. $query->table->where_nested($constraints);
  154. }
  155. // Before matching the models, we will initialize the relationship
  156. // to either null for single-value relationships or an array for
  157. // the multi-value relationships as their baseline value.
  158. $query->initialize($results, $relationship);
  159. $query->match($relationship, $results, $query->get());
  160. }
  161. /**
  162. * Gather the nested includes for a given relationship.
  163. *
  164. * @param string $relationship
  165. * @return array
  166. */
  167. protected function nested_includes($relationship)
  168. {
  169. $nested = array();
  170. foreach ($this->model_includes() as $include => $constraints)
  171. {
  172. // To get the nested includes, we want to find any includes that begin
  173. // the relationship and a dot, then we will strip off the leading
  174. // nesting indicator and set the include in the array.
  175. if (starts_with($include, $relationship.'.'))
  176. {
  177. $nested[substr($include, strlen($relationship.'.'))] = $constraints;
  178. }
  179. }
  180. return $nested;
  181. }
  182. /**
  183. * Get the eagerly loaded relationships for the model.
  184. *
  185. * @return array
  186. */
  187. protected function model_includes()
  188. {
  189. $includes = array();
  190. foreach ($this->model->includes as $relationship => $constraints)
  191. {
  192. // When eager loading relationships, constraints may be set on the eager
  193. // load definition; however, is none are set, we need to swap the key
  194. // and the value of the array since there are no constraints.
  195. if (is_numeric($relationship))
  196. {
  197. list($relationship, $constraints) = array($constraints, null);
  198. }
  199. $includes[$relationship] = $constraints;
  200. }
  201. return $includes;
  202. }
  203. /**
  204. * Get a fluent query builder for the model.
  205. *
  206. * @return Query
  207. */
  208. protected function query()
  209. {
  210. return $this->connection()->table($this->model->table());
  211. }
  212. /**
  213. * Get the database connection for the model.
  214. *
  215. * @return Connection
  216. */
  217. public function connection()
  218. {
  219. return Database::connection($this->model->connection());
  220. }
  221. /**
  222. * Handle dynamic method calls to the query.
  223. *
  224. * @param string $method
  225. * @param array $parameters
  226. * @return mixed
  227. */
  228. public function __call($method, $parameters)
  229. {
  230. $result = call_user_func_array(array($this->table, $method), $parameters);
  231. // Some methods may get their results straight from the fluent query
  232. // builder, such as the aggregate methods. If the called method is
  233. // one of these, we will return the result straight away.
  234. if (in_array($method, $this->passthru))
  235. {
  236. return $result;
  237. }
  238. return $this;
  239. }
  240. }