X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=app%2Fconfig%2Fsecurity.yml;h=79a07c48ed5a77e5633c30fe5318d8364691bedf;hb=772d8c4b93adc36baefda93ec37007e4a85321de;hp=e161c3b53b911f70f77443f51c30609fa52263ff;hpb=d91691573f108422cc2080462af35ebd62dc93fb;p=github%2Fwallabag%2Fwallabag.git diff --git a/app/config/security.yml b/app/config/security.yml index e161c3b5..79a07c48 100644 --- a/app/config/security.yml +++ b/app/config/security.yml @@ -1,9 +1,6 @@ security: encoders: - Wallabag\CoreBundle\Entity\User: - algorithm: sha1 - encode_as_base64: false - iterations: 1 + FOS\UserBundle\Model\UserInterface: sha512 role_hierarchy: ROLE_ADMIN: ROLE_USER @@ -12,42 +9,37 @@ security: providers: administrators: entity: { class: WallabagCoreBundle:User, property: username } + fos_userbundle: + id: fos_user.user_provider.username # the main part of the security, where you can set up firewalls # for specific sections of your app firewalls: - #wsse_secured: - # pattern: /api/.* - # wsse: true + oauth_token: + pattern: ^/oauth/v2/token + security: false + api: + pattern: /api/.* + fos_oauth: true + stateless: true + anonymous: true + login_firewall: pattern: ^/login$ anonymous: ~ secured_area: - pattern: ^/ - anonymous: ~ + pattern: ^/ form_login: - login_path: /login - - use_forward: false - - check_path: /login_check - - post_only: true - - always_use_default_target_path: true - default_target_path: / - target_path_parameter: redirect_url - use_referer: true - - failure_path: null - failure_forward: false - - username_parameter: _username - password_parameter: _password + provider: fos_userbundle + csrf_provider: security.csrf.token_manager - csrf_parameter: _csrf_token - intention: authenticate + anonymous: true + remember_me: + key: "%secret%" + lifetime: 31536000 + path: / + domain: ~ logout: path: /logout @@ -56,4 +48,7 @@ security: access_control: - { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/forgot-password, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: /(unread|starred|archive).xml$, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/, roles: ROLE_USER }