eloquent.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  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. $this->fill($attributes);
  76. }
  77. /**
  78. * Set the attributes of the model using an array.
  79. *
  80. * @param array $attributes
  81. * @return void
  82. */
  83. public function fill($attributes)
  84. {
  85. foreach ($attributes as $key => $value)
  86. {
  87. $this->$key = $value;
  88. }
  89. }
  90. /**
  91. * Get the table name for a model.
  92. *
  93. * @param string $class
  94. * @return string
  95. */
  96. public static function table($class)
  97. {
  98. if (property_exists($class, 'table'))
  99. {
  100. return $class::$table;
  101. }
  102. return strtolower(Inflector::plural($class));
  103. }
  104. /**
  105. * Factory for creating new Eloquent model instances.
  106. *
  107. * @param string $class
  108. * @return object
  109. */
  110. public static function make($class)
  111. {
  112. $model = new $class;
  113. // Since this method is only used for instantiating models for querying
  114. // purposes, we will go ahead and set the Query instance on the model.
  115. $model->query = Query::table(static::table($class));
  116. return $model;
  117. }
  118. /**
  119. * Create a new model instance and set the relationships
  120. * that should be eagerly loaded.
  121. *
  122. * @return mixed
  123. */
  124. public static function with()
  125. {
  126. $model = static::make(get_called_class());
  127. $model->includes = func_get_args();
  128. return $model;
  129. }
  130. /**
  131. * Get a model by the primary key.
  132. *
  133. * @param int $id
  134. * @return mixed
  135. */
  136. public static function find($id)
  137. {
  138. return static::make(get_called_class())->where('id', '=', $id)->first();
  139. }
  140. /**
  141. * Get an array of models from the database.
  142. *
  143. * @return array
  144. */
  145. private function _get()
  146. {
  147. return Eloquent\Hydrator::hydrate($this);
  148. }
  149. /**
  150. * Get the first model result
  151. *
  152. * @return mixed
  153. */
  154. private function _first()
  155. {
  156. return (count($results = Eloquent\Hydrator::hydrate($this->take(1))) > 0) ? reset($results) : null;
  157. }
  158. /**
  159. * Get paginated model results.
  160. *
  161. * @param int $per_page
  162. * @return Paginator
  163. */
  164. private function _paginate($per_page = null)
  165. {
  166. $total = $this->query->count();
  167. if (is_null($per_page))
  168. {
  169. if ( ! property_exists(get_class($this), 'per_page'))
  170. {
  171. throw new \Exception("The number of models to display per page has not been specified.");
  172. }
  173. $per_page = static::$per_page;
  174. }
  175. $page = \System\Paginator::page(ceil($total / $per_page));
  176. return new \System\Paginator($this->for_page($page, $per_page)->get(), $total, $per_page);
  177. }
  178. /**
  179. * Retrieve the query for a 1:1 relationship.
  180. *
  181. * @param string $model
  182. * @param string $foreign_key
  183. * @return mixed
  184. */
  185. public function has_one($model, $foreign_key = null)
  186. {
  187. $this->relating = __FUNCTION__;
  188. return $this->has_one_or_many($model, $foreign_key);
  189. }
  190. /**
  191. * Retrieve the query for a 1:* relationship.
  192. *
  193. * @param string $model
  194. * @param string $foreign_key
  195. * @return mixed
  196. */
  197. public function has_many($model, $foreign_key = null)
  198. {
  199. $this->relating = __FUNCTION__;
  200. return $this->has_one_or_many($model, $foreign_key);
  201. }
  202. /**
  203. * Retrieve the query for a 1:1 or 1:* relationship.
  204. *
  205. * The default foreign key for has one and has many relationships is the name
  206. * of the model with an appended _id. For example, the foreign key for a
  207. * User model would be user_id. Photo would be photo_id, etc.
  208. *
  209. * @param string $model
  210. * @param string $foreign_key
  211. * @return mixed
  212. */
  213. private function has_one_or_many($model, $foreign_key)
  214. {
  215. $this->relating_key = (is_null($foreign_key)) ? strtolower(get_class($this)).'_id' : $foreign_key;
  216. return static::make($model)->where($this->relating_key, '=', $this->id);
  217. }
  218. /**
  219. * Retrieve the query for a 1:1 belonging relationship.
  220. *
  221. * The default foreign key for belonging relationships is the name of the
  222. * relationship method name with _id. So, if a model has a "manager" method
  223. * returning a belongs_to relationship, the key would be manager_id.
  224. *
  225. * @param string $model
  226. * @param string $foreign_key
  227. * @return mixed
  228. */
  229. public function belongs_to($model, $foreign_key = null)
  230. {
  231. $this->relating = __FUNCTION__;
  232. if ( ! is_null($foreign_key))
  233. {
  234. $this->relating_key = $foreign_key;
  235. }
  236. else
  237. {
  238. list(, $caller) = debug_backtrace(false);
  239. $this->relating_key = $caller['function'].'_id';
  240. }
  241. return static::make($model)->where('id', '=', $this->attributes[$this->relating_key]);
  242. }
  243. /**
  244. * Retrieve the query for a *:* relationship.
  245. *
  246. * By default, the intermediate table name is the plural names of the models
  247. * arranged alphabetically and concatenated with an underscore.
  248. *
  249. * The default foreign key for many-to-many relations is the name of the model
  250. * with an appended _id. This is the same convention as has_one and has_many.
  251. *
  252. * @param string $model
  253. * @param string $table
  254. * @param string $foreign_key
  255. * @param string $associated_key
  256. * @return mixed
  257. */
  258. public function has_and_belongs_to_many($model, $table = null, $foreign_key = null, $associated_key = null)
  259. {
  260. $this->relating = __FUNCTION__;
  261. if (is_null($table))
  262. {
  263. $models = array(Inflector::plural($model), Inflector::plural(get_class($this)));
  264. sort($models);
  265. $this->relating_table = strtolower($models[0].'_'.$models[1]);
  266. }
  267. else
  268. {
  269. $this->relating_table = $table;
  270. }
  271. // Allowing the overriding of the foreign and associated keys provides the flexibility for
  272. // self-referential many-to-many relationships, such as a "buddy list".
  273. $this->relating_key = (is_null($foreign_key)) ? strtolower(get_class($this)).'_id' : $foreign_key;
  274. $associated_key = (is_null($associated_key)) ? strtolower($model).'_id' : $associated_key;
  275. return static::make($model)
  276. ->select(array(static::table($model).'.*'))
  277. ->join($this->relating_table, static::table($model).'.id', '=', $this->relating_table.'.'.$associated_key)
  278. ->where($this->relating_table.'.'.$this->relating_key, '=', $this->id);
  279. }
  280. /**
  281. * Save the model to the database.
  282. *
  283. * @return void
  284. */
  285. public function save()
  286. {
  287. if ($this->exists and count($this->dirty) == 0)
  288. {
  289. return true;
  290. }
  291. $model = get_class($this);
  292. // Since the model was instantiated using "new", a query instance has not been set.
  293. // Only models being used for querying have their query instances set by default.
  294. $this->query = Query::table(static::table($model));
  295. if (property_exists($model, 'timestamps') and $model::$timestamps)
  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. // If the model already exists in the database, we will just update it.
  304. // Otherwise, we will insert the model and set the ID attribute.
  305. if ($this->exists)
  306. {
  307. $this->query->where('id', '=', $this->attributes['id'])->update($this->dirty);
  308. }
  309. else
  310. {
  311. $this->attributes['id'] = $this->query->insert_get_id($this->attributes);
  312. }
  313. $this->exists = true;
  314. $this->dirty = array();
  315. }
  316. /**
  317. * Delete a model from the database.
  318. *
  319. * @param int $id
  320. * @return int
  321. */
  322. public function delete($id = null)
  323. {
  324. if ($this->exists)
  325. {
  326. return Query::table(static::table(get_class($this)))->delete($this->id);
  327. }
  328. return $this->query->delete();
  329. }
  330. /**
  331. * Magic method for retrieving model attributes.
  332. */
  333. public function __get($key)
  334. {
  335. // The ignored attributes hold all of the loaded relationships for the model.
  336. if (array_key_exists($key, $this->ignore))
  337. {
  338. return $this->ignore[$key];
  339. }
  340. // If the attribute is a relationship method, return the related models.
  341. if (method_exists($this, $key))
  342. {
  343. $model = $this->$key();
  344. return $this->ignore[$key] = (in_array($this->relating, array('has_one', 'belongs_to'))) ? $model->first() : $model->get();
  345. }
  346. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  347. }
  348. /**
  349. * Magic Method for setting model attributes.
  350. */
  351. public function __set($key, $value)
  352. {
  353. // If the key is a relationship, add it to the ignored attributes.
  354. if (method_exists($this, $key))
  355. {
  356. $this->ignore[$key] = $value;
  357. }
  358. else
  359. {
  360. $this->attributes[$key] = $value;
  361. $this->dirty[$key] = $value;
  362. }
  363. }
  364. /**
  365. * Magic Method for determining if a model attribute is set.
  366. */
  367. public function __isset($key)
  368. {
  369. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  370. }
  371. /**
  372. * Magic Method for unsetting model attributes.
  373. */
  374. public function __unset($key)
  375. {
  376. unset($this->attributes[$key], $this->ignore[$key], $this->dirty[$key]);
  377. }
  378. /**
  379. * Magic Method for handling dynamic method calls.
  380. */
  381. public function __call($method, $parameters)
  382. {
  383. if (in_array($method, array('get', 'first', 'paginate')))
  384. {
  385. $method = '_'.$method;
  386. return $this->$method();
  387. }
  388. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  389. {
  390. return call_user_func_array(array($this->query, $method), $parameters);
  391. }
  392. // Pass the method to the query instance. This allows the chaining of methods
  393. // from the query builder, providing a nice, convenient API.
  394. call_user_func_array(array($this->query, $method), $parameters);
  395. return $this;
  396. }
  397. /**
  398. * Magic Method for handling dynamic static method calls.
  399. */
  400. public static function __callStatic($method, $parameters)
  401. {
  402. $model = static::make(get_called_class());
  403. if ($method == 'all')
  404. {
  405. return $model->_get();
  406. }
  407. if (in_array($method, array('get', 'first', 'paginate')))
  408. {
  409. $method = '_'.$method;
  410. return $model->$method();
  411. }
  412. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  413. {
  414. return call_user_func_array(array($model->query, $method), $parameters);
  415. }
  416. // Pass the method to the query instance. This allows the chaining of methods
  417. // from the query builder, providing a nice, convenient API.
  418. call_user_func_array(array($model->query, $method), $parameters);
  419. return $model;
  420. }
  421. }