session.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <?php namespace System;
  2. class Session {
  3. /**
  4. * The active session driver.
  5. *
  6. * @var Session\Driver
  7. */
  8. public static $driver;
  9. /**
  10. * The session.
  11. *
  12. * @var array
  13. */
  14. public 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. // If the session is invalid or expired, start a new one.
  40. if (is_null($id) or is_null(static::$session) or static::expired(static::$session['last_activity']))
  41. {
  42. static::$session['id'] = Str::random(40);
  43. static::$session['data'] = array();
  44. }
  45. if ( ! static::has('csrf_token'))
  46. {
  47. static::put('csrf_token', Str::random(16));
  48. }
  49. static::$session['last_activity'] = time();
  50. }
  51. /**
  52. * Determine if a session has expired based on the last activity.
  53. *
  54. * @param int $last_activity
  55. * @return bool
  56. */
  57. private static function expired($last_activity)
  58. {
  59. return (time() - $last_activity) > (Config::get('session.lifetime') * 60);
  60. }
  61. /**
  62. * Determine if the session or flash data contains an item.
  63. *
  64. * @param string $key
  65. * @return bool
  66. */
  67. public static function has($key)
  68. {
  69. return (array_key_exists($key, static::$session['data']) or
  70. array_key_exists(':old:'.$key, static::$session['data']) or
  71. array_key_exists(':new:'.$key, static::$session['data']));
  72. }
  73. /**
  74. * Get an item from the session or flash data.
  75. *
  76. * @param string $key
  77. * @return mixed
  78. */
  79. public static function get($key, $default = null)
  80. {
  81. if (array_key_exists($key, static::$session['data']))
  82. {
  83. return static::$session['data'][$key];
  84. }
  85. elseif (array_key_exists(':old:'.$key, static::$session['data']))
  86. {
  87. return static::$session['data'][':old:'.$key];
  88. }
  89. elseif (array_key_exists(':new:'.$key, static::$session['data']))
  90. {
  91. return static::$session['data'][':new:'.$key];
  92. }
  93. return is_callable($default) ? call_user_func($default) : $default;
  94. }
  95. /**
  96. * Write an item to the session.
  97. *
  98. * @param string $key
  99. * @param mixed $value
  100. * @return void
  101. */
  102. public static function put($key, $value)
  103. {
  104. static::$session['data'][$key] = $value;
  105. }
  106. /**
  107. * Write an item to the session flash data.
  108. *
  109. * @param string $key
  110. * @param mixed $value
  111. * @return void
  112. */
  113. public static function flash($key, $value)
  114. {
  115. static::put(':new:'.$key, $value);
  116. }
  117. /**
  118. * Remove an item from the session.
  119. *
  120. * @param string $key
  121. * @return void
  122. */
  123. public static function forget($key)
  124. {
  125. unset(static::$session['data'][$key]);
  126. }
  127. /**
  128. * Remove all items from the session.
  129. *
  130. * @return void
  131. */
  132. public static function flush()
  133. {
  134. static::$session['data'] = array();
  135. }
  136. /**
  137. * Regenerate the session ID.
  138. *
  139. * @return void
  140. */
  141. public static function regenerate()
  142. {
  143. static::driver()->delete(static::$session['id']);
  144. static::$session['id'] = Str::random(40);
  145. }
  146. /**
  147. * Close the session.
  148. *
  149. * @return void
  150. */
  151. public static function close()
  152. {
  153. // Flash the old input data to the session. This allows the Input::old method to
  154. // retrieve the input from the previous request made by the user.
  155. static::flash('laravel_old_input', Input::get());
  156. static::age_flash();
  157. static::driver()->save(static::$session);
  158. if ( ! headers_sent())
  159. {
  160. $minutes = (Config::get('session.expire_on_close')) ? 0 : Config::get('session.lifetime');
  161. Cookie::put('laravel_session', static::$session['id'], $minutes, Config::get('session.path'), Config::get('session.domain'), Config::get('session.https'));
  162. }
  163. // 2% chance of performing session garbage collection...
  164. if (mt_rand(1, 100) <= 2)
  165. {
  166. static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
  167. }
  168. }
  169. /**
  170. * Age the session flash data.
  171. *
  172. * @return void
  173. */
  174. private static function age_flash()
  175. {
  176. foreach (static::$session['data'] as $key => $value)
  177. {
  178. if (strpos($key, ':old:') === 0)
  179. {
  180. static::forget($key);
  181. }
  182. }
  183. foreach (static::$session['data'] as $key => $value)
  184. {
  185. if (strpos($key, ':new:') === 0)
  186. {
  187. static::put(':old:'.substr($key, 5), $value);
  188. static::forget($key);
  189. }
  190. }
  191. }
  192. }