session.php 4.7 KB

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