基于 API 调用响应的自定义用户身份验证


Custom user authentication base on the response of an API call

描述:

我现在一直在使用Laravel进行一堆项目。在 Laravel 中实现用户身份验证很简单。现在,我正在处理的结构有点不同 - 我在本地没有databaseusers表。我必须进行 API 调用才能查询我需要的内容。


我试过了

public function postSignIn(){
    $username     = strtolower(Input::get('username'));
    $password_api = VSE::user('password',$username); // abc <-----
    $password     = Input::get('password'); // abc <-----

    if ( $password == $password_api ) {
        //Log user in
        $auth = Auth::attempt(); // Stuck here <----
    }
    if ($auth) {
      return Redirect::to('/dashboard')->with('success', 'Hi '. $username .' ! You have been successfully logged in.');
    }
    else {
      return Redirect::to('/')->with('error', 'Username/Password Wrong')->withInput(Request::except('password'))->with('username', $username);
    }
  }

更新

我在VSE类中使用简单的shell_exec命令连接到 API

public static function user($attr, $username) {
        $data = shell_exec('curl '.env('API_HOST').'vse/accounts');
        $raw = json_decode($data,true);
        $array =  $raw['data'];
        return $array[$attr];
    }

我希望我能在这里向您展示,但它在我的本地计算机上的 VM 上,所以请和我在一起。基本上,它

执行

curl http://172.16.67.137:1234/vse/accounts <---更新

响应

Object
data:Array[2]
0:Object
DBA:""
account_id:111
account_type:"admin"
address1:"111 Park Ave"
address2:"Floor 4"
address3:"Suite 4011"
city:"New York"
customer_type:2
display_name:"BobJ"
email_address:"bob@xyzcorp.com"
first_name:"Bob"
last_name:"Jones"
last_updated_utc_in_secs:200200300
middle_names:"X."
name_prefix:"Mr"
name_suffix:"Jr."
nation_code:"USA"
non_person_name:false
password:"abc"
phone1:"212-555-1212"
phone2:""
phone3:""
postal_code:"10022"
state:"NY"
time_zone_offset_from_utc:-5
1:Object
DBA:""
account_id:112
account_type:"mbn"
address1:"112 Park Ave"
address2:"Floor 3"
address3:"Suite 3011"
city:"New York"
customer_type:2
display_name:"TomS"
email_address:"tom@xyzcorp.com"
first_name:"Tom"
last_name:"Smith"
last_updated_utc_in_secs:200200300
middle_names:"Z."
name_prefix:"Mr"
name_suffix:"Sr."
nation_code:"USA"
non_person_name:false
password:"abd"
phone1:"212-555-2323"
phone2:""
phone3:""
postal_code:"10022"
state:"NY"
time_zone_offset_from_utc:-5
message:"Success"
status:200

如您所见,鲍勃的密码是abc,汤姆的密码是abd

按照以下步骤,您可以设置自己的身份验证驱动程序,以处理使用 API 调用获取和验证用户凭据:

1.app/Auth/ApiUserProvider.php中创建您自己的自定义用户提供程序,内容如下:

