Completed
Pull Request — feature/fine-grained-authoriza... (#246)
by
unknown
40:56 queued 21:52
created

getAuditLogMetadata()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 8
Ratio 100 %

Importance

Changes 0
Metric Value
dl 8
loc 8
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * Copyright 2014 SURFnet bv
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\Stepup\Identity\Event;
20
21
use Surfnet\Stepup\Identity\AuditLog\Metadata;
22
use Surfnet\Stepup\Identity\Collection\InstitutionCollection;
23
use Surfnet\Stepup\Identity\Value\IdentityId;
24
use Surfnet\Stepup\Identity\Value\Institution;
25
26 View Code Duplication
class AccreditedInstitutionsAddedToIdentityEvent extends IdentityEvent
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
27
{
28
    /**
29
     * @var IdentityId
30
     */
31
    private $identityId;
32
33
    /**
34
     * @var InstitutionCollection
35
     */
36
    public $institutions;
37
38
    public function __construct(IdentityId $identityId, Institution $identityInstitution, InstitutionCollection $institutions)
39
    {
40
        parent::__construct($identityId, $identityInstitution);
41
42
        $this->institutions = $institutions;
43
        $this->identityId = $identityId;
44
    }
45
46
    /**
47
     * @param array $data
48
     * @return AccreditedInstitutionsAddedToIdentityEvent
49
     */
50
    public static function deserialize(array $data)
51
    {
52
        return new self(
53
            new IdentityId($data['identity_id']),
54
            new Institution($data['institution']),
55
            InstitutionCollection::deserialize($data['institutions'])
56
        );
57
    }
58
59
    /**
60
     * @return array
61
     */
62
    public function serialize()
63
    {
64
        return [
65
            'identity_id'    => (string) $this->identityId,
66
            'institution'    => (string) $this->identityInstitution,
67
            'institutions' => $this->institutions->serialize()
68
        ];
69
    }
70
71
    /**
72
     * @return \Surfnet\Stepup\Identity\AuditLog\Metadata
73
     */
74
    public function getAuditLogMetadata()
75
    {
76
        $metadata = new Metadata();
77
        $metadata->identityId = $this->identityId;
78
        $metadata->identityInstitution = $this->identityInstitution;
79
80
        return $metadata;
81
    }
82
}
83