session.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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.
  62. *
  63. * @param string $key
  64. * @return bool
  65. */
  66. public static function has($key)
  67. {
  68. return array_key_exists($key, static::$session['data']) or
  69. array_key_exists(':old:'.$key, static::$session['data']) or
  70. array_key_exists(':new:'.$key, static::$session['data']);
  71. }
  72. /**
  73. * Get an item from the session or flash data.
  74. *
  75. * @param string $key
  76. * @return mixed
  77. */
  78. public static function get($key, $default = null)
  79. {
  80. if (static::has($key))
  81. {
  82. if (array_key_exists($key, static::$session['data']))
  83. {
  84. return static::$session['data'][$key];
  85. }
  86. elseif (array_key_exists(':old:'.$key, static::$session['data']))
  87. {
  88. return static::$session['data'][':old:'.$key];
  89. }
  90. elseif (array_key_exists(':new:'.$key, static::$session['data']))
  91. {
  92. return static::$session['data'][':new:'.$key];
  93. }
  94. }
  95. return $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. * @return void
  152. */
  153. public static function close()
  154. {
  155. // -----------------------------------------------------
  156. // Flash the old input to the session and age the flash.
  157. // -----------------------------------------------------
  158. static::flash('laravel_old_input', Input::get());
  159. static::age_flash();
  160. // -----------------------------------------------------
  161. // Write the session data to storage.
  162. // -----------------------------------------------------
  163. static::driver()->save(static::$session);
  164. // -----------------------------------------------------
  165. // Set the session cookie.
  166. // -----------------------------------------------------
  167. if ( ! headers_sent())
  168. {
  169. $cookie = new Cookie('laravel_session', static::$session['id']);
  170. if ( ! Config::get('session.expire_on_close'))
  171. {
  172. $cookie->lifetime = Config::get('session.lifetime');
  173. }
  174. $cookie->path = Config::get('session.path');
  175. $cookie->domain = Config::get('session.domain');
  176. $cookie->secure = Config::get('session.https');
  177. $cookie->send();
  178. }
  179. // -----------------------------------------------------
  180. // Perform session garbage collection (2% chance).
  181. // -----------------------------------------------------
  182. if (mt_rand(1, 100) <= 2)
  183. {
  184. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  185. }
  186. }
  187. /**
  188. * Age the session flash data.
  189. *
  190. * @return void
  191. */
  192. private static function age_flash()
  193. {
  194. // -----------------------------------------------------
  195. // Expire all of the old flash data.
  196. // -----------------------------------------------------
  197. foreach (static::$session['data'] as $key => $value)
  198. {
  199. if (strpos($key, ':old:') === 0)
  200. {
  201. static::forget($key);
  202. }
  203. }
  204. // -----------------------------------------------------
  205. // Age all of the new flash data.
  206. // -----------------------------------------------------
  207. foreach (static::$session['data'] as $key => $value)
  208. {
  209. if (strpos($key, ':new:') === 0)
  210. {
  211. // -----------------------------------------------------
  212. // Create an :old: item for the :new: item.
  213. // -----------------------------------------------------
  214. static::put(':old:'.substr($key, 5), $value);
  215. // -----------------------------------------------------
  216. // Forget the :new: item.
  217. // -----------------------------------------------------
  218. static::forget($key);
  219. }
  220. }
  221. }
  222. }