eloquent.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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. * Retrieve the query for a 1:1 relationship.
  160. *
  161. * @param string $model
  162. * @param string $foreign_key
  163. * @return mixed
  164. */
  165. public function has_one($model, $foreign_key = null)
  166. {
  167. $this->relating = __FUNCTION__;
  168. return $this->has_one_or_many($model, $foreign_key);
  169. }
  170. /**
  171. * Retrieve the query for a 1:* relationship.
  172. *
  173. * @param string $model
  174. * @param string $foreign_key
  175. * @return mixed
  176. */
  177. public function has_many($model, $foreign_key = null)
  178. {
  179. $this->relating = __FUNCTION__;
  180. return $this->has_one_or_many($model, $foreign_key);
  181. }
  182. /**
  183. * Retrieve the query for a 1:1 or 1:* relationship.
  184. *
  185. * The default foreign key for has one and has many relationships is the name
  186. * of the model with an appended _id. For example, the foreign key for a
  187. * User model would be user_id. Photo would be photo_id, etc.
  188. *
  189. * @param string $model
  190. * @param string $foreign_key
  191. * @return mixed
  192. */
  193. private function has_one_or_many($model, $foreign_key)
  194. {
  195. $this->relating_key = (is_null($foreign_key)) ? strtolower(get_class($this)).'_id' : $foreign_key;
  196. return static::make($model)->where($this->relating_key, '=', $this->id);
  197. }
  198. /**
  199. * Retrieve the query for a 1:1 belonging relationship.
  200. *
  201. * The default foreign key for belonging relationships is the name of the
  202. * relationship method name with _id. So, if a model has a "manager" method
  203. * returning a belongs_to relationship, the key would be manager_id.
  204. *
  205. * @param string $model
  206. * @param string $foreign_key
  207. * @return mixed
  208. */
  209. public function belongs_to($model, $foreign_key = null)
  210. {
  211. $this->relating = __FUNCTION__;
  212. if ( ! is_null($foreign_key))
  213. {
  214. $this->relating_key = $foreign_key;
  215. }
  216. else
  217. {
  218. list(, $caller) = debug_backtrace(false);
  219. $this->relating_key = $caller['function'].'_id';
  220. }
  221. return static::make($model)->where('id', '=', $this->attributes[$this->relating_key]);
  222. }
  223. /**
  224. * Retrieve the query for a *:* relationship.
  225. *
  226. * By default, the intermediate table name is the plural names of the models
  227. * arranged alphabetically and concatenated with an underscore.
  228. *
  229. * The default foreign key for many-to-many relations is the name of the model
  230. * with an appended _id. This is the same convention as has_one and has_many.
  231. *
  232. * @param string $model
  233. * @param string $table
  234. * @param string $foreign_key
  235. * @param string $associated_key
  236. * @return mixed
  237. */
  238. public function has_and_belongs_to_many($model, $table = null, $foreign_key = null, $associated_key = null)
  239. {
  240. $this->relating = __FUNCTION__;
  241. if (is_null($table))
  242. {
  243. $models = array(Inflector::plural($model), Inflector::plural(get_class($this)));
  244. sort($models);
  245. $this->relating_table = strtolower($models[0].'_'.$models[1]);
  246. }
  247. else
  248. {
  249. $this->relating_table = $table;
  250. }
  251. // Allowing the overriding of the foreign and associated keys provides the flexibility for
  252. // self-referential many-to-many relationships, such as a "buddy list".
  253. $this->relating_key = (is_null($foreign_key)) ? strtolower(get_class($this)).'_id' : $foreign_key;
  254. $associated_key = (is_null($associated_key)) ? strtolower($model).'_id' : $associated_key;
  255. return static::make($model)
  256. ->select(array(static::table($model).'.*'))
  257. ->join($this->relating_table, static::table($model).'.id', '=', $this->relating_table.'.'.$associated_key)
  258. ->where($this->relating_table.'.'.$this->relating_key, '=', $this->id);
  259. }
  260. /**
  261. * Save the model to the database.
  262. *
  263. * @return void
  264. */
  265. public function save()
  266. {
  267. if ($this->exists and count($this->dirty) == 0)
  268. {
  269. return true;
  270. }
  271. $model = get_class($this);
  272. // Since the model was instantiated using "new", a query instance has not been set.
  273. // Only models being used for querying have their query instances set by default.
  274. $this->query = Query::table(static::table($model));
  275. if (property_exists($model, 'timestamps') and $model::$timestamps)
  276. {
  277. $this->updated_at = date('Y-m-d H:i:s');
  278. if ( ! $this->exists)
  279. {
  280. $this->created_at = $this->updated_at;
  281. }
  282. }
  283. // If the model already exists in the database, we will just update it.
  284. // Otherwise, we will insert the model and set the ID attribute.
  285. if ($this->exists)
  286. {
  287. $this->query->where('id', '=', $this->attributes['id'])->update($this->dirty);
  288. }
  289. else
  290. {
  291. $this->attributes['id'] = $this->query->insert_get_id($this->attributes);
  292. }
  293. $this->exists = true;
  294. $this->dirty = array();
  295. }
  296. /**
  297. * Delete a model from the database.
  298. *
  299. * @param int $id
  300. * @return int
  301. */
  302. public function delete($id = null)
  303. {
  304. if ($this->exists)
  305. {
  306. return Query::table(static::table(get_class($this)))->delete($this->id);
  307. }
  308. return $this->query->delete();
  309. }
  310. /**
  311. * Magic method for retrieving model attributes.
  312. */
  313. public function __get($key)
  314. {
  315. // The ignored attributes hold all of the loaded relationships for the model.
  316. if (array_key_exists($key, $this->ignore))
  317. {
  318. return $this->ignore[$key];
  319. }
  320. // If the attribute is a relationship method, return the related models.
  321. if (method_exists($this, $key))
  322. {
  323. $model = $this->$key();
  324. return $this->ignore[$key] = (in_array($this->relating, array('has_one', 'belongs_to'))) ? $model->first() : $model->get();
  325. }
  326. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  327. }
  328. /**
  329. * Magic Method for setting model attributes.
  330. */
  331. public function __set($key, $value)
  332. {
  333. // If the key is a relationship, add it to the ignored attributes.
  334. if (method_exists($this, $key))
  335. {
  336. $this->ignore[$key] = $value;
  337. }
  338. else
  339. {
  340. $this->attributes[$key] = $value;
  341. $this->dirty[$key] = $value;
  342. }
  343. }
  344. /**
  345. * Magic Method for determining if a model attribute is set.
  346. */
  347. public function __isset($key)
  348. {
  349. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  350. }
  351. /**
  352. * Magic Method for unsetting model attributes.
  353. */
  354. public function __unset($key)
  355. {
  356. unset($this->attributes[$key], $this->ignore[$key], $this->dirty[$key]);
  357. }
  358. /**
  359. * Magic Method for handling dynamic method calls.
  360. */
  361. public function __call($method, $parameters)
  362. {
  363. if ($method == 'get')
  364. {
  365. return $this->_get();
  366. }
  367. if ($method == 'first')
  368. {
  369. return $this->_first();
  370. }
  371. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  372. {
  373. return call_user_func_array(array($this->query, $method), $parameters);
  374. }
  375. // Pass the method to the query instance. This allows the chaining of methods
  376. // from the query builder, providing a nice, convenient API.
  377. call_user_func_array(array($this->query, $method), $parameters);
  378. return $this;
  379. }
  380. /**
  381. * Magic Method for handling dynamic static method calls.
  382. */
  383. public static function __callStatic($method, $parameters)
  384. {
  385. $model = static::make(get_called_class());
  386. if ($method == 'get' or $method == 'all')
  387. {
  388. return $model->_get();
  389. }
  390. if ($method == 'first')
  391. {
  392. return $model->_first();
  393. }
  394. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  395. {
  396. return call_user_func_array(array($model->query, $method), $parameters);
  397. }
  398. // Pass the method to the query instance. This allows the chaining of methods
  399. // from the query builder, providing a nice, convenient API.
  400. call_user_func_array(array($model->query, $method), $parameters);
  401. return $model;
  402. }
  403. }