session.php 7.1 KB

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