session.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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.
  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. static::$driver = new Session\Cookie;
  28. break;
  29. case 'file':
  30. static::$driver = new Session\File;
  31. break;
  32. case 'db':
  33. static::$driver = new Session\DB;
  34. break;
  35. case 'memcached':
  36. static::$driver = new Session\Memcached;
  37. break;
  38. case 'apc':
  39. static::$driver = new Session\APC;
  40. break;
  41. default:
  42. throw new \Exception("Session driver [$driver] is not supported.");
  43. }
  44. }
  45. return static::$driver;
  46. }
  47. /**
  48. * Load a user session by ID.
  49. *
  50. * @param string $id
  51. * @return void
  52. */
  53. public static function load($id)
  54. {
  55. static::$session = ( ! is_null($id)) ? static::driver()->load($id) : null;
  56. if (is_null(static::$session) or static::expired(static::$session['last_activity']))
  57. {
  58. static::$session = array('id' => Str::random(40), 'data' => array());
  59. }
  60. if ( ! static::has('csrf_token'))
  61. {
  62. static::put('csrf_token', Str::random(16));
  63. }
  64. static::$session['last_activity'] = time();
  65. }
  66. /**
  67. * Determine if a session has expired based on the last activity.
  68. *
  69. * @param int $last_activity
  70. * @return bool
  71. */
  72. private static function expired($last_activity)
  73. {
  74. return (time() - $last_activity) > (Config::get('session.lifetime') * 60);
  75. }
  76. /**
  77. * Determine if the session or flash data contains an item.
  78. *
  79. * @param string $key
  80. * @return bool
  81. */
  82. public static function has($key)
  83. {
  84. return (array_key_exists($key, static::$session['data']) or
  85. array_key_exists(':old:'.$key, static::$session['data']) or
  86. array_key_exists(':new:'.$key, static::$session['data']));
  87. }
  88. /**
  89. * Get an item from the session or flash data.
  90. *
  91. * @param string $key
  92. * @return mixed
  93. */
  94. public static function get($key, $default = null)
  95. {
  96. if (array_key_exists($key, static::$session['data']))
  97. {
  98. return static::$session['data'][$key];
  99. }
  100. elseif (array_key_exists(':old:'.$key, static::$session['data']))
  101. {
  102. return static::$session['data'][':old:'.$key];
  103. }
  104. elseif (array_key_exists(':new:'.$key, static::$session['data']))
  105. {
  106. return static::$session['data'][':new:'.$key];
  107. }
  108. return is_callable($default) ? call_user_func($default) : $default;
  109. }
  110. /**
  111. * Write an item to the session.
  112. *
  113. * @param string $key
  114. * @param mixed $value
  115. * @return void
  116. */
  117. public static function put($key, $value)
  118. {
  119. static::$session['data'][$key] = $value;
  120. }
  121. /**
  122. * Write an item to the session flash data.
  123. *
  124. * @param string $key
  125. * @param mixed $value
  126. * @return void
  127. */
  128. public static function flash($key, $value)
  129. {
  130. static::put(':new:'.$key, $value);
  131. }
  132. /**
  133. * Remove an item from the session.
  134. *
  135. * @param string $key
  136. * @return void
  137. */
  138. public static function forget($key)
  139. {
  140. unset(static::$session['data'][$key]);
  141. }
  142. /**
  143. * Remove all items from the session.
  144. *
  145. * @return void
  146. */
  147. public static function flush()
  148. {
  149. static::$session['data'] = array();
  150. }
  151. /**
  152. * Regenerate the session ID.
  153. *
  154. * @return void
  155. */
  156. public static function regenerate()
  157. {
  158. static::driver()->delete(static::$session['id']);
  159. static::$session['id'] = Str::random(40);
  160. }
  161. /**
  162. * Close the session.
  163. *
  164. * @return void
  165. */
  166. public static function close()
  167. {
  168. // Flash the old input data to the session. This allows the Input::old method to
  169. // retrieve the input from the previous request made by the user.
  170. static::flash('laravel_old_input', Input::get());
  171. static::age_flash();
  172. static::driver()->save(static::$session);
  173. $config = Config::get('session');
  174. if ( ! headers_sent())
  175. {
  176. $minutes = ($config['expire_on_close']) ? 0 : $config['lifetime'];
  177. Cookie::put('laravel_session', static::$session['id'], $minutes, $config['path'], $config['domain'], $config['https'], $config['http_only']);
  178. }
  179. // 2% chance of performing session garbage collection on any given request...
  180. if (mt_rand(1, 100) <= 2 and static::driver() instanceof Session\Sweeper)
  181. {
  182. static::driver()->sweep(time() - ($config['lifetime'] * 60));
  183. }
  184. }
  185. /**
  186. * Age the session flash data.
  187. *
  188. * @return void
  189. */
  190. private static function age_flash()
  191. {
  192. foreach (static::$session['data'] as $key => $value)
  193. {
  194. if (strpos($key, ':old:') === 0)
  195. {
  196. static::forget($key);
  197. }
  198. }
  199. foreach (static::$session['data'] as $key => $value)
  200. {
  201. if (strpos($key, ':new:') === 0)
  202. {
  203. static::put(':old:'.substr($key, 5), $value);
  204. static::forget($key);
  205. }
  206. }
  207. }
  208. }