session.php 4.7 KB

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