model.php 18 KB

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