namespace App'Auth;
use Illuminate'Contracts'Auth'UserProvider;
use Illuminate'Contracts'Auth'Authenticatable as UserContract;
class ApiUserProvider implements UserProvider
{
    /**
     * Retrieve a user by the given credentials.
     *
     * @param  array  $credentials
     * @return 'Illuminate'Contracts'Auth'Authenticatable|null
     */
    public function retrieveByCredentials(array $credentials)
    {
        $user = $this->getUserByUsername($credentials['username']);
        return $this->getApiUser($user);
    }
    /**
     * Retrieve a user by their unique identifier.
     *
     * @param  mixed  $identifier
     * @return 'Illuminate'Contracts'Auth'Authenticatable|null
     */
    public function retrieveById($identifier)
    {
        $user = $this->getUserById($identifier);
        return $this->getApiUser($user);
    }
    /**
     * Validate a user against the given credentials.
     *
     * @param  'Illuminate'Contracts'Auth'Authenticatable  $user
     * @param  array  $credentials
     * @return bool
     */
    public function validateCredentials(UserContract $user, array $credentials)
    {
        return $user->getAuthPassword() == $credentials['password'];
    }
    /**
     * Get the api user.
     *
     * @param  mixed  $user
     * @return 'App'Auth'ApiUser|null
     */
    protected function getApiUser($user)
    {
        if ($user !== null) {
            return new ApiUser($user);
        }
    }
    /**
     * Get the use details from your API.
     *
     * @param  string  $username
     * @return array|null
     */
    protected function getUsers()
    {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_URL, env('API_HOST') . 'vse/accounts');
        $response = curl_exec($ch);
        $response = json_decode($response, true);
        curl_close($ch);
        return $response['data'];
    }
    protected function getUserById($id)
    {
        $user = [];
        foreach ($this->getUsers() as $item) {
            if ($item['account_id'] == $id) {
                $user = $item;
                break;
            }
        }
        return $user ?: null;
    }
    protected function getUserByUsername($username)
    {
        $user = [];
        foreach ($this->getUsers() as $item) {
            if ($item['email_address'] == $username) {
                $user = $item;
                break;
            }
        }
        return $user ?: null;
    }
    // The methods below need to be defined because of the Authenticatable contract
    // but need no implementation for 'Auth::attempt' to work and can be implemented
    // if you need their functionality
    public function retrieveByToken($identifier, $token) { }
    public function updateRememberToken(UserContract $user, $token) { }
}

2. 还要创建一个用户类,该类扩展了身份验证系统在app/Auth/ApiUser.php中提供的默认GenericUser,内容如下:

namespace App'Auth;
use Illuminate'Auth'GenericUser;
use Illuminate'Contracts'Auth'Authenticatable as UserContract;
class ApiUser extends GenericUser implements UserContract
{
    public function getAuthIdentifier()
    {
        return $this->attributes['account_id'];
    }
}

3.app/Providers/AuthServiceProvider.php文件的引导方法中,注册新的驱动程序用户提供程序:

public function boot(GateContract $gate)
{
    $this->registerPolicies($gate);
    // The code below sets up the 'api' driver
    $this->app['auth']->extend('api', function() {
        return new 'App'Auth'ApiUserProvider();
    });
}

4.最后,在config/auth.php文件中将驱动程序设置为自定义驱动程序:

    'driver' => 'api',

现在,您可以在控制器操作中执行以下操作:

public function postSignIn()
{
    $username = strtolower(Input::get('username'));
    $password = Input::get('password');
    if (Auth::attempt(['username' => $username, 'password' => $password])) {
        return Redirect::to('/dashboard')->with('success', 'Hi '. $username .'! You have been successfully logged in.');
    } else {
        return Redirect::to('/')->with('error', 'Username/Password Wrong')->withInput(Request::except('password'))->with('username', $username);
    }
}

成功登录后调用Auth::user()以获取用户详细信息,将返回一个包含从远程 API 获取的属性的ApiUser实例,如下所示:

ApiUser {#143 ▼
  #attributes: array:10 [▼
    "DBA" => ""
    "account_id" => 111
    "account_type" => "admin"
    "display_name" => "BobJ"
    "email_address" => "bob@xyzcorp.com"
    "first_name" => "Bob"
    "last_name" => "Jones"
    "password" => "abc"
    "message" => "Success"
    "status" => 200
  ]
}

由于您尚未发布在用户电子邮件的 API 中没有匹配项时收到的响应示例,因此我在 getUserDetails 方法中设置了条件,以确定没有匹配项,如果响应不包含 data 属性或data属性为空,则返回null。您可以根据需要更改该条件。


上面的代码是使用模拟响应进行测试的,该响应返回您在问题中发布的数据结构,并且效果很好。

最后一点:您应该强烈考虑修改 API 以尽早处理用户身份验证(也许使用 Oauth 实现(,因为发送密码(甚至更令人担忧的是纯文本(不是您想要推迟的事情。