Authorization
Warning: You are browsing the documentation for Symfony 2.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
When any of the authentication providers (see Authentication) has verified the still-unauthenticated token, an authenticated token will be returned. The authentication listener should set this token directly in the TokenStorageInterface using its setToken() method.
From then on, the user is authenticated, i.e. identified. Now, other parts of the application can use the token to decide whether or not the user may request a certain URI, or modify a certain object. This decision will be made by an instance of AccessDecisionManagerInterface.
An authorization decision will always be based on a few things:
- The current token
-
For instance, the token's getRoles()
method may be used to retrieve the roles of the current user (e.g.
ROLE_SUPER_ADMIN
), or a decision may be based on the class of the token.
- A set of attributes
-
Each attribute stands for a certain right the user should have, e.g.
ROLE_ADMIN
to make sure the user is an administrator.
- An object (optional)
- Any object for which access control needs to be checked, like an article or a comment object.
Access Decision Manager
Since deciding whether or not a user is authorized to perform a certain action can be a complicated process, the standard AccessDecisionManager itself depends on multiple voters, and makes a final verdict based on all the votes (either positive, negative or neutral) it has received. It recognizes several strategies:
affirmative
(default)- grant access as soon as there is one voter granting access;
consensus
- grant access if there are more voters granting access than there are denying;
unanimous
- only grant access if none of the voters has denied access;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
use Symfony\Component\Security\Core\Authorization\AccessDecisionManager;
// instances of Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
$voters = array(...);
// one of "affirmative", "consensus", "unanimous"
$strategy = ...;
// whether or not to grant access when all voters abstain
$allowIfAllAbstainDecisions = ...;
// whether or not to grant access when there is no majority (applies only to the "consensus" strategy)
$allowIfEqualGrantedDeniedDecisions = ...;
$accessDecisionManager = new AccessDecisionManager(
$voters,
$strategy,
$allowIfAllAbstainDecisions,
$allowIfEqualGrantedDeniedDecisions
);
See also
You can change the default strategy in the configuration.
Voters
Voters are instances of VoterInterface, which means they have to implement a few methods which allows the decision manager to use them:
supportsAttribute($attribute)
(deprecated as of 2.8)- will be used to check if the voter knows how to handle the given attribute;
supportsClass($class)
(deprecated as of 2.8)- will be used to check if the voter is able to grant or deny access for an object of the given class;
vote(TokenInterface $token, $object, array $attributes)
-
this method will do the actual voting and return a value equal to one
of the class constants of VoterInterface,
i.e.
VoterInterface::ACCESS_GRANTED
,VoterInterface::ACCESS_DENIED
orVoterInterface::ACCESS_ABSTAIN
;
Note
The supportsAttribute()
and supportsClass()
methods are deprecated
as of Symfony 2.8 and no longer required in 3.0. These methods should not
be called outside the voter class.
The Security component contains some standard voters which cover many use cases:
AuthenticatedVoter
The AuthenticatedVoter
voter supports the attributes IS_AUTHENTICATED_FULLY
, IS_AUTHENTICATED_REMEMBERED
,
and IS_AUTHENTICATED_ANONYMOUSLY
and grants access based on the current
level of authentication, i.e. is the user fully authenticated, or only based
on a "remember-me" cookie, or even authenticated anonymously?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver;
use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
use Symfony\Component\Security\Core\Authentication\Token\RememberMeToken;
$trustResolver = new AuthenticationTrustResolver(AnonymousToken::class, RememberMeToken::class);
$authenticatedVoter = new AuthenticatedVoter($trustResolver);
// instance of Symfony\Component\Security\Core\Authentication\Token\TokenInterface
$token = ...;
// any object
$object = ...;
$vote = $authenticatedVoter->vote($token, $object, array('IS_AUTHENTICATED_FULLY'));
RoleVoter
The RoleVoter
supports attributes starting with ROLE_
and grants access to the user
when the required ROLE_*
attributes can all be found in the array of
roles returned by the token's getRoles()
method:
1 2 3 4 5
use Symfony\Component\Security\Core\Authorization\Voter\RoleVoter;
$roleVoter = new RoleVoter('ROLE_');
$roleVoter->vote($token, $object, array('ROLE_ADMIN'));
RoleHierarchyVoter
The RoleHierarchyVoter
extends RoleVoter
and provides some additional functionality: it knows how to handle a
hierarchy of roles. For instance, a ROLE_SUPER_ADMIN
role may have subroles
ROLE_ADMIN
and ROLE_USER
, so that when a certain object requires the
user to have the ROLE_ADMIN
role, it grants access to users who in fact
have the ROLE_ADMIN
role, but also to users having the ROLE_SUPER_ADMIN
role:
1 2 3 4 5 6 7 8 9 10
use Symfony\Component\Security\Core\Authorization\Voter\RoleHierarchyVoter;
use Symfony\Component\Security\Core\Role\RoleHierarchy;
$hierarchy = array(
'ROLE_SUPER_ADMIN' => array('ROLE_ADMIN', 'ROLE_USER'),
);
$roleHierarchy = new RoleHierarchy($hierarchy);
$roleHierarchyVoter = new RoleHierarchyVoter($roleHierarchy);
Note
When you make your own voter, you may of course use its constructor to inject any dependencies it needs to come to a decision.
Roles
Roles are objects that give expression to a certain right the user has. The only requirement is that they implement RoleInterface, which means they should also have a getRole() method that returns a string representation of the role itself. The default Role simply returns its first constructor argument:
1 2 3 4 5 6
use Symfony\Component\Security\Core\Role\Role;
$role = new Role('ROLE_ADMIN');
// shows 'ROLE_ADMIN'
var_dump($role->getRole());
Note
Most authentication tokens extend from AbstractToken,
which means that the roles given to its constructor will be
automatically converted from strings to these simple Role
objects.
Using the Decision Manager
The Access Listener
The access decision manager can be used at any point in a request to decide whether or not the current user is entitled to access a given resource. One optional, but useful, method for restricting access based on a URL pattern is the AccessListener, which is one of the firewall listeners (see The Firewall and Authorization) that is triggered for each request matching the firewall map (see The Firewall and Authorization).
It uses an access map (which should be an instance of AccessMapInterface) which contains request matchers and a corresponding set of attributes that are required for the current user to get access to the application:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
use Symfony\Component\Security\Http\AccessMap;
use Symfony\Component\HttpFoundation\RequestMatcher;
use Symfony\Component\Security\Http\Firewall\AccessListener;
$accessMap = new AccessMap();
$requestMatcher = new RequestMatcher('^/admin');
$accessMap->add($requestMatcher, array('ROLE_ADMIN'));
$accessListener = new AccessListener(
$securityContext,
$accessDecisionManager,
$accessMap,
$authenticationManager
);
Authorization Checker
The access decision manager is also available to other parts of the application via the isGranted() method of the AuthorizationChecker. A call to this method will directly delegate the question to the access decision manager:
1 2 3 4 5 6 7 8 9 10 11 12
use Symfony\Component\Security\Core\Authorization\AuthorizationChecker;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
$authorizationChecker = new AuthorizationChecker(
$tokenStorage,
$authenticationManager,
$accessDecisionManager
);
if (!$authorizationChecker->isGranted('ROLE_ADMIN')) {
throw new AccessDeniedException();
}