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
|
16 |
|
public function __construct(Reader $annotationReader, $userClass) |
33
|
|
|
{ |
34
|
16 |
|
$this->reader = $annotationReader; |
35
|
16 |
|
$this->userClass = (string) $userClass; |
36
|
16 |
|
} |
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
|
10 |
|
public function getMetadataForUser() |
45
|
|
|
{ |
46
|
10 |
|
$reflection = new ReflectionClass($this->userClass); |
47
|
10 |
|
$properties = $reflection->getProperties(); |
48
|
|
|
$metadata = [ |
49
|
10 |
|
ClassMetadata::LOGIN_PROPERTY => null, |
50
|
|
|
ClassMetadata::PASSWORD_PROPERTY => null, |
51
|
|
|
ClassMetadata::API_KEY_PROPERTY => null, |
52
|
|
|
ClassMetadata::LAST_ACTION_PROPERTY => null, |
53
|
|
|
]; |
54
|
|
|
|
55
|
10 |
|
foreach ($properties as $reflectionProperty) { |
56
|
10 |
|
foreach (['login', 'password', 'apiKey', 'lastAction'] as $annotation) { |
57
|
10 |
|
$class = sprintf('Ma27\\ApiKeyAuthenticationBundle\\Annotation\\%s', ucfirst($annotation)); |
58
|
10 |
|
$annotationObject = $this->reader->getPropertyAnnotation($reflectionProperty, $class); |
|
|
|
|
59
|
|
|
|
60
|
10 |
|
if (!$annotationObject) { |
61
|
10 |
|
continue; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
switch ($annotation) { |
65
|
10 |
|
case 'login': |
66
|
9 |
|
$this->assertUnique($metadata[ClassMetadata::LOGIN_PROPERTY]); |
67
|
9 |
|
$metadata[ClassMetadata::LOGIN_PROPERTY] = $reflectionProperty; |
68
|
9 |
|
break; |
69
|
10 |
|
case 'password': |
70
|
9 |
|
$this->assertUnique($metadata[ClassMetadata::PASSWORD_PROPERTY]); |
71
|
9 |
|
$metadata[ClassMetadata::PASSWORD_PROPERTY] = $reflectionProperty; |
72
|
9 |
|
break; |
73
|
10 |
|
case 'apiKey': |
74
|
10 |
|
$this->assertUnique($metadata[ClassMetadata::API_KEY_PROPERTY]); |
75
|
10 |
|
$metadata[ClassMetadata::API_KEY_PROPERTY] = $reflectionProperty; |
76
|
10 |
|
break; |
77
|
9 |
|
case 'lastAction': |
78
|
9 |
|
$this->assertUnique($metadata[ClassMetadata::LAST_ACTION_PROPERTY]); |
79
|
9 |
|
$metadata[ClassMetadata::LAST_ACTION_PROPERTY] = $reflectionProperty; |
80
|
9 |
|
break; |
81
|
|
|
} |
82
|
|
|
|
83
|
10 |
|
if ($this->isMetadataFullyLoaded($metadata)) { |
|
|
|
|
84
|
10 |
|
break 2; |
85
|
|
|
} |
86
|
|
|
} |
87
|
|
|
} |
88
|
|
|
|
89
|
10 |
|
if (!$metadata[ClassMetadata::LOGIN_PROPERTY] || !$metadata[ClassMetadata::PASSWORD_PROPERTY] || !$metadata[ClassMetadata::API_KEY_PROPERTY]) { |
90
|
1 |
|
throw new \LogicException('A user class must have a "Login", "Password", "ApiKey" annotation!'); |
91
|
|
|
} |
92
|
|
|
|
93
|
9 |
|
return $metadata; |
|
|
|
|
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
/** |
97
|
|
|
* Checks whether a property is already set. |
98
|
|
|
* |
99
|
|
|
* @param \ReflectionProperty $property |
100
|
|
|
* |
101
|
|
|
* @throws \InvalidArgumentException |
102
|
|
|
*/ |
103
|
10 |
|
private function assertUnique(\ReflectionProperty $property = null) |
104
|
|
|
{ |
105
|
10 |
|
if (null !== $property) { |
106
|
|
|
throw $this->createDuplicateAnnotationException(); |
107
|
|
|
} |
108
|
10 |
|
} |
109
|
|
|
|
110
|
|
|
/** |
111
|
|
|
* Creates the exception when. |
112
|
|
|
* |
113
|
|
|
* @return \InvalidArgumentException |
114
|
|
|
*/ |
115
|
|
|
private function createDuplicateAnnotationException() |
116
|
|
|
{ |
117
|
|
|
return new \InvalidArgumentException('None of the Ma27\\ApiKeyAuthenticationBundle annotations can be declared twice!'); |
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
/** |
121
|
|
|
* Method which checks if all metadata annotations were loaded already. |
122
|
|
|
* |
123
|
|
|
* @param object[] $metadata |
124
|
|
|
* |
125
|
|
|
* @return bool |
126
|
|
|
*/ |
127
|
10 |
|
private function isMetadataFullyLoaded(array $metadata) |
128
|
|
|
{ |
129
|
10 |
|
return $metadata[ClassMetadata::LOGIN_PROPERTY] |
130
|
10 |
|
&& $metadata[ClassMetadata::PASSWORD_PROPERTY] |
131
|
10 |
|
&& $metadata[ClassMetadata::API_KEY_PROPERTY] |
132
|
10 |
|
&& $metadata[ClassMetadata::LAST_ACTION_PROPERTY]; |
133
|
|
|
} |
134
|
|
|
} |
135
|
|
|
|
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.