session.php 4.8 KB

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