Browse Source

Added first draft of remember me to auth.

Eric Barnes 13 years ago
parent
commit
b6537da8b6
1 changed files with 23 additions and 1 deletions
  1. 23 1
      laravel/security/auth.php

+ 23 - 1
laravel/security/auth.php

@@ -52,6 +52,15 @@ class Auth {
 
 
 		$id = IoC::container()->core('session')->get(Auth::user_key);
 		$id = IoC::container()->core('session')->get(Auth::user_key);
 
 
+		if (is_null($id) AND ! is_null($cookie = strrev(Crypter::decrypt(\Cookie::get('remember')))))
+		{
+			$cookie = explode('|', $cookie);
+			if ($cookie[2] == md5(\Request::server('HTTP_USER_AGENT')))
+			{
+				$id = $cookie[0];
+			}
+		}
+
 		return static::$user = call_user_func(Config::get('auth.user'), $id);
 		return static::$user = call_user_func(Config::get('auth.user'), $id);
 	}
 	}
 
 
@@ -65,12 +74,14 @@ class Auth {
 	 * @param  string  $password
 	 * @param  string  $password
 	 * @return bool
 	 * @return bool
 	 */
 	 */
-	public static function attempt($username, $password = null)
+	public static function attempt($username, $password = null, $remember = false)
 	{
 	{
 		if ( ! is_null($user = call_user_func(Config::get('auth.attempt'), $username, $password)))
 		if ( ! is_null($user = call_user_func(Config::get('auth.attempt'), $username, $password)))
 		{
 		{
 			static::login($user);
 			static::login($user);
 
 
+			if ($remember) static::remember($user);
+
 			return true;
 			return true;
 		}
 		}
 
 
@@ -108,4 +119,15 @@ class Auth {
 		IoC::container()->core('session')->forget(Auth::user_key);
 		IoC::container()->core('session')->forget(Auth::user_key);
 	}
 	}
 
 
+	/**
+	 * Set a cookie so that users are remembered.
+	 *
+	 * @return bool
+	 */
+	public static function remember($user)
+	{
+		static::$user = $user;
+		$cookie = Crypter::encrypt(strrev($user->id.'|'.\Request::ip().'|'.md5(\Request::server('HTTP_USER_AGENT')).'|'.time()));
+		\Cookie::put('remember', $cookie, 60);
+	}
 }
 }