model.php 13 KB

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