|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the FOSHttpCacheBundle package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace FOS\HttpCacheBundle\UserContext; |
|
13
|
|
|
|
|
14
|
|
|
use FOS\HttpCache\UserContext\ContextProvider; |
|
15
|
|
|
use FOS\HttpCache\UserContext\UserContext; |
|
16
|
|
|
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException; |
|
17
|
|
|
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; |
|
18
|
|
|
use Symfony\Component\Security\Core\Role\Role; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* The RoleProvider adds roles to the UserContext for the hash generation. |
|
22
|
|
|
*/ |
|
23
|
|
|
class RoleProvider implements ContextProvider |
|
24
|
|
|
{ |
|
25
|
|
|
/** |
|
26
|
|
|
* @var TokenStorageInterface|null |
|
27
|
|
|
*/ |
|
28
|
|
|
private $tokenStorage; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Create the role provider with a security context. |
|
32
|
|
|
* |
|
33
|
|
|
* The token storage is optional to not fail on routes that have no |
|
34
|
|
|
* firewall. It is however not valid to call updateUserContext when not in |
|
35
|
|
|
* a firewall context. |
|
36
|
|
|
* |
|
37
|
|
|
* @param TokenStorageInterface $tokenStorage |
|
|
|
|
|
|
38
|
|
|
*/ |
|
39
|
23 |
|
public function __construct(TokenStorageInterface $tokenStorage = null) |
|
40
|
|
|
{ |
|
41
|
23 |
|
$this->tokenStorage = $tokenStorage; |
|
42
|
23 |
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* {@inheritdoc} |
|
46
|
|
|
* |
|
47
|
|
|
* @throws InvalidConfigurationException when called without a security context being set |
|
48
|
|
|
*/ |
|
49
|
5 |
|
public function updateUserContext(UserContext $context) |
|
50
|
|
|
{ |
|
51
|
5 |
|
if (null === $this->tokenStorage) { |
|
52
|
1 |
|
throw new InvalidConfigurationException('The context hash URL must be under a firewall.'); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
4 |
|
if (null === $token = $this->tokenStorage->getToken()) { |
|
56
|
1 |
|
return; |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
3 |
|
if (method_exists($token, 'getRoleNames')) { |
|
60
|
3 |
|
$roles = $token->getRoleNames(); |
|
61
|
|
|
} else { |
|
62
|
|
|
$roles = array_map(function (Role $role) { |
|
63
|
|
|
return $role->getRole(); |
|
64
|
|
|
}, $token->getRoles()); |
|
|
|
|
|
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
// Order is not important for roles and should not change hash. |
|
68
|
3 |
|
sort($roles); |
|
69
|
|
|
|
|
70
|
3 |
|
$context->addParameter('roles', $roles); |
|
71
|
3 |
|
} |
|
72
|
|
|
} |
|
73
|
|
|
|
This check looks for
@paramannotations where the type inferred by our type inference engine differs from the declared type.It makes a suggestion as to what type it considers more descriptive.
Most often this is a case of a parameter that can be null in addition to its declared types.