|
@@ -17,15 +17,13 @@ class Session {
|
|
|
private static $session = array();
|
|
|
|
|
|
/**
|
|
|
- * Get the session driver instance.
|
|
|
+ * Get the session driver. If the driver has already been instantiated, that
|
|
|
+ * instance will be returned.
|
|
|
*
|
|
|
* @return Session\Driver
|
|
|
*/
|
|
|
public static function driver()
|
|
|
{
|
|
|
- // -----------------------------------------------------
|
|
|
- // Create the session driver if we haven't already.
|
|
|
- // -----------------------------------------------------
|
|
|
if (is_null(static::$driver))
|
|
|
{
|
|
|
static::$driver = Session\Factory::make(Config::get('session.driver'));
|
|
@@ -59,7 +57,7 @@ class Session {
|
|
|
}
|
|
|
|
|
|
// -----------------------------------------------------
|
|
|
- // Generate a CSRF token if one does not exist.
|
|
|
+ // Create a CSRF token for the session if necessary.
|
|
|
// -----------------------------------------------------
|
|
|
if ( ! static::has('csrf_token'))
|
|
|
{
|
|
@@ -70,7 +68,7 @@ class Session {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Determine if the session contains an item.
|
|
|
+ * Determine if the session or flash data contains an item.
|
|
|
*
|
|
|
* @param string $key
|
|
|
* @return bool
|
|
@@ -83,7 +81,7 @@ class Session {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Get an item from the session.
|
|
|
+ * Get an item from the session or flash data.
|
|
|
*
|
|
|
* @param string $key
|
|
|
* @return mixed
|
|
@@ -96,9 +94,6 @@ class Session {
|
|
|
{
|
|
|
return static::$session['data'][$key];
|
|
|
}
|
|
|
- // -----------------------------------------------------
|
|
|
- // Check the flash data for the item.
|
|
|
- // -----------------------------------------------------
|
|
|
elseif (array_key_exists(':old:'.$key, static::$session['data']))
|
|
|
{
|
|
|
return static::$session['data'][':old:'.$key];
|
|
@@ -125,7 +120,7 @@ class Session {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * Write a flash item to the session.
|
|
|
+ * Write an item to the session flash data.
|
|
|
*
|
|
|
* @param string $key
|
|
|
* @param mixed $value
|
|
@@ -176,17 +171,14 @@ class Session {
|
|
|
public static function close()
|
|
|
{
|
|
|
// -----------------------------------------------------
|
|
|
- // Flash the old input data to the session.
|
|
|
+ // Flash the old input to the session and age the flash.
|
|
|
// -----------------------------------------------------
|
|
|
- static::flash('laravel_old_input', Input::get());
|
|
|
+ static::flash('laravel_old_input', Input::get());
|
|
|
|
|
|
- // -----------------------------------------------------
|
|
|
- // Age the flash data.
|
|
|
- // -----------------------------------------------------
|
|
|
static::age_flash();
|
|
|
|
|
|
// -----------------------------------------------------
|
|
|
- // Save the session data to storage.
|
|
|
+ // Write the session data to storage.
|
|
|
// -----------------------------------------------------
|
|
|
static::driver()->save(static::$session);
|
|
|
|
|
@@ -195,8 +187,18 @@ class Session {
|
|
|
// -----------------------------------------------------
|
|
|
if ( ! headers_sent())
|
|
|
{
|
|
|
- $lifetime = (Config::get('session.expire_on_close')) ? 0 : Config::get('session.lifetime');
|
|
|
- Cookie::put('laravel_session', static::$session['id'], $lifetime, Config::get('session.path'), Config::get('session.domain'), Config::get('session.https'));
|
|
|
+ $cookie = new Cookie('laravel_session', static::$session['id']);
|
|
|
+
|
|
|
+ if ( ! Config::get('session.expire_on_close'))
|
|
|
+ {
|
|
|
+ $cookie->lifetime = Config::get('session.lifetime');
|
|
|
+ }
|
|
|
+
|
|
|
+ $cookie->path = Config::get('session.path');
|
|
|
+ $cookie->domain = Config::get('session.domain');
|
|
|
+ $cookie->secure = Config::get('session.https');
|
|
|
+
|
|
|
+ $cookie->send();
|
|
|
}
|
|
|
|
|
|
// -----------------------------------------------------
|
|
@@ -204,7 +206,7 @@ class Session {
|
|
|
// -----------------------------------------------------
|
|
|
if (mt_rand(1, 100) <= 2)
|
|
|
{
|
|
|
- static::driver()->sweep(time() - (Config::get('session.lifetime') * 60));
|
|
|
+ static::driver()->sweep(time() - ($config['lifetime'] * 60));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -234,12 +236,12 @@ class Session {
|
|
|
if (strpos($key, ':new:') === 0)
|
|
|
{
|
|
|
// -----------------------------------------------------
|
|
|
- // Create an :old: flash item.
|
|
|
+ // Create an :old: item for the :new: item.
|
|
|
// -----------------------------------------------------
|
|
|
static::put(':old:'.substr($key, 5), $value);
|
|
|
|
|
|
// -----------------------------------------------------
|
|
|
- // Forget the :new: flash item.
|
|
|
+ // Forget the :new: item.
|
|
|
// -----------------------------------------------------
|
|
|
static::forget($key);
|
|
|
}
|