eloquent.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. <?php namespace System\DB;
  2. use System\Str;
  3. use System\Config;
  4. use System\Inflector;
  5. abstract class Eloquent {
  6. /**
  7. * Indicates if the model exists in the database.
  8. *
  9. * @var bool
  10. */
  11. public $exists = false;
  12. /**
  13. * The model's attributes.
  14. *
  15. * Typically, a model has an attribute for each column on the table.
  16. *
  17. * @var array
  18. */
  19. public $attributes = array();
  20. /**
  21. * The model's dirty attributes.
  22. *
  23. * @var array
  24. */
  25. public $dirty = array();
  26. /**
  27. * The model's ignored attributes.
  28. *
  29. * Ignored attributes will not be saved to the database, and are
  30. * primarily used to hold relationships.
  31. *
  32. * @var array
  33. */
  34. public $ignore = array();
  35. /**
  36. * The relationships that should be eagerly loaded.
  37. *
  38. * @var array
  39. */
  40. public $includes = array();
  41. /**
  42. * The relationship type the model is currently resolving.
  43. *
  44. * @var string
  45. */
  46. public $relating;
  47. /**
  48. * The foreign key of the "relating" relationship.
  49. *
  50. * @var string
  51. */
  52. public $relating_key;
  53. /**
  54. * The table name of the model being resolved.
  55. *
  56. * This is used during many-to-many eager loading.
  57. *
  58. * @var string
  59. */
  60. public $relating_table;
  61. /**
  62. * The model query instance.
  63. *
  64. * @var Query
  65. */
  66. public $query;
  67. /**
  68. * Create a new Eloquent model instance.
  69. *
  70. * @param array $attributes
  71. * @return void
  72. */
  73. public function __construct($attributes = array())
  74. {
  75. foreach ($attributes as $key => $value)
  76. {
  77. $this->$key = $value;
  78. }
  79. }
  80. /**
  81. * Get the table name for a model.
  82. *
  83. * @param string $class
  84. * @return string
  85. */
  86. public static function table($class)
  87. {
  88. if (property_exists($class, 'table'))
  89. {
  90. return $class::$table;
  91. }
  92. return strtolower(Inflector::plural($class));
  93. }
  94. /**
  95. * Factory for creating new Eloquent model instances.
  96. *
  97. * @param string $class
  98. * @return object
  99. */
  100. public static function make($class)
  101. {
  102. $model = new $class;
  103. // Since this method is only used for instantiating models for querying
  104. // purposes, we will go ahead and set the Query instance on the model.
  105. $model->query = Query::table(static::table($class));
  106. return $model;
  107. }
  108. /**
  109. * Create a new model instance and set the relationships
  110. * that should be eagerly loaded.
  111. *
  112. * @return mixed
  113. */
  114. public static function with()
  115. {
  116. $model = static::make(get_called_class());
  117. $model->includes = func_get_args();
  118. return $model;
  119. }
  120. /**
  121. * Get a model by the primary key.
  122. *
  123. * @param int $id
  124. * @return mixed
  125. */
  126. public static function find($id)
  127. {
  128. return static::make(get_called_class())->where('id', '=', $id)->first();
  129. }
  130. /**
  131. * Get an array of models from the database.
  132. *
  133. * @return array
  134. */
  135. private function _get()
  136. {
  137. return Eloquent\Hydrator::hydrate($this);
  138. }
  139. /**
  140. * Get the first model result
  141. *
  142. * @return mixed
  143. */
  144. private function _first()
  145. {
  146. return (count($results = Eloquent\Hydrator::hydrate($this->take(1))) > 0) ? reset($results) : null;
  147. }
  148. /**
  149. * Retrieve the query for a 1:1 relationship.
  150. *
  151. * @param string $model
  152. * @param string $foreign_key
  153. * @return mixed
  154. */
  155. public function has_one($model, $foreign_key = null)
  156. {
  157. $this->relating = __FUNCTION__;
  158. return $this->has_one_or_many($model, $foreign_key);
  159. }
  160. /**
  161. * Retrieve the query for a 1:* relationship.
  162. *
  163. * @param string $model
  164. * @param string $foreign_key
  165. * @return mixed
  166. */
  167. public function has_many($model, $foreign_key = null)
  168. {
  169. $this->relating = __FUNCTION__;
  170. return $this->has_one_or_many($model, $foreign_key);
  171. }
  172. /**
  173. * Retrieve the query for a 1:1 or 1:* relationship.
  174. *
  175. * The default foreign key for has one and has many relationships is the name
  176. * of the model with an appended _id. For example, the foreign key for a
  177. * User model would be user_id. Photo would be photo_id, etc.
  178. *
  179. * @param string $model
  180. * @param string $foreign_key
  181. * @return mixed
  182. */
  183. private function has_one_or_many($model, $foreign_key)
  184. {
  185. $this->relating_key = (is_null($foreign_key)) ? strtolower(get_class($this)).'_id' : $foreign_key;
  186. return static::make($model)->where($this->relating_key, '=', $this->id);
  187. }
  188. /**
  189. * Retrieve the query for a 1:1 belonging relationship.
  190. *
  191. * The default foreign key for belonging relationships is the name of the
  192. * relationship method name with _id. So, if a model has a "manager" method
  193. * returning a belongs_to relationship, the key would be manager_id.
  194. *
  195. * @param string $model
  196. * @param string $foreign_key
  197. * @return mixed
  198. */
  199. public function belongs_to($model, $foreign_key = null)
  200. {
  201. $this->relating = __FUNCTION__;
  202. if ( ! is_null($foreign_key))
  203. {
  204. $this->relating_key = $foreign_key;
  205. }
  206. else
  207. {
  208. list(, $caller) = debug_backtrace(false);
  209. $this->relating_key = $caller['function'].'_id';
  210. }
  211. return static::make($model)->where('id', '=', $this->attributes[$this->relating_key]);
  212. }
  213. /**
  214. * Retrieve the query for a *:* relationship.
  215. *
  216. * By default, the intermediate table name is the plural names of the models
  217. * arranged alphabetically and concatenated with an underscore.
  218. *
  219. * The default foreign key for many-to-many relations is the name of the model
  220. * with an appended _id. This is the same convention as has_one and has_many.
  221. *
  222. * @param string $model
  223. * @param string $table
  224. * @return mixed
  225. */
  226. public function has_and_belongs_to_many($model, $table = null)
  227. {
  228. $this->relating = __FUNCTION__;
  229. if (is_null($table))
  230. {
  231. $models = array(Inflector::plural($model), Inflector::plural(get_class($this)));
  232. sort($models);
  233. $this->relating_table = strtolower($models[0].'_'.$models[1]);
  234. }
  235. else
  236. {
  237. $this->relating_table = $table;
  238. }
  239. $this->relating_key = strtolower(get_class($this)).'_id';
  240. return static::make($model)
  241. ->select(static::table($model).'.*')
  242. ->join($this->relating_table, static::table($model).'.id', '=', $this->relating_table.'.'.strtolower($model).'_id')
  243. ->where($this->relating_table.'.'.$this->relating_key, '=', $this->id);
  244. }
  245. /**
  246. * Save the model to the database.
  247. *
  248. * @return bool
  249. */
  250. public function save()
  251. {
  252. if ($this->exists and count($this->dirty) == 0)
  253. {
  254. return true;
  255. }
  256. $model = get_class($this);
  257. // Since the model was instantiated using "new", a query instance has not been set.
  258. // Only models being used for querying have their query instances set by default.
  259. $this->query = Query::table(static::table($model));
  260. if (property_exists($model, 'timestamps') and $model::$timestamps)
  261. {
  262. $this->timestamp();
  263. }
  264. if ($this->exists)
  265. {
  266. $result = $this->query->where('id', '=', $this->attributes['id'])->update($this->dirty) == 1;
  267. }
  268. else
  269. {
  270. $this->attributes['id'] = $this->query->insert_get_id($this->attributes);
  271. $result = $this->exists = is_numeric($this->id);
  272. }
  273. $this->dirty = array();
  274. return $result;
  275. }
  276. /**
  277. * Delete a model from the database.
  278. *
  279. * @param int $id
  280. * @return int
  281. */
  282. public function delete($id = null)
  283. {
  284. if ($this->exists)
  285. {
  286. return Query::table(static::table(get_class($this)))->delete($this->id);
  287. }
  288. return $this->query->delete();
  289. }
  290. /**
  291. * Set the creation and update timestamps on the model.
  292. *
  293. * @return void
  294. */
  295. private function timestamp()
  296. {
  297. $this->updated_at = date('Y-m-d H:i:s');
  298. if ( ! $this->exists)
  299. {
  300. $this->created_at = $this->updated_at;
  301. }
  302. }
  303. /**
  304. * Magic method for retrieving model attributes.
  305. */
  306. public function __get($key)
  307. {
  308. // The ignored attributes hold all of the loaded relationships for the model.
  309. if (array_key_exists($key, $this->ignore))
  310. {
  311. return $this->ignore[$key];
  312. }
  313. // If the attribute is a relationship method, return the related models.
  314. if (method_exists($this, $key))
  315. {
  316. $model = $this->$key();
  317. return ($this->relating == 'has_one' or $this->relating == 'belongs_to')
  318. ? $this->ignore[$key] = $model->first()
  319. : $this->ignore[$key] = $model->get();
  320. }
  321. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  322. }
  323. /**
  324. * Magic Method for setting model attributes.
  325. */
  326. public function __set($key, $value)
  327. {
  328. // If the key is a relationship, add it to the ignored attributes.
  329. if (method_exists($this, $key))
  330. {
  331. $this->ignore[$key] = $value;
  332. }
  333. else
  334. {
  335. $this->attributes[$key] = $value;
  336. $this->dirty[$key] = $value;
  337. }
  338. }
  339. /**
  340. * Magic Method for determining if a model attribute is set.
  341. */
  342. public function __isset($key)
  343. {
  344. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  345. }
  346. /**
  347. * Magic Method for unsetting model attributes.
  348. */
  349. public function __unset($key)
  350. {
  351. unset($this->attributes[$key]);
  352. unset($this->ignore[$key]);
  353. unset($this->dirty[$key]);
  354. }
  355. /**
  356. * Magic Method for handling dynamic method calls.
  357. */
  358. public function __call($method, $parameters)
  359. {
  360. if ($method == 'get')
  361. {
  362. return $this->_get();
  363. }
  364. if ($method == 'first')
  365. {
  366. return $this->_first();
  367. }
  368. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  369. {
  370. return call_user_func_array(array($this->query, $method), $parameters);
  371. }
  372. // Pass the method to the query instance. This allows the chaining of methods
  373. // from the query builder, providing a nice, convenient API.
  374. call_user_func_array(array($this->query, $method), $parameters);
  375. return $this;
  376. }
  377. /**
  378. * Magic Method for handling dynamic static method calls.
  379. */
  380. public static function __callStatic($method, $parameters)
  381. {
  382. $model = static::make(get_called_class());
  383. if ($method == 'get' or $method == 'all')
  384. {
  385. return $model->_get();
  386. }
  387. if ($method == 'first')
  388. {
  389. return $model->_first();
  390. }
  391. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  392. {
  393. return call_user_func_array(array($model->query, $method), $parameters);
  394. }
  395. // Pass the method to the query instance. This allows the chaining of methods
  396. // from the query builder, providing a nice, convenient API.
  397. call_user_func_array(array($model->query, $method), $parameters);
  398. return $model;
  399. }
  400. }