session.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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. If the driver has already been instantiated, that
  17. * instance will be returned.
  18. *
  19. * @return Session\Driver
  20. */
  21. public static function driver()
  22. {
  23. if (is_null(static::$driver))
  24. {
  25. static::$driver = Session\Factory::make(Config::get('session.driver'));
  26. }
  27. return static::$driver;
  28. }
  29. /**
  30. * Load the session for the user.
  31. *
  32. * @return void
  33. */
  34. public static function load()
  35. {
  36. // -----------------------------------------------------
  37. // If a valid ID is present, load the session.
  38. // -----------------------------------------------------
  39. if ( ! is_null($id = Cookie::get('laravel_session')))
  40. {
  41. static::$session = static::driver()->load($id);
  42. }
  43. // -----------------------------------------------------
  44. // If the session is invalid, start a new one.
  45. // -----------------------------------------------------
  46. if (is_null($id) or is_null(static::$session) or (time() - static::$session['last_activity']) > (Config::get('session.lifetime') * 60))
  47. {
  48. static::$session['id'] = Str::random(40);
  49. static::$session['data'] = array();
  50. }
  51. // -----------------------------------------------------
  52. // Create a CSRF token for the session if necessary.
  53. // -----------------------------------------------------
  54. if ( ! static::has('csrf_token'))
  55. {
  56. static::put('csrf_token', Str::random(16));
  57. }
  58. static::$session['last_activity'] = time();
  59. }
  60. /**
  61. * Determine if the session or flash data contains an item or set of items.
  62. *
  63. * @param string $key
  64. * @return bool
  65. */
  66. public static function has($key)
  67. {
  68. foreach (func_get_args() as $key)
  69. {
  70. if ( ! array_key_exists($key, static::$session['data']) and
  71. ! array_key_exists(':old:'.$key, static::$session['data']) and
  72. ! array_key_exists(':new:'.$key, static::$session['data']))
  73. {
  74. return false;
  75. }
  76. }
  77. return true;
  78. }
  79. /**
  80. * Get an item from the session or flash data.
  81. *
  82. * @param string $key
  83. * @return mixed
  84. */
  85. public static function get($key, $default = null)
  86. {
  87. if (static::has($key))
  88. {
  89. if (array_key_exists($key, static::$session['data']))
  90. {
  91. return static::$session['data'][$key];
  92. }
  93. elseif (array_key_exists(':old:'.$key, static::$session['data']))
  94. {
  95. return static::$session['data'][':old:'.$key];
  96. }
  97. elseif (array_key_exists(':new:'.$key, static::$session['data']))
  98. {
  99. return static::$session['data'][':new:'.$key];
  100. }
  101. }
  102. return $default;
  103. }
  104. /**
  105. * Write an item to the session.
  106. *
  107. * @param string $key
  108. * @param mixed $value
  109. * @return void
  110. */
  111. public static function put($key, $value)
  112. {
  113. static::$session['data'][$key] = $value;
  114. }
  115. /**
  116. * Write an item to the session flash data.
  117. *
  118. * @param string $key
  119. * @param mixed $value
  120. * @return void
  121. */
  122. public static function flash($key, $value)
  123. {
  124. static::put(':new:'.$key, $value);
  125. }
  126. /**
  127. * Remove an item from the session.
  128. *
  129. * @param string $key
  130. * @return void
  131. */
  132. public static function forget($key)
  133. {
  134. unset(static::$session['data'][$key]);
  135. }
  136. /**
  137. * Remove all items from the session.
  138. *
  139. * @return void
  140. */
  141. public static function flush()
  142. {
  143. static::$session['data'] = array();
  144. }
  145. /**
  146. * Regenerate the session ID.
  147. *
  148. * @return void
  149. */
  150. public static function regenerate()
  151. {
  152. static::driver()->delete(static::$session['id']);
  153. static::$session['id'] = Str::random(40);
  154. }
  155. /**
  156. * Close the session.
  157. *
  158. * @return void
  159. */
  160. public static function close()
  161. {
  162. // -----------------------------------------------------
  163. // Flash the old input to the session and age the flash.
  164. // -----------------------------------------------------
  165. static::flash('laravel_old_input', Input::get());
  166. static::age_flash();
  167. // -----------------------------------------------------
  168. // Write the session data to storage.
  169. // -----------------------------------------------------
  170. static::driver()->save(static::$session);
  171. // -----------------------------------------------------
  172. // Set the session cookie.
  173. // -----------------------------------------------------
  174. if ( ! headers_sent())
  175. {
  176. $cookie = new Cookie('laravel_session', static::$session['id']);
  177. if ( ! Config::get('session.expire_on_close'))
  178. {
  179. $cookie->lifetime = Config::get('session.lifetime');
  180. }
  181. $cookie->path = Config::get('session.path');
  182. $cookie->domain = Config::get('session.domain');
  183. $cookie->secure = Config::get('session.https');
  184. $cookie->send();
  185. }
  186. // -----------------------------------------------------
  187. // Perform session garbage collection (2% chance).
  188. // -----------------------------------------------------
  189. if (mt_rand(1, 100) <= 2)
  190. {
  191. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  192. }
  193. }
  194. /**
  195. * Age the session flash data.
  196. *
  197. * @return void
  198. */
  199. private static function age_flash()
  200. {
  201. // -----------------------------------------------------
  202. // Expire all of the old flash data.
  203. // -----------------------------------------------------
  204. foreach (static::$session['data'] as $key => $value)
  205. {
  206. if (strpos($key, ':old:') === 0)
  207. {
  208. static::forget($key);
  209. }
  210. }
  211. // -----------------------------------------------------
  212. // Age all of the new flash data.
  213. // -----------------------------------------------------
  214. foreach (static::$session['data'] as $key => $value)
  215. {
  216. if (strpos($key, ':new:') === 0)
  217. {
  218. // -----------------------------------------------------
  219. // Create an :old: item for the :new: item.
  220. // -----------------------------------------------------
  221. static::put(':old:'.substr($key, 5), $value);
  222. // -----------------------------------------------------
  223. // Forget the :new: item.
  224. // -----------------------------------------------------
  225. static::forget($key);
  226. }
  227. }
  228. }
  229. }