1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Ma27\ApiKeyAuthenticationBundle\Service\Mapping\Driver; |
4
|
|
|
|
5
|
|
|
use Doctrine\Common\Annotations\Reader; |
6
|
|
|
use Ma27\ApiKeyAuthenticationBundle\Service\Mapping\ClassMetadata; |
7
|
|
|
use ReflectionClass; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* Annotation driver which parses the annotations of the user model instance. |
11
|
|
|
* |
12
|
|
|
* @internal This code is part of the internal API to gather the appropriate model information and shouldn't be used for else use-cases |
13
|
|
|
*/ |
14
|
|
|
final class AnnotationDriver implements ModelConfigurationDriverInterface |
15
|
|
|
{ |
16
|
|
|
/** |
17
|
|
|
* @var Reader |
18
|
|
|
*/ |
19
|
|
|
private $reader; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @var string |
23
|
|
|
*/ |
24
|
|
|
private $userClass; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Constructor. |
28
|
|
|
* |
29
|
|
|
* @param Reader $annotationReader |
30
|
|
|
* @param string $userClass |
31
|
|
|
*/ |
32
|
18 |
|
public function __construct(Reader $annotationReader, $userClass) |
33
|
|
|
{ |
34
|
18 |
|
$this->reader = $annotationReader; |
35
|
18 |
|
$this->userClass = (string) $userClass; |
36
|
18 |
|
} |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* {@inheritdoc} |
40
|
|
|
* |
41
|
|
|
* @throws \LogicException If one of the annotations is missing |
42
|
|
|
* @throws \LogicException If one property has multiple "auth" annotations |
43
|
|
|
*/ |
44
|
11 |
|
public function getMetadataForUser() |
45
|
|
|
{ |
46
|
11 |
|
$reflection = new ReflectionClass($this->userClass); |
47
|
11 |
|
$properties = $reflection->getProperties(); |
48
|
11 |
|
$loginProperty = $passwordProperty = $apiKeyProperty = $lastActionProperty = null; |
49
|
|
|
|
50
|
11 |
|
foreach ($properties as $reflectionProperty) { |
51
|
11 |
|
foreach (array('login', 'password', 'apiKey', 'lastAction') as $annotation) { |
52
|
11 |
|
$class = sprintf('Ma27\\ApiKeyAuthenticationBundle\\Annotation\\%s', ucfirst($annotation)); |
53
|
11 |
|
$annotationObject = $this->reader->getPropertyAnnotation($reflectionProperty, $class); |
|
|
|
|
54
|
|
|
|
55
|
11 |
|
if ($annotationObject) { |
56
|
|
|
switch ($annotation) { |
57
|
11 |
|
case 'login': |
58
|
10 |
|
$this->assertUnique($loginProperty); |
59
|
10 |
|
$loginProperty = $reflectionProperty; |
60
|
10 |
|
break; |
61
|
11 |
|
case 'password': |
62
|
10 |
|
$this->assertUnique($passwordProperty); |
63
|
10 |
|
$passwordProperty = $reflectionProperty; |
64
|
10 |
|
break; |
65
|
11 |
|
case 'apiKey': |
66
|
11 |
|
$this->assertUnique($apiKeyProperty); |
67
|
11 |
|
$apiKeyProperty = $reflectionProperty; |
68
|
11 |
|
break; |
69
|
10 |
|
case 'lastAction': |
70
|
10 |
|
$this->assertUnique($lastActionProperty); |
71
|
10 |
|
$lastActionProperty = $reflectionProperty; |
72
|
|
|
} |
73
|
|
|
|
74
|
11 |
|
if ($loginProperty && $passwordProperty && $apiKeyProperty && $lastActionProperty) { |
75
|
10 |
|
break; |
76
|
|
|
} |
77
|
|
|
|
78
|
11 |
|
continue; |
79
|
|
|
} |
80
|
|
|
} |
81
|
|
|
} |
82
|
|
|
|
83
|
11 |
|
if (!$loginProperty || !$passwordProperty || !$apiKeyProperty) { |
84
|
1 |
|
throw new \LogicException(sprintf( |
85
|
1 |
|
'A user class must have a "%s", "%s", "%s" annotation!', |
86
|
1 |
|
'Login', |
87
|
1 |
|
'Password', |
88
|
1 |
|
'ApiKey' |
89
|
|
|
)); |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
return array( |
|
|
|
|
93
|
10 |
|
ClassMetadata::LOGIN_PROPERTY => $loginProperty, |
94
|
10 |
|
ClassMetadata::PASSWORD_PROPERTY => $passwordProperty, |
95
|
10 |
|
ClassMetadata::API_KEY_PROPERTY => $apiKeyProperty, |
96
|
10 |
|
ClassMetadata::LAST_ACTION_PROPERTY => $lastActionProperty, |
97
|
|
|
); |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
/** |
101
|
|
|
* Checks whether a property is already set. |
102
|
|
|
* |
103
|
|
|
* @param \ReflectionProperty $property |
104
|
|
|
*/ |
105
|
11 |
|
private function assertUnique(\ReflectionProperty $property = null) |
106
|
|
|
{ |
107
|
11 |
|
if (!empty($property)) { |
108
|
|
|
throw $this->createDuplicateAnnotationException(); |
109
|
|
|
} |
110
|
11 |
|
} |
111
|
|
|
|
112
|
|
|
/** |
113
|
|
|
* Creates the exception when. |
114
|
|
|
* |
115
|
|
|
* @return \InvalidArgumentException |
116
|
|
|
*/ |
117
|
|
|
private function createDuplicateAnnotationException() |
118
|
|
|
{ |
119
|
|
|
return new \InvalidArgumentException('None of the Ma27\\ApiKeyAuthenticationBundle annotations can be declared twice!'); |
120
|
|
|
} |
121
|
|
|
} |
122
|
|
|
|
This check looks for function or method calls that always return null and whose return value is assigned to a variable.
The method
getObject()
can return nothing but null, so it makes no sense to assign that value to a variable.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.