cookie.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php namespace System\Session;
  2. use System\Config;
  3. use System\Crypter;
  4. class Cookie implements Driver {
  5. /**
  6. * The Crypter instance.
  7. *
  8. * @var Crypter
  9. */
  10. private $crypter;
  11. /**
  12. * Create a new Cookie session driver instance.
  13. *
  14. * @return void
  15. */
  16. public function __construct()
  17. {
  18. $this->crypter = new Crypter;
  19. if (Config::get('application.key') == '')
  20. {
  21. throw new \Exception("You must set an application key before using the Cookie session driver.");
  22. }
  23. }
  24. /**
  25. * Load a session by ID.
  26. *
  27. * @param string $id
  28. * @return array
  29. */
  30. public function load($id)
  31. {
  32. if (\System\Cookie::has('session_payload'))
  33. {
  34. return unserialize($this->crypter->decrypt(\System\Cookie::get('session_payload')));
  35. }
  36. }
  37. /**
  38. * Save a session.
  39. *
  40. * @param array $session
  41. * @return void
  42. */
  43. public function save($session)
  44. {
  45. if ( ! headers_sent())
  46. {
  47. extract(Config::get('session'));
  48. $payload = $this->crypter->encrypt(serialize($session));
  49. \System\Cookie::put('session_payload', $payload, $lifetime, $path, $domain, $https, $http_only);
  50. }
  51. }
  52. /**
  53. * Delete a session by ID.
  54. *
  55. * @param string $id
  56. * @return void
  57. */
  58. public function delete($id)
  59. {
  60. \System\Cookie::forget('session_payload');
  61. }
  62. }