db.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php namespace System\Session\Driver;
  2. class DB implements \System\Session\Driver {
  3. /**
  4. * Load a session by ID.
  5. *
  6. * @param string $id
  7. * @return array
  8. */
  9. public function load($id)
  10. {
  11. // -----------------------------------------------------
  12. // Find the session in the database.
  13. // -----------------------------------------------------
  14. $session = $this->query()->find($id);
  15. // -----------------------------------------------------
  16. // If the session was found, return it.
  17. // -----------------------------------------------------
  18. if ( ! is_null($session))
  19. {
  20. return array('id' => $session->id, 'last_activity' => $session->last_activity, 'data' => unserialize($session->data));
  21. }
  22. }
  23. /**
  24. * Save a session.
  25. *
  26. * @param array $session
  27. * @return void
  28. */
  29. public function save($session)
  30. {
  31. // -----------------------------------------------------
  32. // Delete the existing session row.
  33. // -----------------------------------------------------
  34. $this->delete($session['id']);
  35. // -----------------------------------------------------
  36. // Insert a new session row.
  37. // -----------------------------------------------------
  38. $this->query()->insert(array('id' => $session['id'], 'last_activity' => $session['last_activity'], 'data' => serialize($session['data'])));
  39. }
  40. /**
  41. * Delete a session by ID.
  42. *
  43. * @param string $id
  44. * @return void
  45. */
  46. public function delete($id)
  47. {
  48. $this->query()->where('id', '=', $id)->delete();
  49. }
  50. /**
  51. * Delete all expired sessions.
  52. *
  53. * @param int $expiration
  54. * @return void
  55. */
  56. public function sweep($expiration)
  57. {
  58. $this->query()->where('last_activity', '<', $expiration)->delete();
  59. }
  60. /**
  61. * Get a session database query.
  62. *
  63. * @return Query
  64. */
  65. private function query()
  66. {
  67. return \System\DB::table(\System\Config::get('session.table'));
  68. }
  69. }