|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* Copyright 2020 SURFnet B.V. |
|
5
|
|
|
* |
|
6
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
7
|
|
|
* you may not use this file except in compliance with the License. |
|
8
|
|
|
* You may obtain a copy of the License at |
|
9
|
|
|
* |
|
10
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
11
|
|
|
* |
|
12
|
|
|
* Unless required by applicable law or agreed to in writing, software |
|
13
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
14
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
15
|
|
|
* See the License for the specific language governing permissions and |
|
16
|
|
|
* limitations under the License. |
|
17
|
|
|
*/ |
|
18
|
|
|
|
|
19
|
|
|
namespace Surfnet\StepupSelfService\SelfServiceBundle\Service\RemoteVetting\Value; |
|
20
|
|
|
|
|
21
|
|
|
use JsonSerializable; |
|
22
|
|
|
use Surfnet\StepupSelfService\SelfServiceBundle\Assert; |
|
23
|
|
|
use Surfnet\StepupSelfService\SelfServiceBundle\Exception\AssertionFailedException; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* A name value pair, representing a (simplified) SAML assertion attribute |
|
27
|
|
|
*/ |
|
28
|
|
|
class Attribute implements JsonSerializable |
|
29
|
|
|
{ |
|
30
|
|
|
private $name; |
|
31
|
|
|
private $value; |
|
32
|
|
|
|
|
33
|
|
|
/** |
|
34
|
|
|
* @param string $name |
|
35
|
|
|
* @param string[] $value |
|
36
|
|
|
*/ |
|
37
|
|
|
public function __construct($name, $value) |
|
38
|
|
|
{ |
|
39
|
|
|
Assert::string($name, 'The $name of an Attribute must be a scalar value'); |
|
40
|
|
|
Assert::isArray($value, 'The $value of an Attribute must be an array with strings'); |
|
41
|
|
|
Assert::allString($value, 'The $value of an Attribute must be an array with strings'); |
|
42
|
|
|
|
|
43
|
|
|
$this->name = $name; |
|
44
|
|
|
$this->value = array_values($value); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* @return string |
|
49
|
|
|
*/ |
|
50
|
|
|
public function getName() |
|
51
|
|
|
{ |
|
52
|
|
|
return $this->name; |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* @return string[] |
|
57
|
|
|
*/ |
|
58
|
|
|
public function getValue() |
|
59
|
|
|
{ |
|
60
|
|
|
return $this->value; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
public function jsonSerialize() |
|
64
|
|
|
{ |
|
65
|
|
|
return ['name' => $this->name, 'value' => $this->value]; |
|
66
|
|
|
} |
|
67
|
|
|
} |
|
68
|
|
|
|