model.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  1. <?php namespace Laravel\Database\Eloquent;
  2. use Laravel\Str;
  3. use Laravel\Database;
  4. use Laravel\Database\Eloquent\Relationships\Has_Many_And_Belongs_To;
  5. abstract class Model {
  6. /**
  7. * All of the model's attributes.
  8. *
  9. * @var array
  10. */
  11. public $attributes = array();
  12. /**
  13. * The model's attributes in their original state.
  14. *
  15. * @var array
  16. */
  17. public $original = array();
  18. /**
  19. * The relationships that have been loaded for the query.
  20. *
  21. * @var array
  22. */
  23. public $relationships = array();
  24. /**
  25. * Indicates if the model exists in the database.
  26. *
  27. * @var bool
  28. */
  29. public $exists = false;
  30. /**
  31. * The relationships that should be eagerly loaded.
  32. *
  33. * @var array
  34. */
  35. public $includes = array();
  36. /**
  37. * The primary key for the model on the database table.
  38. *
  39. * @var string
  40. */
  41. public static $key = 'id';
  42. /**
  43. * The attributes that are accessible for mass assignment.
  44. *
  45. * @var array
  46. */
  47. public static $accessible;
  48. /**
  49. * The attributes that should be excluded from to_array.
  50. *
  51. * @var array
  52. */
  53. public static $hidden = array();
  54. /**
  55. * Indicates if the model has update and creation timestamps.
  56. *
  57. * @var bool
  58. */
  59. public static $timestamps = true;
  60. /**
  61. * The name of the table associated with the model.
  62. *
  63. * @var string
  64. */
  65. public static $table;
  66. /**
  67. * The name of the database connection that should be used for the model.
  68. *
  69. * @var string
  70. */
  71. public static $connection;
  72. /**
  73. * The name of the sequence associated with the model.
  74. *
  75. * @var string
  76. */
  77. public static $sequence;
  78. /**
  79. * The default number of models to show per page when paginating.
  80. *
  81. * @var int
  82. */
  83. public static $per_page = 20;
  84. /**
  85. * Create a new Eloquent model instance.
  86. *
  87. * @param array $attributes
  88. * @param bool $exists
  89. * @return void
  90. */
  91. public function __construct($attributes = array(), $exists = false)
  92. {
  93. $this->exists = $exists;
  94. $this->fill($attributes);
  95. }
  96. /**
  97. * Hydrate the model with an array of attributes.
  98. *
  99. * @param array $attributes
  100. * @return Model
  101. */
  102. public function fill($attributes)
  103. {
  104. $attributes = (array) $attributes;
  105. foreach ($attributes as $key => $value)
  106. {
  107. // If the "accessible" property is an array, the developer is limiting the
  108. // attributes that may be mass assigned, and we need to verify that the
  109. // current attribute is included in that list of allowed attributes.
  110. if (is_array(static::$accessible))
  111. {
  112. if (in_array($key, static::$accessible))
  113. {
  114. $this->$key = $value;
  115. }
  116. }
  117. // If the "accessible" property is not an array, no attributes have been
  118. // white-listed and we are free to set the value of the attribute to
  119. // the value that has been passed into the method without a check.
  120. else
  121. {
  122. $this->$key = $value;
  123. }
  124. }
  125. // If the original attribute values have not been set, we will set
  126. // them to the values passed to this method allowing us to easily
  127. // check if the model has changed since hydration.
  128. if (count($this->original) === 0)
  129. {
  130. $this->original = $this->attributes;
  131. }
  132. return $this;
  133. }
  134. /**
  135. * Set the accessible attributes for the given model.
  136. *
  137. * @param array $attributes
  138. * @return void
  139. */
  140. public static function accessible($attributes)
  141. {
  142. static::$accessible = $attributes;
  143. }
  144. /**
  145. * Create a new model and store it in the database.
  146. *
  147. * If save is successful, the model will be returned, otherwise false.
  148. *
  149. * @param array $attributes
  150. * @return Model|false
  151. */
  152. public static function create($attributes)
  153. {
  154. $model = new static($attributes);
  155. $success = $model->save();
  156. return ($success) ? $model : false;
  157. }
  158. /**
  159. * Update a model instance in the database.
  160. *
  161. * @param mixed $id
  162. * @param array $attributes
  163. * @return int
  164. */
  165. public static function update($id, $attributes)
  166. {
  167. $model = new static(array(), true);
  168. if (static::$timestamps) $attributes['updated_at'] = $model->get_timestamp();
  169. return $model->query()->where($model->key(), '=', $id)->update($attributes);
  170. }
  171. /**
  172. * Find a model by its primary key.
  173. *
  174. * @param string $id
  175. * @param array $columns
  176. * @return Model
  177. */
  178. public static function find($id, $columns = array('*'))
  179. {
  180. $model = new static;
  181. return $model->query()->where(static::$key, '=', $id)->first($columns);
  182. }
  183. /**
  184. * Get all of the models in the database.
  185. *
  186. * @return array
  187. */
  188. public static function all()
  189. {
  190. return with(new static)->query()->get();
  191. }
  192. /**
  193. * The relationships that should be eagerly loaded by the query.
  194. *
  195. * @param array $includes
  196. * @return Model
  197. */
  198. public function _with($includes)
  199. {
  200. $this->includes = (array) $includes;
  201. return $this;
  202. }
  203. /**
  204. * Get the query for a one-to-one association.
  205. *
  206. * @param string $model
  207. * @param string $foreign
  208. * @return Relationship
  209. */
  210. public function has_one($model, $foreign = null)
  211. {
  212. return $this->has_one_or_many(__FUNCTION__, $model, $foreign);
  213. }
  214. /**
  215. * Get the query for a one-to-many association.
  216. *
  217. * @param string $model
  218. * @param string $foreign
  219. * @return Relationship
  220. */
  221. public function has_many($model, $foreign = null)
  222. {
  223. return $this->has_one_or_many(__FUNCTION__, $model, $foreign);
  224. }
  225. /**
  226. * Get the query for a one-to-one / many association.
  227. *
  228. * @param string $type
  229. * @param string $model
  230. * @param string $foreign
  231. * @return Relationship
  232. */
  233. protected function has_one_or_many($type, $model, $foreign)
  234. {
  235. if ($type == 'has_one')
  236. {
  237. return new Relationships\Has_One($this, $model, $foreign);
  238. }
  239. else
  240. {
  241. return new Relationships\Has_Many($this, $model, $foreign);
  242. }
  243. }
  244. /**
  245. * Get the query for a one-to-one (inverse) relationship.
  246. *
  247. * @param string $model
  248. * @param string $foreign
  249. * @return Relationship
  250. */
  251. public function belongs_to($model, $foreign = null)
  252. {
  253. // If no foreign key is specified for the relationship, we will assume that the
  254. // name of the calling function matches the foreign key. For example, if the
  255. // calling function is "manager", we'll assume the key is "manager_id".
  256. if (is_null($foreign))
  257. {
  258. list(, $caller) = debug_backtrace(false);
  259. $foreign = "{$caller['function']}_id";
  260. }
  261. return new Relationships\Belongs_To($this, $model, $foreign);
  262. }
  263. /**
  264. * Get the query for a many-to-many relationship.
  265. *
  266. * @param string $model
  267. * @param string $table
  268. * @param string $foreign
  269. * @param string $other
  270. * @return Relationship
  271. */
  272. public function has_many_and_belongs_to($model, $table = null, $foreign = null, $other = null)
  273. {
  274. return new Has_Many_And_Belongs_To($this, $model, $table, $foreign, $other);
  275. }
  276. /**
  277. * Save the model and all of its relations to the database.
  278. *
  279. * @return bool
  280. */
  281. public function push()
  282. {
  283. $this->save();
  284. // To sync all of the relationships to the database, we will simply spin through
  285. // the relationships, calling the "push" method on each of the models in that
  286. // given relationship, this should ensure that each model is saved.
  287. foreach ($this->relationships as $name => $models)
  288. {
  289. if ( ! is_array($models))
  290. {
  291. $models = array($models);
  292. }
  293. foreach ($models as $model)
  294. {
  295. $model->push();
  296. }
  297. }
  298. }
  299. /**
  300. * Save the model instance to the database.
  301. *
  302. * @return bool
  303. */
  304. public function save()
  305. {
  306. if ( ! $this->dirty()) return true;
  307. if (static::$timestamps)
  308. {
  309. $this->timestamp();
  310. }
  311. // If the model exists, we only need to update it in the database, and the update
  312. // will be considered successful if there is one affected row returned from the
  313. // fluent query instance. We'll set the where condition automatically.
  314. if ($this->exists)
  315. {
  316. $query = $this->query()->where(static::$key, '=', $this->get_key());
  317. $result = $query->update($this->get_dirty()) === 1;
  318. }
  319. // If the model does not exist, we will insert the record and retrieve the last
  320. // insert ID that is associated with the model. If the ID returned is numeric
  321. // then we can consider the insert successful.
  322. else
  323. {
  324. $id = $this->query()->insert_get_id($this->attributes, $this->sequence());
  325. $this->set_key($id);
  326. $this->exists = $result = is_numeric($this->get_key());
  327. }
  328. // After the model has been "saved", we will set the original attributes to
  329. // match the current attributes so the model will not be viewed as being
  330. // dirty and subsequent calls won't hit the database.
  331. $this->original = $this->attributes;
  332. return $result;
  333. }
  334. /**
  335. * Delete the model from the database.
  336. *
  337. * @return int
  338. */
  339. public function delete()
  340. {
  341. if ($this->exists)
  342. {
  343. return $this->query()->where(static::$key, '=', $this->get_key())->delete();
  344. }
  345. }
  346. /**
  347. * Set the update and creation timestamps on the model.
  348. *
  349. * @return void
  350. */
  351. protected function timestamp()
  352. {
  353. $this->updated_at = $this->get_timestamp();
  354. if ( ! $this->exists) $this->created_at = $this->updated_at;
  355. }
  356. /**
  357. * Get the current timestamp in its storable form.
  358. *
  359. * @return mixed
  360. */
  361. public function get_timestamp()
  362. {
  363. return date('Y-m-d H:i:s');
  364. }
  365. /**
  366. * Get a new fluent query builder instance for the model.
  367. *
  368. * @return Query
  369. */
  370. protected function query()
  371. {
  372. return new Query($this);
  373. }
  374. /**
  375. * Sync the original attributes with the current attributes.
  376. *
  377. * @return bool
  378. */
  379. final public function sync()
  380. {
  381. $this->original = $this->attributes;
  382. return true;
  383. }
  384. /**
  385. * Determine if a given attribute has changed from its original state.
  386. *
  387. * @param string $attribute
  388. * @return bool
  389. */
  390. public function changed($attribute)
  391. {
  392. return array_get($this->attributes, $attribute) !== array_get($this->original, $attribute);
  393. }
  394. /**
  395. * Determine if the model has been changed from its original state.
  396. *
  397. * Models that haven't been persisted to storage are always considered dirty.
  398. *
  399. * @return bool
  400. */
  401. public function dirty()
  402. {
  403. return ! $this->exists or count($this->get_dirty()) > 0;
  404. }
  405. /**
  406. * Get the name of the table associated with the model.
  407. *
  408. * @return string
  409. */
  410. public function table()
  411. {
  412. return static::$table ?: strtolower(Str::plural(basename(get_class($this))));
  413. }
  414. /**
  415. * Get the dirty attributes for the model.
  416. *
  417. * @return array
  418. */
  419. public function get_dirty()
  420. {
  421. return array_diff_assoc($this->attributes, $this->original);
  422. }
  423. /**
  424. * Get the value of the primary key for the model.
  425. *
  426. * @return int
  427. */
  428. public function get_key()
  429. {
  430. return $this->get_attribute(static::$key);
  431. }
  432. /**
  433. * Set the value of the primary key for the model.
  434. *
  435. * @param int $value
  436. * @return void
  437. */
  438. public function set_key($value)
  439. {
  440. return $this->set_attribute(static::$key, $value);
  441. }
  442. /**
  443. * Get a given attribute from the model.
  444. *
  445. * @param string $key
  446. */
  447. public function get_attribute($key)
  448. {
  449. return array_get($this->attributes, $key);
  450. }
  451. /**
  452. * Set an attribute's value on the model.
  453. *
  454. * @param string $key
  455. * @param mixed $value
  456. * @return void
  457. */
  458. public function set_attribute($key, $value)
  459. {
  460. $this->attributes[$key] = $value;
  461. }
  462. /**
  463. * Remove an attribute from the model.
  464. *
  465. * @param string $key
  466. */
  467. final public function purge($key)
  468. {
  469. unset($this->original[$key]);
  470. unset($this->attributes[$key]);
  471. }
  472. /**
  473. * Get the model attributes and relationships in array form.
  474. *
  475. * @return array
  476. */
  477. public function to_array()
  478. {
  479. $attributes = array();
  480. // First we need to gather all of the regular attributes. If the attribute
  481. // exists in the array of "hidden" attributes, it will not be added to
  482. // the array so we can easily exclude things like passwords, etc.
  483. foreach (array_keys($this->attributes) as $attribute)
  484. {
  485. if ( ! in_array($attribute, static::$hidden))
  486. {
  487. $attributes[$attribute] = $this->$attribute;
  488. }
  489. }
  490. foreach ($this->relationships as $name => $models)
  491. {
  492. // If the relationship is not a "to-many" relationship, we can just
  493. // to_array the related model and add it as an attribute to the
  494. // array of existing regular attributes we gathered.
  495. if ( ! is_array($models))
  496. {
  497. $attributes[$name] = $models->to_array();
  498. }
  499. // If the relationship is a "to-many" relationship we need to spin
  500. // through each of the related models and add each one with the
  501. // to_array method, keying them both by name and ID.
  502. else
  503. {
  504. foreach ($models as $id => $model)
  505. {
  506. $attributes[$name][$id] = $model->to_array();
  507. }
  508. }
  509. }
  510. return $attributes;
  511. }
  512. /**
  513. * Handle the dynamic retrieval of attributes and associations.
  514. *
  515. * @param string $key
  516. * @return mixed
  517. */
  518. public function __get($key)
  519. {
  520. // First we will check to see if the requested key is an already loaded
  521. // relationship and return it if it is. All relationships are stored
  522. // in the special relationships array so they are not persisted.
  523. if (array_key_exists($key, $this->relationships))
  524. {
  525. return $this->relationships[$key];
  526. }
  527. // Next we'll check if the requested key is in the array of attributes
  528. // for the model. These are simply regular properties that typically
  529. // correspond to a single column on the database for the model.
  530. elseif (array_key_exists($key, $this->attributes))
  531. {
  532. return $this->{"get_{$key}"}();
  533. }
  534. // If the item is not a loaded relationship, it may be a relationship
  535. // that hasn't been loaded yet. If it is, we will lazy load it and
  536. // set the value of the relationship in the relationship array.
  537. elseif (method_exists($this, $key))
  538. {
  539. return $this->relationships[$key] = $this->$key()->results();
  540. }
  541. // Finally we will just assume the requested key is just a regular
  542. // attribute and attempt to call the getter method for it, which
  543. // will fall into the __call method if one doesn't exist.
  544. else
  545. {
  546. return $this->{"get_{$key}"}();
  547. }
  548. }
  549. /**
  550. * Handle the dynamic setting of attributes.
  551. *
  552. * @param string $key
  553. * @param mixed $value
  554. * @return void
  555. */
  556. public function __set($key, $value)
  557. {
  558. $this->{"set_{$key}"}($value);
  559. }
  560. /**
  561. * Determine if an attribute exists on the model.
  562. *
  563. * @param string $key
  564. * @return bool
  565. */
  566. public function __isset($key)
  567. {
  568. foreach (array('attributes', 'relationships') as $source)
  569. {
  570. if (array_key_exists($key, $this->$source)) return true;
  571. }
  572. }
  573. /**
  574. * Remove an attribute from the model.
  575. *
  576. * @param string $key
  577. * @return void
  578. */
  579. public function __unset($key)
  580. {
  581. foreach (array('attributes', 'relationships') as $source)
  582. {
  583. unset($this->$source[$key]);
  584. }
  585. }
  586. /**
  587. * Handle dynamic method calls on the model.
  588. *
  589. * @param string $method
  590. * @param array $parameters
  591. * @return mixed
  592. */
  593. public function __call($method, $parameters)
  594. {
  595. $meta = array('key', 'table', 'connection', 'sequence', 'per_page');
  596. // If the method is actually the name of a static property on the model we'll
  597. // return the value of the static property. This makes it convenient for
  598. // relationships to access these values off of the instances.
  599. if (in_array($method, $meta))
  600. {
  601. return static::$$method;
  602. }
  603. // Some methods need to be accessed both staticly and non-staticly so we'll
  604. // keep underscored methods of those methods and intercept calls to them
  605. // here so they can be called either way on the model instance.
  606. if (in_array($method, array('with')))
  607. {
  608. return call_user_func_array(array($this, '_'.$method), $parameters);
  609. }
  610. // First we want to see if the method is a getter / setter for an attribute.
  611. // If it is, we'll call the basic getter and setter method for the model
  612. // to perform the appropriate action based on the method.
  613. if (starts_with($method, 'get_'))
  614. {
  615. return $this->get_attribute(substr($method, 4));
  616. }
  617. elseif (starts_with($method, 'set_'))
  618. {
  619. $this->set_attribute(substr($method, 4), $parameters[0]);
  620. }
  621. // Finally we will assume that the method is actually the beginning of a
  622. // query, such as "where", and will create a new query instance and
  623. // call the method on the query instance, returning it after.
  624. else
  625. {
  626. return call_user_func_array(array($this->query(), $method), $parameters);
  627. }
  628. }
  629. /**
  630. * Dynamically handle static method calls on the model.
  631. *
  632. * @param string $method
  633. * @param array $parameters
  634. * @return mixed
  635. */
  636. public static function __callStatic($method, $parameters)
  637. {
  638. $model = get_called_class();
  639. return call_user_func_array(array(new $model, $method), $parameters);
  640. }
  641. }