session.php 4.8 KB

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