Tymon JWT使用数据库提供程序代替eloquent

时间:2017-02-07 10:03:14

标签: php laravel jwt lumen json-web-token

我在我的流明应用程序中使用https://github.com/tymondesigns/jwt-auth

这是我的composer.json

"laravel/lumen-framework": "5.3.*",
"tymon/jwt-auth": "^1.0@dev",

我已经阅读了有关如何安装的教程。其中一些是:

我能够在本地工作并成功返回令牌。但问题是,我不想在从database.sqlite获取数据的提供程序上使用eloquent,而是希望使用数据库作为我的驱动程序。

有了这个,我已经设置了

'providers' => [
    'users' => [
        'driver' => 'database',
        'table'  => 'user_table',
        // 'driver' => 'eloquent',
        // 'model' => App\User::class,
    ],
],

config/auth.php

由于它现在通过数据库连接,现在使用DatabaseUserProvider.php

我需要修改一些代码。

/**
 * 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)
{
    $plain = $credentials['password'];

    return $this->hasher->check($plain, app('hash')->make($user->getAuthPassword()));
}

请注意,我在验证密码时添加了app('hash')->make()

然后将检索到的用户注入GenericUser对象。

/**
 * Get the generic user.
 *
 * @param  mixed  $user
 * @return \Illuminate\Auth\GenericUser|null
 */
protected function getGenericUser($user)
{
    if (! is_null($user)) {
        return new GenericUser((array) $user);
    }
}

由于它位于GenericUser对象上,因此会出现错误:

Argument 1 passed to Tymon\JWTAuth\JWT::fromUser() must be an instance of Tymon\JWTAuth\Contracts\JWTSubject, instance of Illuminate\Auth\GenericUser given

为了解决这个问题,我必须" hack"通过删除JWTSubject

下每个方法的tymon\jwt-auth\src\JWT.php注入

有没有更好的方法来清理它?

1 个答案:

答案 0 :(得分:0)

您可以通过让身份验证用户实现JWTSubject来轻松修复它,这是最合适的事情。

class GenericUser implements JWTSubject {
    [...]
}

但是,既然你正在处理一个Laravel本机实现,我建议你扩展它并实现JWTSubject,而不是在jwt-auth的代码中去任何地方并删除类型提示。