cookie.php 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php namespace System\Session;
  2. use System\Crypt;
  3. use System\Config;
  4. class Cookie implements Driver {
  5. public function __construct()
  6. {
  7. if (Config::get('application.key') == '')
  8. {
  9. throw new \Exception("You must set an application key before using the Cookie session driver.");
  10. }
  11. }
  12. /**
  13. * Load a session by ID.
  14. *
  15. * @param string $id
  16. * @return array
  17. */
  18. public function load($id)
  19. {
  20. if (\System\Cookie::has('session_payload'))
  21. {
  22. return unserialize(Crypt::decrypt(\System\Cookie::get('session_payload')));
  23. }
  24. }
  25. /**
  26. * Save a session.
  27. *
  28. * @param array $session
  29. * @return void
  30. */
  31. public function save($session)
  32. {
  33. $c = \System\Config::get('session');
  34. \System\Cookie::put('session_payload', Crypt::encrypt(serialize($session)), $c['lifetime'], $c['path'], $c['domain'], $c['https'], $c['http_only']);
  35. }
  36. /**
  37. * Delete a session by ID.
  38. *
  39. * @param string $id
  40. * @return void
  41. */
  42. public function delete($id)
  43. {
  44. \System\Cookie::forget('session_payload');
  45. }
  46. }