Completed
Pull Request — feature/fine-grained-authoriza... (#239)
by Michiel
10:33 queued 05:34
created

buildFrom()   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 24

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 24
rs 9.536
c 0
b 0
f 0
cc 4
nc 3
nop 1
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