在我的第一个 Symfony 4.4 项目中,我需要从数据库对用户进行身份验证。不幸的是,在用户登录之前,我需要检查远程 API 服务中的用户状态。如果用户在此服务中处于活动状态并且凭据与我的数据库中的相同,我可以在我的应用程序中对用户进行身份验证。
在我的应用程序中进行身份验证之前,检查用户是否处于活动状态的最佳位置在哪里?我需要创建自定义守卫吗?自定义用户提供商?
我使用Lexik JWT身份验证,有我的/config/packages/security.yaml
security:
providers:
app_user_provider:
entity:
class: App\Entity\User
property: email
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
authorization:
pattern: ^/api/v1/auth/
stateless: true
anonymous: true
json_login:
check_path: /api/v1/auth/sign-in/
success_handler: lexik_jwt_authentication.handler.authentication_success
failure_handler: lexik_jwt_authentication.handler.authentication_failure
username_path: email
api:
pattern: ^/api/v1/(user|req)/
stateless: true
anonymous: false
provider: app_user_provider
guard:
authenticators:
- lexik_jwt_authentication.jwt_token_authenticator
我在 4.1 之后就没有使用过 Symfony,所以最近情况可能发生了变化。您只需要检查一下即可。
在我的应用程序中进行身份验证之前,检查用户是否处于活动状态的最佳位置在哪里?我需要创建自定义守卫吗?自定义用户提供商?
用户提供者就是答案。如果您查看 UserProviderInterface,它会显示
"Internally, a user provider can load users from any source (databases, configuration, web service)."
...在用户登录之前,我需要检查远程 API 服务中的用户状态。如果用户在此服务中处于活动状态并且凭据与我的数据库中的相同,我可以在我的应用程序中对用户进行身份验证。
所以你能做的就是满足你的要求:
firewall
并使其使用 simple_preauth
。simple_preauth. authenticator
一起使用的验证器类。就身份验证而言,这会将所有内容连接起来。资源: