session.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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. * @return bool
  64. */
  65. public static function has()
  66. {
  67. foreach (func_get_args() as $key)
  68. {
  69. if ( ! array_key_exists($key, static::$session['data']) and
  70. ! array_key_exists(':old:'.$key, static::$session['data']) and
  71. ! array_key_exists(':new:'.$key, static::$session['data']))
  72. {
  73. return false;
  74. }
  75. }
  76. return true;
  77. }
  78. /**
  79. * Get an item from the session or flash data.
  80. *
  81. * @param string $key
  82. * @return mixed
  83. */
  84. public static function get($key, $default = null)
  85. {
  86. if (static::has($key))
  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. }
  101. return $default;
  102. }
  103. /**
  104. * Write an item to the session.
  105. *
  106. * @param string $key
  107. * @param mixed $value
  108. * @return void
  109. */
  110. public static function put($key, $value)
  111. {
  112. static::$session['data'][$key] = $value;
  113. }
  114. /**
  115. * Write an item to the session flash data.
  116. *
  117. * @param string $key
  118. * @param mixed $value
  119. * @return void
  120. */
  121. public static function flash($key, $value)
  122. {
  123. static::put(':new:'.$key, $value);
  124. }
  125. /**
  126. * Remove an item from the session.
  127. *
  128. * @param string $key
  129. * @return void
  130. */
  131. public static function forget($key)
  132. {
  133. unset(static::$session['data'][$key]);
  134. }
  135. /**
  136. * Remove all items from the session.
  137. *
  138. * @return void
  139. */
  140. public static function flush()
  141. {
  142. static::$session['data'] = array();
  143. }
  144. /**
  145. * Regenerate the session ID.
  146. *
  147. * @return void
  148. */
  149. public static function regenerate()
  150. {
  151. static::driver()->delete(static::$session['id']);
  152. static::$session['id'] = Str::random(40);
  153. }
  154. /**
  155. * Close the session.
  156. *
  157. * @return void
  158. */
  159. public static function close()
  160. {
  161. // -----------------------------------------------------
  162. // Flash the old input to the session and age the flash.
  163. // -----------------------------------------------------
  164. static::flash('laravel_old_input', Input::get());
  165. static::age_flash();
  166. // -----------------------------------------------------
  167. // Write the session data to storage.
  168. // -----------------------------------------------------
  169. static::driver()->save(static::$session);
  170. // -----------------------------------------------------
  171. // Set the session cookie.
  172. // -----------------------------------------------------
  173. if ( ! headers_sent())
  174. {
  175. $cookie = new Cookie('laravel_session', static::$session['id']);
  176. if ( ! Config::get('session.expire_on_close'))
  177. {
  178. $cookie->lifetime = Config::get('session.lifetime');
  179. }
  180. $cookie->path = Config::get('session.path');
  181. $cookie->domain = Config::get('session.domain');
  182. $cookie->secure = Config::get('session.https');
  183. $cookie->send();
  184. }
  185. // -----------------------------------------------------
  186. // Perform session garbage collection (2% chance).
  187. // -----------------------------------------------------
  188. if (mt_rand(1, 100) <= 2)
  189. {
  190. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  191. }
  192. }
  193. /**
  194. * Age the session flash data.
  195. *
  196. * @return void
  197. */
  198. private static function age_flash()
  199. {
  200. // -----------------------------------------------------
  201. // Expire all of the old flash data.
  202. // -----------------------------------------------------
  203. foreach (static::$session['data'] as $key => $value)
  204. {
  205. if (strpos($key, ':old:') === 0)
  206. {
  207. static::forget($key);
  208. }
  209. }
  210. // -----------------------------------------------------
  211. // Age all of the new flash data.
  212. // -----------------------------------------------------
  213. foreach (static::$session['data'] as $key => $value)
  214. {
  215. if (strpos($key, ':new:') === 0)
  216. {
  217. // -----------------------------------------------------
  218. // Create an :old: item for the :new: item.
  219. // -----------------------------------------------------
  220. static::put(':old:'.substr($key, 5), $value);
  221. // -----------------------------------------------------
  222. // Forget the :new: item.
  223. // -----------------------------------------------------
  224. static::forget($key);
  225. }
  226. }
  227. }
  228. }