hydrator.php 7.9 KB

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