eloquent.php 7.7 KB

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