cookie.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. if ( ! headers_sent())
  34. {
  35. extract(Config::get('session'));
  36. \System\Cookie::put('session_payload', Crypt::encrypt(serialize($session)), $lifetime, $path, $domain, $https, $http_only);
  37. }
  38. }
  39. /**
  40. * Delete a session by ID.
  41. *
  42. * @param string $id
  43. * @return void
  44. */
  45. public function delete($id)
  46. {
  47. \System\Cookie::forget('session_payload');
  48. }
  49. }