session.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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 payload, which contains the session ID, data and last activity timestamp.
  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 (static::invalid(static::$session))
  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 is valid.
  63. *
  64. * A session is considered valid if it exists and has not expired.
  65. *
  66. * @param array $session
  67. * @return bool
  68. */
  69. private static function invalid($session)
  70. {
  71. return is_null($session) or (time() - $session['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 ( ! is_null(static::get($key)));
  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. foreach (array($key, ':old:'.$key, ':new:'.$key) as $possibility)
  92. {
  93. if (array_key_exists($possibility, static::$session['data'])) return static::$session['data'][$possibility];
  94. }
  95. return is_callable($default) ? call_user_func($default) : $default;
  96. }
  97. /**
  98. * Write an item to the session.
  99. *
  100. * @param string $key
  101. * @param mixed $value
  102. * @return void
  103. */
  104. public static function put($key, $value)
  105. {
  106. static::$session['data'][$key] = $value;
  107. }
  108. /**
  109. * Write an item to the session flash data.
  110. *
  111. * @param string $key
  112. * @param mixed $value
  113. * @return void
  114. */
  115. public static function flash($key, $value)
  116. {
  117. static::put(':new:'.$key, $value);
  118. }
  119. /**
  120. * Remove an item from the session.
  121. *
  122. * @param string $key
  123. * @return void
  124. */
  125. public static function forget($key)
  126. {
  127. unset(static::$session['data'][$key]);
  128. }
  129. /**
  130. * Remove all items from the session.
  131. *
  132. * @return void
  133. */
  134. public static function flush()
  135. {
  136. static::$session['data'] = array();
  137. }
  138. /**
  139. * Regenerate the session ID.
  140. *
  141. * @return void
  142. */
  143. public static function regenerate()
  144. {
  145. static::driver()->delete(static::$session['id']);
  146. static::$session['id'] = Str::random(40);
  147. }
  148. /**
  149. * Close the session.
  150. *
  151. * The session will be stored in persistant storage and the session cookie will be
  152. * session cookie will be sent to the browser. The old input data will also be
  153. * stored in the session flash data.
  154. *
  155. * @return void
  156. */
  157. public static function close()
  158. {
  159. static::flash('laravel_old_input', Input::get());
  160. static::age_flash();
  161. static::driver()->save(static::$session);
  162. static::write_cookie();
  163. if (mt_rand(1, 100) <= 2 and static::driver() instanceof Session\Sweeper)
  164. {
  165. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  166. }
  167. }
  168. /**
  169. * Age the session flash data.
  170. *
  171. * @return void
  172. */
  173. private static function age_flash()
  174. {
  175. foreach (static::$session['data'] as $key => $value)
  176. {
  177. if (strpos($key, ':old:') === 0) static::forget($key);
  178. }
  179. foreach (static::$session['data'] as $key => $value)
  180. {
  181. if (strpos($key, ':new:') === 0)
  182. {
  183. static::put(':old:'.substr($key, 5), $value);
  184. static::forget($key);
  185. }
  186. }
  187. }
  188. /**
  189. * Write the session cookie.
  190. *
  191. * @return void
  192. */
  193. private static function write_cookie()
  194. {
  195. if ( ! headers_sent())
  196. {
  197. extract(Config::get('session'));
  198. $minutes = ($expire_on_close) ? 0 : $lifetime;
  199. Cookie::put('laravel_session', static::$session['id'], $minutes, $path, $domain, $https, $http_only);
  200. }
  201. }
  202. }