X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=app%2Fconfig%2Fsecurity.yml;h=96489e2683f1fcc6aad294b1578108b970c93a9c;hb=3bd65991adc253715c6b74ab0ee19ff2cf3e6c69;hp=90903f310b311b428d245784811a956abdb2a04e;hpb=6894d48e03c397096bb64420373afa60c397fe97;p=github%2Fwallabag%2Fwallabag.git diff --git a/app/config/security.yml b/app/config/security.yml index 90903f31..96489e26 100644 --- a/app/config/security.yml +++ b/app/config/security.yml @@ -1,63 +1,71 @@ 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 + ROLE_ADMIN: ROLE_USER ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ] providers: administrators: - entity: { class: WallabagCoreBundle:User, property: username } + entity: + class: WallabagUserBundle:User + property: username + fos_userbundle: + id: fos_user.user_provider.username_email # 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 - stateless: true - anonymous: true + # disables authentication for assets and the profiler, adapt it according to your needs + dev: + pattern: ^/(_(profiler|wdt)|css|images|js)/ + security: false + + oauth_token: + pattern: ^/oauth/v2/token + security: false + + api: + pattern: /api/.* + fos_oauth: true + stateless: true + anonymous: true + provider: fos_userbundle + login_firewall: - pattern: ^/login$ + logout_on_user_change: true + pattern: ^/login$ anonymous: ~ secured_area: - pattern: ^/ - anonymous: ~ + logout_on_user_change: true + 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_token_generator: security.csrf.token_manager - csrf_parameter: _csrf_token - intention: authenticate + anonymous: true + remember_me: + secret: "%secret%" + lifetime: 31536000 + path: / + domain: ~ logout: path: /logout target: / access_control: - - { path: ^/api/salt, roles: IS_AUTHENTICATED_ANONYMOUSLY } - - { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/api/(doc|version|info|user), roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } - - { path: ^/forgot-password, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: /(unread|starred|archive|all).xml$, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/locale, role: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: /tags/(.*).xml$, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/share, roles: IS_AUTHENTICATED_ANONYMOUSLY } + - { path: ^/settings, roles: ROLE_SUPER_ADMIN } + - { path: ^/annotations, roles: ROLE_USER } + - { path: ^/users, roles: ROLE_SUPER_ADMIN } - { path: ^/, roles: ROLE_USER }