warehouse.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 bool
  8. */
  9. public static function put($eloquent)
  10. {
  11. $model = get_class($eloquent);
  12. // -----------------------------------------------------
  13. // Get a fresh query instance for the model.
  14. // -----------------------------------------------------
  15. $eloquent->query = \System\DB\Query::table(Meta::table($model));
  16. // -----------------------------------------------------
  17. // Set the creation and update timestamps.
  18. // -----------------------------------------------------
  19. if (property_exists($model, 'timestamps') and $model::$timestamps)
  20. {
  21. static::timestamp($eloquent);
  22. }
  23. if ($eloquent->exists)
  24. {
  25. return ($eloquent->query->where('id', '=', $eloquent->attributes['id'])->update($eloquent->dirty) == 1) ? true : false;
  26. }
  27. else
  28. {
  29. $eloquent->attributes['id'] = $eloquent->query->insert_get_id($eloquent->attributes);
  30. }
  31. $eloquent->exists = true;
  32. return true;
  33. }
  34. /**
  35. * Delete an Eloquent model from the database.
  36. *
  37. * @param object $eloquent
  38. * @return bool
  39. */
  40. public static function forget($eloquent)
  41. {
  42. return \System\DB::table(Meta::table(get_class($eloquent)))->where('id', '=', $eloquent->id)->delete() == 1;
  43. }
  44. /**
  45. * Set the activity timestamps on a model.
  46. *
  47. * @param object $eloquent
  48. * @return void
  49. */
  50. private static function timestamp($eloquent)
  51. {
  52. $eloquent->updated_at = date('Y-m-d H:i:s');
  53. if ( ! $eloquent->exists)
  54. {
  55. $eloquent->created_at = $eloquent->updated_at;
  56. }
  57. }
  58. }