session.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?php namespace System;
  2. class Session {
  3. /**
  4. * The active session driver.
  5. *
  6. * @var Session\Driver
  7. */
  8. private static $driver;
  9. /**
  10. * The session.
  11. *
  12. * @var array
  13. */
  14. private 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. static::$driver = Session\Factory::make(Config::get('session.driver'));
  25. }
  26. return static::$driver;
  27. }
  28. /**
  29. * Load the session for the user.
  30. *
  31. * @return void
  32. */
  33. public static function load()
  34. {
  35. if ( ! is_null($id = Cookie::get('laravel_session')))
  36. {
  37. static::$session = static::driver()->load($id);
  38. }
  39. // ---------------------------------------------------------
  40. // If the session is invalid or expired, start a new one.
  41. // ---------------------------------------------------------
  42. if (is_null($id) or is_null(static::$session) or static::expired(static::$session['last_activity']))
  43. {
  44. static::$session['id'] = Str::random(40);
  45. static::$session['data'] = array();
  46. }
  47. // ---------------------------------------------------------
  48. // Create a CSRF token for the session if necessary. This
  49. // token is used by the Form class and filters to protect
  50. // against cross-site request forgeries.
  51. // ---------------------------------------------------------
  52. if ( ! static::has('csrf_token'))
  53. {
  54. static::put('csrf_token', Str::random(16));
  55. }
  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 $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. // ---------------------------------------------------------
  151. // When regenerating the session ID, we go ahead and delete
  152. // the session data from storage. Then, we assign a new ID.
  153. //
  154. // The session will be re-written to storage at the end
  155. // of the request to the application.
  156. // ---------------------------------------------------------
  157. static::driver()->delete(static::$session['id']);
  158. static::$session['id'] = Str::random(40);
  159. }
  160. /**
  161. * Close the session.
  162. *
  163. * @return void
  164. */
  165. public static function close()
  166. {
  167. // ---------------------------------------------------------
  168. // Flash the old input data to the session. This allows
  169. // the Input::old method to retrieve input from the
  170. // previous request made by the user.
  171. // ---------------------------------------------------------
  172. static::flash('laravel_old_input', Input::get());
  173. static::age_flash();
  174. static::driver()->save(static::$session);
  175. // ---------------------------------------------------------
  176. // Send the session cookie the browser so we can remember
  177. // who the session belongs to on subsequent requests.
  178. // ---------------------------------------------------------
  179. if ( ! headers_sent())
  180. {
  181. $cookie = new Cookie('laravel_session', static::$session['id']);
  182. $cookie->lifetime = (Config::get('session.expire_on_close')) ? 0 : Config::get('session.lifetime');
  183. $cookie->path = Config::get('session.path');
  184. $cookie->domain = Config::get('session.domain');
  185. $cookie->secure = Config::get('session.https');
  186. $cookie->send();
  187. }
  188. // ---------------------------------------------------------
  189. // Perform session garbage collection (2% chance).
  190. // Session garbage collection removes all expired sessions.
  191. // ---------------------------------------------------------
  192. if (mt_rand(1, 100) <= 2)
  193. {
  194. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  195. }
  196. }
  197. /**
  198. * Age the session flash data.
  199. *
  200. * @return void
  201. */
  202. private static function age_flash()
  203. {
  204. // -----------------------------------------------------
  205. // Remove all of the :old: items from the session.
  206. // -----------------------------------------------------
  207. foreach (static::$session['data'] as $key => $value)
  208. {
  209. if (strpos($key, ':old:') === 0)
  210. {
  211. static::forget($key);
  212. }
  213. }
  214. // -----------------------------------------------------
  215. // Copy all of the :new: items to :old: items and then
  216. // remove the :new: items from the session.
  217. // -----------------------------------------------------
  218. foreach (static::$session['data'] as $key => $value)
  219. {
  220. if (strpos($key, ':new:') === 0)
  221. {
  222. static::put(':old:'.substr($key, 5), $value);
  223. static::forget($key);
  224. }
  225. }
  226. }
  227. }