1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2018 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\StepupMiddleware\ApiBundle\Configuration\Service; |
20
|
|
|
|
21
|
|
|
use Surfnet\Stepup\Identity\Value\Institution; |
22
|
|
|
use Surfnet\StepupMiddleware\ApiBundle\Identity\Service\IdentityService; |
23
|
|
|
use Surfnet\StepupMiddleware\ApiBundle\Identity\Value\InstitutionAuthorizationContext; |
24
|
|
|
use Symfony\Component\HttpFoundation\Request; |
25
|
|
|
|
26
|
|
|
class InstitutionAuthorizationContextFactory implements InstitutionAuthorizationContextFactoryInterface |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* @var IdentityService |
30
|
|
|
*/ |
31
|
|
|
private $identityService; |
32
|
|
|
|
33
|
|
|
public function __construct( |
34
|
|
|
IdentityService $identityService |
35
|
|
|
) { |
36
|
|
|
$this->identityService = $identityService; |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
public function buildFrom(Request $request) |
40
|
|
|
{ |
41
|
|
|
if ($request->get('actorId') && $request->get('actorInstitution')) { |
42
|
|
|
|
43
|
|
|
$actorId = $request->get('actorId'); |
44
|
|
|
// Retrieve the identity from the service |
45
|
|
|
$actorIdentity = $this->identityService->find($actorId); |
46
|
|
|
|
47
|
|
|
$institution = $request->get('actorInstitution'); |
48
|
|
|
$actorInstitution = new Institution($institution); |
49
|
|
|
|
50
|
|
|
if (!$actorInstitution->equals($actorIdentity->institution)){ |
51
|
|
|
// Todo: They should match?! Who the identity belongs to and what was stated in the GET request |
52
|
|
|
// Todo: Should this result in a RuntimeException or other 500 error? |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
return new InstitutionAuthorizationContext( |
56
|
|
|
$actorIdentity, |
57
|
|
|
$actorInstitution |
58
|
|
|
); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
return null; |
62
|
|
|
} |
63
|
|
|
} |
64
|
|
|
|