warehouse.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php namespace System\DB\Eloquent;
  2. class Warehouse {
  3. /**
  4. * Save an Eloquent model to the database.
  5. *
  6. * @param object $eloquent
  7. * @return void
  8. */
  9. public static function store($eloquent)
  10. {
  11. // -----------------------------------------------------
  12. // Get the model name.
  13. // -----------------------------------------------------
  14. $model = get_class($eloquent);
  15. // -----------------------------------------------------
  16. // Get a fresh query instance for the model.
  17. // -----------------------------------------------------
  18. $eloquent->query = \System\DB\Query::table(Meta::table($model));
  19. // -----------------------------------------------------
  20. // Set the activity timestamps.
  21. // -----------------------------------------------------
  22. if (property_exists($model, 'timestamps') and $model::$timestamps)
  23. {
  24. static::timestamp($eloquent);
  25. }
  26. // -----------------------------------------------------
  27. // If the model exists in the database, update it.
  28. // Otherwise, insert the model and set the ID.
  29. // -----------------------------------------------------
  30. if ($eloquent->exists)
  31. {
  32. return $eloquent->query->where('id', '=', $eloquent->attributes['id'])->update($eloquent->dirty);
  33. }
  34. else
  35. {
  36. $eloquent->attributes['id'] = $eloquent->query->insert_get_id($eloquent->attributes);
  37. }
  38. // -----------------------------------------------------
  39. // Set the existence flag to true.
  40. // -----------------------------------------------------
  41. $eloquent->exists = true;
  42. }
  43. /**
  44. * Set the activity timestamps on a model.
  45. *
  46. * @param object $eloquent
  47. * @return void
  48. */
  49. private static function timestamp($eloquent)
  50. {
  51. $eloquent->updated_at = date('Y-m-d H:i:s');
  52. if ( ! $eloquent->exists)
  53. {
  54. $eloquent->created_at = $eloquent->updated_at;
  55. }
  56. }
  57. }