session.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <?php namespace System;
  2. class Session {
  3. /**
  4. * The active session driver.
  5. *
  6. * @var Session\Driver
  7. */
  8. public static $driver;
  9. /**
  10. * The session payload, which contains the session ID, data and last activity timestamp.
  11. *
  12. * @var array
  13. */
  14. public static $session = array();
  15. /**
  16. * Get the session driver.
  17. *
  18. * @return Session\Driver
  19. */
  20. public static function driver()
  21. {
  22. if (is_null(static::$driver))
  23. {
  24. switch (Config::get('session.driver'))
  25. {
  26. case 'cookie':
  27. return static::$driver = new Session\Cookie;
  28. case 'file':
  29. return static::$driver = new Session\File;
  30. case 'db':
  31. return static::$driver = new Session\DB;
  32. case 'memcached':
  33. return static::$driver = new Session\Memcached;
  34. case 'apc':
  35. return static::$driver = new Session\APC;
  36. default:
  37. throw new \Exception("Session driver [$driver] is not supported.");
  38. }
  39. }
  40. return static::$driver;
  41. }
  42. /**
  43. * Load a user session by ID.
  44. *
  45. * @param string $id
  46. * @return void
  47. */
  48. public static function load($id)
  49. {
  50. static::$session = ( ! is_null($id)) ? static::driver()->load($id) : null;
  51. if (static::invalid(static::$session)) static::$session = array('id' => Str::random(40), 'data' => array());
  52. if ( ! static::has('csrf_token')) static::put('csrf_token', Str::random(16));
  53. static::$session['last_activity'] = time();
  54. }
  55. /**
  56. * Determine if a session is valid.
  57. *
  58. * A session is considered valid if it exists and has not expired.
  59. *
  60. * @param array $session
  61. * @return bool
  62. */
  63. private static function invalid($session)
  64. {
  65. return is_null($session) or (time() - $session['last_activity']) > (Config::get('session.lifetime') * 60);
  66. }
  67. /**
  68. * Determine if the session or flash data contains an item.
  69. *
  70. * @param string $key
  71. * @return bool
  72. */
  73. public static function has($key)
  74. {
  75. return ( ! is_null(static::get($key)));
  76. }
  77. /**
  78. * Get an item from the session or flash data.
  79. *
  80. * @param string $key
  81. * @return mixed
  82. */
  83. public static function get($key, $default = null)
  84. {
  85. foreach (array($key, ':old:'.$key, ':new:'.$key) as $possibility)
  86. {
  87. if (array_key_exists($possibility, static::$session['data'])) return static::$session['data'][$possibility];
  88. }
  89. return is_callable($default) ? call_user_func($default) : $default;
  90. }
  91. /**
  92. * Write an item to the session.
  93. *
  94. * @param string $key
  95. * @param mixed $value
  96. * @return void
  97. */
  98. public static function put($key, $value)
  99. {
  100. static::$session['data'][$key] = $value;
  101. }
  102. /**
  103. * Write an item to the session flash data.
  104. *
  105. * @param string $key
  106. * @param mixed $value
  107. * @return void
  108. */
  109. public static function flash($key, $value)
  110. {
  111. static::put(':new:'.$key, $value);
  112. }
  113. /**
  114. * Remove an item from the session.
  115. *
  116. * @param string $key
  117. * @return void
  118. */
  119. public static function forget($key)
  120. {
  121. unset(static::$session['data'][$key]);
  122. }
  123. /**
  124. * Remove all items from the session.
  125. *
  126. * @return void
  127. */
  128. public static function flush()
  129. {
  130. static::$session['data'] = array();
  131. }
  132. /**
  133. * Regenerate the session ID.
  134. *
  135. * @return void
  136. */
  137. public static function regenerate()
  138. {
  139. static::driver()->delete(static::$session['id']);
  140. static::$session['id'] = Str::random(40);
  141. }
  142. /**
  143. * Close the session.
  144. *
  145. * The session will be stored in persistant storage and the session cookie will be
  146. * session cookie will be sent to the browser. The old input data will also be
  147. * stored in the session flash data.
  148. *
  149. * @return void
  150. */
  151. public static function close()
  152. {
  153. static::flash('laravel_old_input', Input::get());
  154. static::age_flash();
  155. static::driver()->save(static::$session);
  156. static::write_cookie();
  157. if (mt_rand(1, 100) <= 2 and static::driver() instanceof Session\Sweeper)
  158. {
  159. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  160. }
  161. }
  162. /**
  163. * Age the session flash data.
  164. *
  165. * @return void
  166. */
  167. private static function age_flash()
  168. {
  169. foreach (static::$session['data'] as $key => $value)
  170. {
  171. if (strpos($key, ':old:') === 0) static::forget($key);
  172. }
  173. foreach (static::$session['data'] as $key => $value)
  174. {
  175. if (strpos($key, ':new:') === 0)
  176. {
  177. static::put(':old:'.substr($key, 5), $value);
  178. static::forget($key);
  179. }
  180. }
  181. }
  182. /**
  183. * Write the session cookie.
  184. *
  185. * @return void
  186. */
  187. private static function write_cookie()
  188. {
  189. if ( ! headers_sent())
  190. {
  191. extract(Config::get('session'));
  192. $minutes = ($expire_on_close) ? 0 : $lifetime;
  193. Cookie::put('laravel_session', static::$session['id'], $minutes, $path, $domain, $https, $http_only);
  194. }
  195. }
  196. }