eloquent.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <?php namespace System\DB;
  2. abstract class Eloquent {
  3. /**
  4. * Indicates if the model exists in the database.
  5. *
  6. * @var bool
  7. */
  8. public $exists = false;
  9. /**
  10. * The model attributes.
  11. *
  12. * @var array
  13. */
  14. public $attributes = array();
  15. /**
  16. * The model's dirty attributes.
  17. *
  18. * @var array
  19. */
  20. public $dirty = array();
  21. /**
  22. * The model's ignored attributes.
  23. *
  24. * Ignored attributes will not be saved to the database, and
  25. * are primarily used to hold relationships.
  26. *
  27. * @var array
  28. */
  29. public $ignore = array();
  30. /**
  31. * The relationships that should be eagerly loaded.
  32. *
  33. * @var array
  34. */
  35. public $includes = array();
  36. /**
  37. * The relationship type the model is currently resolving.
  38. *
  39. * @var string
  40. */
  41. public $relating;
  42. /**
  43. * The foreign key of the "relating" relationship.
  44. *
  45. * @var string
  46. */
  47. public $relating_key;
  48. /**
  49. * The table name of the model being resolved. Used during many-to-many eager loading.
  50. *
  51. * @var string
  52. */
  53. public $relating_table;
  54. /**
  55. * The model query instance.
  56. *
  57. * @var Query
  58. */
  59. public $query;
  60. /**
  61. * Create a new model instance and set the relationships
  62. * that should be eagerly loaded.
  63. *
  64. * @return mixed
  65. */
  66. public static function with()
  67. {
  68. // -----------------------------------------------------
  69. // Create a new model instance.
  70. // -----------------------------------------------------
  71. $model = Eloquent\Factory::make(get_called_class());
  72. // -----------------------------------------------------
  73. // Set the eager relationships.
  74. // -----------------------------------------------------
  75. $model->includes = func_get_args();
  76. return $model;
  77. }
  78. /**
  79. * Get a model by the primary key.
  80. *
  81. * @param int $id
  82. * @return mixed
  83. */
  84. public static function find($id)
  85. {
  86. return Eloquent\Factory::make(get_called_class())->where('id', '=', $id)->first();
  87. }
  88. /**
  89. * Get an array of models from the database.
  90. *
  91. * @return array
  92. */
  93. private function _get()
  94. {
  95. return Eloquent\Hydrate::from($this);
  96. }
  97. /**
  98. * Get the first model result
  99. *
  100. * @return mixed
  101. */
  102. private function _first()
  103. {
  104. // -----------------------------------------------------
  105. // Load the hydrated models.
  106. // -----------------------------------------------------
  107. $results = Eloquent\Hydrate::from($this->take(1));
  108. // -----------------------------------------------------
  109. // Return the first result.
  110. // -----------------------------------------------------
  111. if (count($results) > 0)
  112. {
  113. reset($results);
  114. return current($results);
  115. }
  116. }
  117. /**
  118. * Retrieve the query for a 1:1 relationship.
  119. *
  120. * @param string $model
  121. * @return mixed
  122. */
  123. public function has_one($model)
  124. {
  125. return Eloquent\Relate::has_one($model, $this);
  126. }
  127. /**
  128. * Retrieve the query for a 1:* relationship.
  129. *
  130. * @param string $model
  131. * @return mixed
  132. */
  133. public function has_many($model)
  134. {
  135. return Eloquent\Relate::has_many($model, $this);
  136. }
  137. /**
  138. * Retrieve the query for a 1:1 belonging relationship.
  139. *
  140. * @param string $model
  141. * @return mixed
  142. */
  143. public function belongs_to($model)
  144. {
  145. // -----------------------------------------------------
  146. // Get the calling function name.
  147. // -----------------------------------------------------
  148. list(, $caller) = debug_backtrace(false);
  149. return Eloquent\Relate::belongs_to($caller, $model, $this);
  150. }
  151. /**
  152. * Retrieve the query for a *:* relationship.
  153. *
  154. * @param string $model
  155. * @return mixed
  156. */
  157. public function has_many_and_belongs_to($model)
  158. {
  159. return Eloquent\Relate::has_many_and_belongs_to($model, $this);
  160. }
  161. /**
  162. * Save the model to the database.
  163. *
  164. * @return void
  165. */
  166. public function save()
  167. {
  168. Eloquent\Warehouse::store($this);
  169. }
  170. /**
  171. * Magic method for retrieving model attributes.
  172. */
  173. public function __get($key)
  174. {
  175. // -----------------------------------------------------
  176. // Check the ignored attributes first.
  177. // -----------------------------------------------------
  178. if (array_key_exists($key, $this->ignore))
  179. {
  180. return $this->ignore[$key];
  181. }
  182. // -----------------------------------------------------
  183. // Is the attribute actually a relationship?
  184. // -----------------------------------------------------
  185. if (method_exists($this, $key))
  186. {
  187. // -----------------------------------------------------
  188. // Get the query / model for the relationship.
  189. // -----------------------------------------------------
  190. $model = $this->$key();
  191. // -----------------------------------------------------
  192. // Return the relationship results.
  193. // -----------------------------------------------------
  194. return ($this->relating == 'has_one' or $this->relating == 'belongs_to')
  195. ? $this->ignore[$key] = $model->first()
  196. : $this->ignore[$key] = $model->get();
  197. }
  198. // -----------------------------------------------------
  199. // Check the "regular" attributes.
  200. // -----------------------------------------------------
  201. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  202. }
  203. /**
  204. * Magic Method for setting model attributes.
  205. */
  206. public function __set($key, $value)
  207. {
  208. // -----------------------------------------------------
  209. // Is the key actually a relationship?
  210. // -----------------------------------------------------
  211. if (method_exists($this, $key))
  212. {
  213. $this->ignore[$key] = $value;
  214. }
  215. else
  216. {
  217. // -----------------------------------------------------
  218. // Add the value to the attributes.
  219. // -----------------------------------------------------
  220. $this->attributes[$key] = $value;
  221. $this->dirty[$key] = $value;
  222. }
  223. }
  224. /**
  225. * Magic Method for determining if a model attribute is set.
  226. */
  227. public function __isset($key)
  228. {
  229. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  230. }
  231. /**
  232. * Magic Method for unsetting model attributes.
  233. */
  234. public function __unset($key)
  235. {
  236. unset($this->attributes[$key]);
  237. unset($this->ignore[$key]);
  238. unset($this->dirty[$key]);
  239. }
  240. /**
  241. * Magic Method for handling dynamic method calls.
  242. */
  243. public function __call($method, $parameters)
  244. {
  245. // -----------------------------------------------------
  246. // Is the "get" method being called?
  247. // -----------------------------------------------------
  248. if ($method == 'get')
  249. {
  250. return $this->_get();
  251. }
  252. // -----------------------------------------------------
  253. // Is the "first" method being called?
  254. // -----------------------------------------------------
  255. if ($method == 'first')
  256. {
  257. return $this->_first();
  258. }
  259. // -----------------------------------------------------
  260. // If the method is an aggregate function, just return
  261. // the aggregate value from the query.
  262. // -----------------------------------------------------
  263. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  264. {
  265. return call_user_func_array(array($this->query, $method), $parameters);
  266. }
  267. // -----------------------------------------------------
  268. // Pass the method call to the query instance.
  269. // -----------------------------------------------------
  270. call_user_func_array(array($this->query, $method), $parameters);
  271. return $this;
  272. }
  273. /**
  274. * Magic Method for handling dynamic static method calls.
  275. */
  276. public static function __callStatic($method, $parameters)
  277. {
  278. // -----------------------------------------------------
  279. // Create a new model instance.
  280. // -----------------------------------------------------
  281. $model = Eloquent\Factory::make(get_called_class());
  282. // -----------------------------------------------------
  283. // Do we need to return the entire table?
  284. // -----------------------------------------------------
  285. if ($method == 'get')
  286. {
  287. return $model->_get();
  288. }
  289. // -----------------------------------------------------
  290. // Do we need to return the first model from the table?
  291. // -----------------------------------------------------
  292. if ($method == 'first')
  293. {
  294. return $model->_first();
  295. }
  296. // -----------------------------------------------------
  297. // If the method is an aggregate function, just return
  298. // the aggregate value from the query.
  299. // -----------------------------------------------------
  300. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  301. {
  302. return call_user_func_array(array($model->query, $method), $parameters);
  303. }
  304. // -----------------------------------------------------
  305. // Pass the method call to the query instance.
  306. // -----------------------------------------------------
  307. call_user_func_array(array($model->query, $method), $parameters);
  308. return $model;
  309. }
  310. }