eloquent.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  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. // -----------------------------------------------------
  159. // If the model doesn't have any dirty attributes, there
  160. // is no need to save it to the database.
  161. // -----------------------------------------------------
  162. if ($this->exists and count($this->dirty) == 0)
  163. {
  164. return true;
  165. }
  166. $result = Eloquent\Warehouse::put($this);
  167. // -----------------------------------------------------
  168. // The dirty attributes can be cleared after each save.
  169. // -----------------------------------------------------
  170. $this->dirty = array();
  171. return $result;
  172. }
  173. /**
  174. * Delete a model from the database.
  175. */
  176. public function delete($id = null)
  177. {
  178. // -----------------------------------------------------
  179. // If the method is being called from an existing model,
  180. // only delete that model from the database.
  181. // -----------------------------------------------------
  182. if ($this->exists)
  183. {
  184. return Eloquent\Warehouse::forget($this);
  185. }
  186. return $this->query->delete($id);
  187. }
  188. /**
  189. * Magic method for retrieving model attributes.
  190. */
  191. public function __get($key)
  192. {
  193. // -----------------------------------------------------
  194. // Check the ignored attributes first.
  195. // -----------------------------------------------------
  196. if (array_key_exists($key, $this->ignore))
  197. {
  198. return $this->ignore[$key];
  199. }
  200. // -----------------------------------------------------
  201. // Is the attribute actually a relationship?
  202. // -----------------------------------------------------
  203. if (method_exists($this, $key))
  204. {
  205. // -----------------------------------------------------
  206. // Get the query / model for the relationship.
  207. // -----------------------------------------------------
  208. $model = $this->$key();
  209. return ($this->relating == 'has_one' or $this->relating == 'belongs_to')
  210. ? $this->ignore[$key] = $model->first()
  211. : $this->ignore[$key] = $model->get();
  212. }
  213. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  214. }
  215. /**
  216. * Magic Method for setting model attributes.
  217. */
  218. public function __set($key, $value)
  219. {
  220. // -----------------------------------------------------
  221. // Is the key actually a relationship?
  222. // -----------------------------------------------------
  223. if (method_exists($this, $key))
  224. {
  225. $this->ignore[$key] = $value;
  226. }
  227. else
  228. {
  229. $this->attributes[$key] = $value;
  230. $this->dirty[$key] = $value;
  231. }
  232. }
  233. /**
  234. * Magic Method for determining if a model attribute is set.
  235. */
  236. public function __isset($key)
  237. {
  238. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  239. }
  240. /**
  241. * Magic Method for unsetting model attributes.
  242. */
  243. public function __unset($key)
  244. {
  245. unset($this->attributes[$key]);
  246. unset($this->ignore[$key]);
  247. unset($this->dirty[$key]);
  248. }
  249. /**
  250. * Magic Method for handling dynamic method calls.
  251. */
  252. public function __call($method, $parameters)
  253. {
  254. if ($method == 'get')
  255. {
  256. return $this->_get();
  257. }
  258. if ($method == 'first')
  259. {
  260. return $this->_first();
  261. }
  262. // -----------------------------------------------------
  263. // If the method is an aggregate function, just return
  264. // the aggregate value from the query.
  265. // -----------------------------------------------------
  266. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  267. {
  268. return call_user_func_array(array($this->query, $method), $parameters);
  269. }
  270. // -----------------------------------------------------
  271. // Pass the method call to the query instance.
  272. // -----------------------------------------------------
  273. call_user_func_array(array($this->query, $method), $parameters);
  274. return $this;
  275. }
  276. /**
  277. * Magic Method for handling dynamic static method calls.
  278. */
  279. public static function __callStatic($method, $parameters)
  280. {
  281. $model = Eloquent\Factory::make(get_called_class());
  282. if ($method == 'get')
  283. {
  284. return $model->_get();
  285. }
  286. if ($method == 'first')
  287. {
  288. return $model->_first();
  289. }
  290. // -----------------------------------------------------
  291. // If the method is an aggregate function, just return
  292. // the aggregate value from the query.
  293. // -----------------------------------------------------
  294. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  295. {
  296. return call_user_func_array(array($model->query, $method), $parameters);
  297. }
  298. // -----------------------------------------------------
  299. // Pass the method call to the query instance.
  300. // -----------------------------------------------------
  301. call_user_func_array(array($model->query, $method), $parameters);
  302. return $model;
  303. }
  304. }