Browse Source

Refactoring the session class.

Taylor Otwell 13 years ago
parent
commit
5eb379d6cc
1 changed files with 6 additions and 10 deletions
  1. 6 10
      system/session.php

+ 6 - 10
system/session.php

@@ -52,22 +52,18 @@ class Session {
 	}
 
 	/**
-	 * Load the session for the user.
+	 * Load a user session by ID.
 	 *
+	 * @param  string  $id
 	 * @return void
 	 */
-	public static function load()
+	public static function load($id)
 	{
-		if ( ! is_null($id = Cookie::get('laravel_session')))
-		{
-			static::$session = static::driver()->load($id);
-		}
+		static::$session = ( ! is_null($id)) ? static::driver()->load($id) : null;
 
-		// If the session is invalid or expired, start a new one.
-		if (is_null($id) or is_null(static::$session) or static::expired(static::$session['last_activity']))
+		if (is_null(static::$session) or static::expired(static::$session['last_activity']))
 		{
-			static::$session['id'] = Str::random(40);
-			static::$session['data'] = array();
+			static::$session = array('id' => Str::random(40), 'data' => array());
 		}
 
 		if ( ! static::has('csrf_token'))