Browse Source

Refactor Auth class to use Auth config closures.

Taylor Otwell 13 years ago
parent
commit
0d2cfd2417
1 changed files with 2 additions and 14 deletions
  1. 2 14
      system/auth.php

+ 2 - 14
system/auth.php

@@ -42,7 +42,7 @@ class Auth {
 
 
 		if (is_null(static::$user) and Session::has(static::$key))
 		if (is_null(static::$user) and Session::has(static::$key))
 		{
 		{
-			static::$user = forward_static_call(array(static::model(), 'find'), Session::get(static::$key));
+			static::$user = call_user_func(Config::get('auth.by_id'), Session::get(static::$key));
 		}
 		}
 
 
 		return static::$user;
 		return static::$user;
@@ -59,9 +59,7 @@ class Auth {
 	 */
 	 */
 	public static function login($username, $password)
 	public static function login($username, $password)
 	{
 	{
-		$user = forward_static_call(array(static::model(), 'where'), Config::get('auth.username'), '=', $username)->first();
-
-		if ( ! is_null($user))
+		if ( ! is_null($user = call_user_func(Config::get('auth.by_username'), $username)))
 		{
 		{
 			if (Hash::check($password, $user->password))
 			if (Hash::check($password, $user->password))
 			{
 			{
@@ -88,14 +86,4 @@ class Auth {
 		static::$user = null;
 		static::$user = null;
 	}
 	}
 
 
-	/**
-	 * Get the authentication model.
-	 *
-	 * @return string
-	 */
-	private static function model()
-	{
-		return '\\'.Config::get('auth.model');
-	}
-
 }
 }