eloquent.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  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(array(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 void
  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->updated_at = date('Y-m-d H:i:s');
  263. if ( ! $this->exists)
  264. {
  265. $this->created_at = $this->updated_at;
  266. }
  267. }
  268. // If the model already exists in the database, we will just update it.
  269. // Otherwise, we will insert the model and set the ID attribute.
  270. if ($this->exists)
  271. {
  272. $this->query->where('id', '=', $this->attributes['id'])->update($this->dirty);
  273. }
  274. else
  275. {
  276. $this->attributes['id'] = $this->query->insert_get_id($this->attributes);
  277. }
  278. $this->exists = true;
  279. $this->dirty = array();
  280. }
  281. /**
  282. * Delete a model from the database.
  283. *
  284. * @param int $id
  285. * @return int
  286. */
  287. public function delete($id = null)
  288. {
  289. if ($this->exists)
  290. {
  291. return Query::table(static::table(get_class($this)))->delete($this->id);
  292. }
  293. return $this->query->delete();
  294. }
  295. /**
  296. * Magic method for retrieving model attributes.
  297. */
  298. public function __get($key)
  299. {
  300. // The ignored attributes hold all of the loaded relationships for the model.
  301. if (array_key_exists($key, $this->ignore))
  302. {
  303. return $this->ignore[$key];
  304. }
  305. // If the attribute is a relationship method, return the related models.
  306. if (method_exists($this, $key))
  307. {
  308. $model = $this->$key();
  309. return $this->ignore[$key] = (in_array($this->relating, array('has_one', 'belongs_to'))) ? $model->first() : $model->get();
  310. }
  311. return (array_key_exists($key, $this->attributes)) ? $this->attributes[$key] : null;
  312. }
  313. /**
  314. * Magic Method for setting model attributes.
  315. */
  316. public function __set($key, $value)
  317. {
  318. // If the key is a relationship, add it to the ignored attributes.
  319. if (method_exists($this, $key))
  320. {
  321. $this->ignore[$key] = $value;
  322. }
  323. else
  324. {
  325. $this->attributes[$key] = $value;
  326. $this->dirty[$key] = $value;
  327. }
  328. }
  329. /**
  330. * Magic Method for determining if a model attribute is set.
  331. */
  332. public function __isset($key)
  333. {
  334. return (array_key_exists($key, $this->attributes) or array_key_exists($key, $this->ignore));
  335. }
  336. /**
  337. * Magic Method for unsetting model attributes.
  338. */
  339. public function __unset($key)
  340. {
  341. unset($this->attributes[$key], $this->ignore[$key], $this->dirty[$key]);
  342. }
  343. /**
  344. * Magic Method for handling dynamic method calls.
  345. */
  346. public function __call($method, $parameters)
  347. {
  348. if ($method == 'get')
  349. {
  350. return $this->_get();
  351. }
  352. if ($method == 'first')
  353. {
  354. return $this->_first();
  355. }
  356. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  357. {
  358. return call_user_func_array(array($this->query, $method), $parameters);
  359. }
  360. // Pass the method to the query instance. This allows the chaining of methods
  361. // from the query builder, providing a nice, convenient API.
  362. call_user_func_array(array($this->query, $method), $parameters);
  363. return $this;
  364. }
  365. /**
  366. * Magic Method for handling dynamic static method calls.
  367. */
  368. public static function __callStatic($method, $parameters)
  369. {
  370. $model = static::make(get_called_class());
  371. if ($method == 'get' or $method == 'all')
  372. {
  373. return $model->_get();
  374. }
  375. if ($method == 'first')
  376. {
  377. return $model->_first();
  378. }
  379. if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
  380. {
  381. return call_user_func_array(array($model->query, $method), $parameters);
  382. }
  383. // Pass the method to the query instance. This allows the chaining of methods
  384. // from the query builder, providing a nice, convenient API.
  385. call_user_func_array(array($model->query, $method), $parameters);
  386. return $model;
  387. }
  388. }