Symfony 6自定义身份验证器已忽略

zysjyyx4  于 2023-10-23  发布在  其他
关注(0)|答案(2)|浏览(134)

我需要在Symfony 6中配置一个自定义验证器,但它被忽略了。我的API/登录路由将使用我的控制器,但它永远不会通过我的自定义验证器。如果我用“php bin/console config:dump-reference security”打印出我的应用程序看到的内容,我的自定义验证器将不存在。
这是我的服务yaml

security:
    # https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
    password_hashers:
        Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
    # https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
    providers:
        app_user_provider:
            entity:
                class: App\Entity\User
                property: Username
    firewalls:
        dev:
            pattern: ^/(_(profiler|wdt)|css|images|js)/
            security: false
        main:
            custom_authenticators:
                - App\Security\ApiAuthenticator
            lazy: true
            json_login:
                check_path: api_login
                username_path: security.credentials.username
                password_path: security.credentials.password
            # activate different ways to authenticate
            # https://symfony.com/doc/current/security.html#the-firewall

            # https://symfony.com/doc/current/security/impersonating_user.html
            # switch_user: true
    # Easy way to control access for large sections of your site
    # Note: Only the *first* access control that matches will be used
    access_control:
        - { path: '^/api/login', role: PUBLIC_ACCESS }
        # - { path: ^/admin, roles: ROLE_ADMIN }
        # - { path: ^/profile, roles: ROLE_USER }

when@test:
    security:
        password_hashers:
            # By default, password hashers are resource intensive and take time. This is
            # important to generate secure password hashes. In tests however, secure hashes
            # are not important, waste resources and increase test times. The following
            # reduces the work factor to the lowest possible values.
            Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
                algorithm: auto
                cost: 4 # Lowest possible value for bcrypt
                time_cost: 3 # Lowest possible value for argon
                memory_cost: 10 # Lowest possible value for argon

我希望我的应用程序使用我的/API/登录路由,并使用我的自定义API对用户进行身份验证。

z4iuyo4d

z4iuyo4d1#

好吧,我不确定,但似乎json_login正在重写您的custom_authenticators

5lhxktic

5lhxktic2#

你在一个防火墙中定义了多个防火墙。所以你必须通过定义entry_point来告诉symfony它应该先检查哪一个。

firewalls:
    main:
        # allow authentication using a form or a custom authenticator
        form_login: ~
        custom_authenticators:
            - App\Security\SocialConnectAuthenticator

        # configure the form authentication as the entry point for unauthenticated users
        entry_point: form_login

See documentation

相关问题