Completed
Push — develop ( 784583...9a84aa )
by Michiel
02:05 queued 10s
created

InstitutionContext   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 32
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getTargetInstitution() 0 4 1
A getActorInstitution() 0 4 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\StepupRa\RaBundle\Security\Authorization\Context;
20
21
/**
22
 * Authorization context for FGA institution related authorization checks
23
 * This context is set with the institution of the target (the identity
24
 * that is operated on) and the actor (the logged in user with role:
25
 * (S)RA(A)).
26
 *
27
 * The context is used in the RaInOtherInstitutionVoter, and can be used
28
 * from the context of a controller or service that uses the AuthzChecker
29
 *
30
 * Example:
31
 * $context = new InstitutionContext('institution-a', 'institution-d');
32
 * $securityChecker->isGranted('view_auditlog', $context);
33
 *
34
 * @see RaInOtherInstitutionVoter
35
 */
36
final class InstitutionContext
37
{
38
    private $targetInstitution;
39
40
    private $actorInstitution;
41
42
    /**
43
     * @param string $targetInstitution
44
     * @param string $actorInstitution
45
     */
46
    public function __construct($targetInstitution, $actorInstitution)
47
    {
48
        $this->targetInstitution = $targetInstitution;
49
        $this->actorInstitution = $actorInstitution;
50
    }
51
52
    /**
53
     * @return string
54
     */
55
    public function getTargetInstitution()
56
    {
57
        return $this->targetInstitution;
58
    }
59
60
    /**
61
     * @return string
62
     */
63
    public function getActorInstitution()
64
    {
65
        return $this->actorInstitution;
66
    }
67
}
68