eloquent.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. $model = Eloquent\Factory::make(get_called_class());
  69. $model->includes = func_get_args();
  70. return $model;
  71. }
  72. /**
  73. * Get a model by the primary key.
  74. *
  75. * @param int $id
  76. * @return mixed
  77. */
  78. public static function find($id)
  79. {
  80. return Eloquent\Factory::make(get_called_class())->where('id', '=', $id)->first();
  81. }
  82. /**
  83. * Get an array of models from the database.
  84. *
  85. * @return array
  86. */
  87. private function _get()
  88. {
  89. return Eloquent\Hydrate::from($this);
  90. }
  91. /**
  92. * Get the first model result
  93. *
  94. * @return mixed
  95. */
  96. private function _first()
  97. {
  98. $results = Eloquent\Hydrate::from($this->take(1));
  99. if (count($results) > 0)
  100. {
  101. reset($results);
  102. return current($results);
  103. }
  104. }
  105. /**
  106. * Retrieve the query for a 1:1 relationship.
  107. *
  108. * @param string $model
  109. * @param string $foreign_key
  110. * @return mixed
  111. */
  112. public function has_one($model, $foreign_key = null)
  113. {
  114. return Eloquent\Relate::has_one($model, $foreign_key, $this);
  115. }
  116. /**
  117. * Retrieve the query for a 1:* relationship.
  118. *
  119. * @param string $model
  120. * @param string $foreign_key
  121. * @return mixed
  122. */
  123. public function has_many($model, $foreign_key = null)
  124. {
  125. return Eloquent\Relate::has_many($model, $foreign_key, $this);
  126. }
  127. /**
  128. * Retrieve the query for a 1:1 belonging relationship.
  129. *
  130. * @param string $model
  131. * @return mixed
  132. */
  133. public function belongs_to($model)
  134. {
  135. // -----------------------------------------------------
  136. // Get the calling function name.
  137. // -----------------------------------------------------
  138. list(, $caller) = debug_backtrace(false);
  139. return Eloquent\Relate::belongs_to($caller, $model, $this);
  140. }
  141. /**
  142. * Retrieve the query for a *:* relationship.
  143. *
  144. * @param string $model
  145. * @return mixed
  146. */
  147. public function has_many_and_belongs_to($model)
  148. {
  149. return Eloquent\Relate::has_many_and_belongs_to($model, $this);
  150. }
  151. /**
  152. * Save the model to the database.
  153. *
  154. * @return bool
  155. */
  156. public function save()
  157. {
  158. if ($this->exists and count($this->dirty) == 0)
  159. {
  160. return true;
  161. }
  162. return Eloquent\Warehouse::store($this);
  163. }
  164. /**
  165. * Magic method for retrieving model attributes.
  166. */
  167. public function __get($key)
  168. {
  169. // -----------------------------------------------------
  170. // Check the ignored attributes first.
  171. // -----------------------------------------------------
  172. if (array_key_exists($key, $this->ignore))
  173. {
  174. return $this->ignore[$key];
  175. }
  176. // -----------------------------------------------------
  177. // Is the attribute actually a relationship?
  178. // -----------------------------------------------------
  179. if (method_exists($this, $key))
  180. {
  181. // -----------------------------------------------------
  182. // Get the query / model for the relationship.
  183. // -----------------------------------------------------
  184. $model = $this->$key();
  185. return ($this->relating == 'has_one' or $this->relating == 'belongs_to')
  186. ? $this->ignore[$key] = $model->first()
  187. : $this->ignore[$key] = $model->get();
  188. }
  189. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  190. }
  191. /**
  192. * Magic Method for setting model attributes.
  193. */
  194. public function __set($key, $value)
  195. {
  196. // -----------------------------------------------------
  197. // Is the key actually a relationship?
  198. // -----------------------------------------------------
  199. if (method_exists($this, $key))
  200. {
  201. $this->ignore[$key] = $value;
  202. }
  203. else
  204. {
  205. $this->attributes[$key] = $value;
  206. $this->dirty[$key] = $value;
  207. }
  208. }
  209. /**
  210. * Magic Method for determining if a model attribute is set.
  211. */
  212. public function __isset($key)
  213. {
  214. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  215. }
  216. /**
  217. * Magic Method for unsetting model attributes.
  218. */
  219. public function __unset($key)
  220. {
  221. unset($this->attributes[$key]);
  222. unset($this->ignore[$key]);
  223. unset($this->dirty[$key]);
  224. }
  225. /**
  226. * Magic Method for handling dynamic method calls.
  227. */
  228. public function __call($method, $parameters)
  229. {
  230. if ($method == 'get')
  231. {
  232. return $this->_get();
  233. }
  234. if ($method == 'first')
  235. {
  236. return $this->_first();
  237. }
  238. // -----------------------------------------------------
  239. // If the method is an aggregate function, just return
  240. // the aggregate value from the query.
  241. // -----------------------------------------------------
  242. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  243. {
  244. return call_user_func_array(array($this->query, $method), $parameters);
  245. }
  246. // -----------------------------------------------------
  247. // Pass the method call to the query instance.
  248. // -----------------------------------------------------
  249. call_user_func_array(array($this->query, $method), $parameters);
  250. return $this;
  251. }
  252. /**
  253. * Magic Method for handling dynamic static method calls.
  254. */
  255. public static function __callStatic($method, $parameters)
  256. {
  257. $model = Eloquent\Factory::make(get_called_class());
  258. if ($method == 'get')
  259. {
  260. return $model->_get();
  261. }
  262. if ($method == 'first')
  263. {
  264. return $model->_first();
  265. }
  266. // -----------------------------------------------------
  267. // If the method is an aggregate function, just return
  268. // the aggregate value from the query.
  269. // -----------------------------------------------------
  270. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  271. {
  272. return call_user_func_array(array($model->query, $method), $parameters);
  273. }
  274. // -----------------------------------------------------
  275. // Pass the method call to the query instance.
  276. // -----------------------------------------------------
  277. call_user_func_array(array($model->query, $method), $parameters);
  278. return $model;
  279. }
  280. }