1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2016 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\StepupRa\RaBundle\Service; |
20
|
|
|
|
21
|
|
|
use Surfnet\StepupMiddlewareClientBundle\Configuration\Dto\InstitutionConfigurationOptions; |
22
|
|
|
use Surfnet\StepupMiddlewareClientBundle\Configuration\Service\InstitutionConfigurationOptionsService as ApiInstitutionConfigurationOptionsService; |
23
|
|
|
|
24
|
|
|
final class InstitutionConfigurationOptionsService implements InstitutionConfigurationOptionsServiceInterface |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* @var ApiInstitutionConfigurationOptionsService |
28
|
|
|
*/ |
29
|
|
|
private $apiInstitutionConfigurationOptionsService; |
30
|
|
|
|
31
|
|
|
public function __construct(ApiInstitutionConfigurationOptionsService $apiService) |
32
|
|
|
{ |
33
|
|
|
$this->apiInstitutionConfigurationOptionsService = $apiService; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @param $institution |
38
|
|
|
* @return null|InstitutionConfigurationOptions |
39
|
|
|
*/ |
40
|
|
|
public function getInstitutionConfigurationOptionsFor($institution) |
41
|
|
|
{ |
42
|
|
|
$configuration = $this->apiInstitutionConfigurationOptionsService->getInstitutionConfigurationOptionsFor($institution); |
43
|
|
|
|
44
|
|
|
// If the FGA options are null (which they may be) then set them with the default value. This is the own institution. |
45
|
|
|
if (is_null($configuration->useRa)) { |
46
|
|
|
$configuration->useRa = [$institution]; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
if (is_null($configuration->useRaa)) { |
50
|
|
|
$configuration->useRaa = [$institution]; |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
if (is_null($configuration->selectRaa)) { |
54
|
|
|
$configuration->selectRaa = [$institution]; |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
return $configuration; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* Return the institutions that are configured in the useRa and useRaa insititution |
62
|
|
|
* configuration options. |
63
|
|
|
* |
64
|
|
|
* If one of the two configuration options is configured with null (the default), |
65
|
|
|
* than the institution the query was performed for is set as the default. |
66
|
|
|
* |
67
|
|
|
* @param $institution |
68
|
|
|
* @return array |
69
|
|
|
*/ |
70
|
|
|
public function getAvailableInstitutionsFor($institution) |
71
|
|
|
{ |
72
|
|
|
$config = $this->getInstitutionConfigurationOptionsFor($institution); |
73
|
|
|
$useRaInstitutions = [$institution]; |
74
|
|
|
$useRaaInstitutions = [$institution]; |
75
|
|
|
|
76
|
|
|
if (is_array($config->useRa)) { |
77
|
|
|
$useRaInstitutions = $config->useRa; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
if (is_array($config->useRaa)) { |
81
|
|
|
$useRaaInstitutions = $config->useRaa; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
return array_unique(array_merge($useRaInstitutions, $useRaaInstitutions)); |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Return the institutions that can handle ra(a) actions on behalf of institution |
89
|
|
|
* configuration options. |
90
|
|
|
* |
91
|
|
|
* If one of the two configuration options is configured with null (the default), |
92
|
|
|
* than the institution the query was performed for is set as the default. |
93
|
|
|
* |
94
|
|
|
* @param $institution |
95
|
|
|
* @return array |
96
|
|
|
*/ |
97
|
|
|
public function getAvailableSeleactRaaInstitutionsFor($institution) |
98
|
|
|
{ |
99
|
|
|
$config = $this->getInstitutionConfigurationOptionsFor($institution); |
100
|
|
|
$selectRaaInstitutions = []; |
101
|
|
|
|
102
|
|
|
if (is_array($config->selectRaa)) { |
103
|
|
|
$selectRaaInstitutions = $config->selectRaa; |
104
|
|
|
} |
105
|
|
|
|
106
|
|
|
return $selectRaaInstitutions; |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
|