hydrator.php 8.0 KB

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