hydrator.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php namespace System\DB\Eloquent;
  2. use System\DB\Eloquent;
  3. class Hydrator {
  4. /**
  5. * Load the array of hydrated models.
  6. *
  7. * @param object $eloquent
  8. * @return array
  9. */
  10. public static function hydrate($eloquent)
  11. {
  12. // -----------------------------------------------------
  13. // Load the base / parent models from the query results.
  14. // -----------------------------------------------------
  15. $results = static::base(get_class($eloquent), $eloquent->query->get());
  16. // -----------------------------------------------------
  17. // Load all of the eager relationships.
  18. // -----------------------------------------------------
  19. if (count($results) > 0)
  20. {
  21. foreach ($eloquent->includes as $include)
  22. {
  23. if ( ! method_exists($eloquent, $include))
  24. {
  25. throw new \Exception("Attempting to eager load [$include], but the relationship is not defined.");
  26. }
  27. static::eagerly($eloquent, $results, $include);
  28. }
  29. }
  30. return $results;
  31. }
  32. /**
  33. * Hydrate the base models for a query.
  34. *
  35. * @param string $class
  36. * @param array $results
  37. * @return array
  38. */
  39. private static function base($class, $results)
  40. {
  41. $models = array();
  42. foreach ($results as $result)
  43. {
  44. $model = new $class;
  45. $model->attributes = (array) $result;
  46. $model->exists = true;
  47. // -----------------------------------------------------
  48. // The results are keyed by the ID on the record. This
  49. // will allow us to conveniently match them to child
  50. // models during eager loading.
  51. // -----------------------------------------------------
  52. $models[$model->id] = $model;
  53. }
  54. return $models;
  55. }
  56. /**
  57. * Eagerly load a relationship.
  58. *
  59. * @param object $eloquent
  60. * @param array $parents
  61. * @param string $include
  62. * @return void
  63. */
  64. private static function eagerly($eloquent, &$parents, $include)
  65. {
  66. // -----------------------------------------------------
  67. // Get the relationship Eloquent model.
  68. //
  69. // We temporarily spoof the belongs_to key to allow the
  70. // query to be fetched without any problems, since the
  71. // belongs_to method actually gets the attribute.
  72. // -----------------------------------------------------
  73. $eloquent->attributes[$spoof = $include.'_id'] = 0;
  74. $relationship = $eloquent->$include();
  75. unset($eloquent->attributes[$spoof]);
  76. // -----------------------------------------------------
  77. // Reset the WHERE clause and bindings on the query.
  78. // We'll add our own WHERE clause soon.
  79. // -----------------------------------------------------
  80. $relationship->query->where = 'WHERE 1 = 1';
  81. $relationship->query->bindings = array();
  82. // -----------------------------------------------------
  83. // Initialize the relationship attribute on the parents.
  84. // As expected, "many" relationships are initialized to
  85. // an array and "one" relationships to null.
  86. // -----------------------------------------------------
  87. foreach ($parents as &$parent)
  88. {
  89. $parent->ignore[$include] = (strpos($eloquent->relating, 'has_many') === 0) ? array() : null;
  90. }
  91. // -----------------------------------------------------
  92. // Eagerly load the relationships. Phew, almost there!
  93. // -----------------------------------------------------
  94. if ($eloquent->relating == 'has_one')
  95. {
  96. static::eagerly_load_one($relationship, $parents, $eloquent->relating_key, $include);
  97. }
  98. elseif ($eloquent->relating == 'has_many')
  99. {
  100. static::eagerly_load_many($relationship, $parents, $eloquent->relating_key, $include);
  101. }
  102. elseif ($eloquent->relating == 'belongs_to')
  103. {
  104. static::eagerly_load_belonging($relationship, $parents, $eloquent->relating_key, $include);
  105. }
  106. else
  107. {
  108. static::eagerly_load_many_to_many($relationship, $parents, $eloquent->relating_key, $eloquent->relating_table, $include);
  109. }
  110. }
  111. /**
  112. * Eagerly load a 1:1 relationship.
  113. *
  114. * @param object $relationship
  115. * @param array $parents
  116. * @param string $relating_key
  117. * @param string $relating
  118. * @param string $include
  119. * @return void
  120. */
  121. private static function eagerly_load_one($relationship, &$parents, $relating_key, $include)
  122. {
  123. // -----------------------------------------------------
  124. // Get the all of the related models by the parent IDs.
  125. //
  126. // Remember, the parent results are keyed by ID. So, we
  127. // can simply pass the keys of the array into the query.
  128. //
  129. // After getting the models, we'll match by ID.
  130. // -----------------------------------------------------
  131. foreach ($relationship->where_in($relating_key, array_keys($parents))->get() as $key => $child)
  132. {
  133. $parents[$child->$relating_key]->ignore[$include] = $child;
  134. }
  135. }
  136. /**
  137. * Eagerly load a 1:* relationship.
  138. *
  139. * @param object $relationship
  140. * @param array $parents
  141. * @param string $relating_key
  142. * @param string $relating
  143. * @param string $include
  144. * @return void
  145. */
  146. private static function eagerly_load_many($relationship, &$parents, $relating_key, $include)
  147. {
  148. foreach ($relationship->where_in($relating_key, array_keys($parents))->get() as $key => $child)
  149. {
  150. $parents[$child->$relating_key]->ignore[$include][$child->id] = $child;
  151. }
  152. }
  153. /**
  154. * Eagerly load a 1:1 belonging relationship.
  155. *
  156. * @param object $relationship
  157. * @param array $parents
  158. * @param string $relating_key
  159. * @param string $include
  160. * @return void
  161. */
  162. private static function eagerly_load_belonging($relationship, &$parents, $relating_key, $include)
  163. {
  164. // -----------------------------------------------------
  165. // Gather the keys from the parent models. Since the
  166. // foreign key is on the parent model for this type of
  167. // relationship, we have to gather them individually.
  168. // -----------------------------------------------------
  169. $keys = array();
  170. foreach ($parents as &$parent)
  171. {
  172. $keys[] = $parent->$relating_key;
  173. }
  174. // -----------------------------------------------------
  175. // Get the related models.
  176. // -----------------------------------------------------
  177. $children = $relationship->where_in('id', array_unique($keys))->get();
  178. // -----------------------------------------------------
  179. // Match the child models with their parent by ID.
  180. // -----------------------------------------------------
  181. foreach ($parents as &$parent)
  182. {
  183. if (array_key_exists($parent->$relating_key, $children))
  184. {
  185. $parent->ignore[$include] = $children[$parent->$relating_key];
  186. }
  187. }
  188. }
  189. /**
  190. * Eagerly load a many-to-many relationship.
  191. *
  192. * @param object $relationship
  193. * @param array $parents
  194. * @param string $relating_key
  195. * @param string $relating_table
  196. * @param string $include
  197. *
  198. * @return void
  199. */
  200. private static function eagerly_load_many_to_many($relationship, &$parents, $relating_key, $relating_table, $include)
  201. {
  202. $relationship->query->select = null;
  203. // -----------------------------------------------------
  204. // Retrieve the raw results as stdClasses.
  205. //
  206. // We also add the foreign key to the select which will allow us
  207. // to match the models back to their parents.
  208. // -----------------------------------------------------
  209. $children = $relationship->query
  210. ->where_in($relating_table.'.'.$relating_key, array_keys($parents))
  211. ->get(Eloquent::table(get_class($relationship)).'.*', $relating_table.'.'.$relating_key);
  212. $class = get_class($relationship);
  213. // -----------------------------------------------------
  214. // Create the related models.
  215. // -----------------------------------------------------
  216. foreach ($children as $child)
  217. {
  218. $related = new $class;
  219. $related->attributes = (array) $child;
  220. $related->exists = true;
  221. // -----------------------------------------------------
  222. // Remove the foreign key from the attributes since it
  223. // was added to the query to help us match the models.
  224. // -----------------------------------------------------
  225. unset($related->attributes[$relating_key]);
  226. // -----------------------------------------------------
  227. // Match the child model its parent by ID.
  228. // -----------------------------------------------------
  229. $parents[$child->$relating_key]->ignore[$include][$child->id] = $related;
  230. }
  231. }
  232. }