session.php 4.7 KB

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