Completed
Push — feature/verify-email-new-prove... ( 7083d2 )
by
unknown
08:05 queued 04:39
created

getSensitiveData()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 7
Ratio 100 %

Importance

Changes 0
Metric Value
dl 7
loc 7
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 5
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\DateTime\DateTime;
22
use Surfnet\Stepup\Identity\AuditLog\Metadata;
23
use Surfnet\Stepup\Identity\Value\CommonName;
24
use Surfnet\Stepup\Identity\Value\Email;
25
use Surfnet\Stepup\Identity\Value\IdentityId;
26
use Surfnet\Stepup\Identity\Value\Institution;
27
use Surfnet\Stepup\Identity\Value\SecondFactorId;
28
use Surfnet\Stepup\Identity\Value\YubikeyPublicId;
29
use Surfnet\StepupBundle\Value\SecondFactorType;
30
use Surfnet\StepupMiddleware\CommandHandlingBundle\SensitiveData\Forgettable;
31
use Surfnet\StepupMiddleware\CommandHandlingBundle\SensitiveData\SensitiveData;
32
33 View Code Duplication
class YubikeyPossessionProvenAndVerifiedEvent extends IdentityEvent implements Forgettable
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...
34
{
35
    /**
36
     * @var \Surfnet\Stepup\Identity\Value\SecondFactorId
37
     */
38
    public $secondFactorId;
39
40
    /**
41
     * The Yubikey's public ID.
42
     *
43
     * @var \Surfnet\Stepup\Identity\Value\YubikeyPublicId
44
     */
45
    public $yubikeyPublicId;
46
47
    /**
48
     * @var \Surfnet\Stepup\Identity\Value\CommonName
49
     */
50
    public $commonName;
51
52
    /**
53
     * @var \Surfnet\Stepup\Identity\Value\Email
54
     */
55
    public $email;
56
57
    /**
58
     * @var \Surfnet\Stepup\DateTime\DateTime
59
     */
60
    public $registrationRequestedAt;
61
62
    /**
63
     * @var string
64
     */
65
    public $registrationCode;
66
67
    /**
68
     * @param IdentityId              $identityId
69
     * @param Institution             $institution
70
     * @param SecondFactorId          $secondFactorId
71
     * @param YubikeyPublicId         $yubikeyPublicId
72
     * @param CommonName              $commonName
73
     * @param Email                   $email
74
     * @param DateTime                $registrationRequestedAt
75
     * @param string                  $registrationCode
76
     */
77
    public function __construct(
78
        IdentityId $identityId,
79
        Institution $institution,
80
        SecondFactorId $secondFactorId,
81
        YubikeyPublicId $yubikeyPublicId,
82
        CommonName $commonName,
83
        Email $email,
84
        DateTime $registrationRequestedAt,
0 ignored issues
show
Unused Code introduced by
The parameter $registrationRequestedAt is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
85
        $registrationCode
0 ignored issues
show
Unused Code introduced by
The parameter $registrationCode is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
86
    ) {
87
        parent::__construct($identityId, $institution);
88
89
        $this->secondFactorId            = $secondFactorId;
90
        $this->yubikeyPublicId           = $yubikeyPublicId;
91
        $this->commonName                = $commonName;
92
        $this->email                     = $email;
93
    }
94
95
    public function getAuditLogMetadata()
96
    {
97
        $metadata                         = new Metadata();
98
        $metadata->identityId             = $this->identityId;
99
        $metadata->identityInstitution    = $this->identityInstitution;
100
        $metadata->secondFactorId         = $this->secondFactorId;
101
        $metadata->secondFactorType       = new SecondFactorType('yubikey');
102
        $metadata->secondFactorIdentifier = $this->yubikeyPublicId;
103
104
        return $metadata;
105
    }
106
107
    public static function deserialize(array $data)
108
    {
109
        return new self(
110
            new IdentityId($data['identity_id']),
111
            new Institution($data['identity_institution']),
112
            new SecondFactorId($data['second_factor_id']),
113
            YubikeyPublicId::unknown(),
114
            CommonName::unknown(),
115
            Email::unknown(),
116
            DateTime::fromString($data['registration_requested_at']),
117
            (string) $data['registration_code']
118
        );
119
    }
120
121
    public function serialize()
122
    {
123
        return [
124
            'identity_id'                 => (string) $this->identityId,
125
            'identity_institution'        => (string) $this->identityInstitution,
126
            'second_factor_id'            => (string) $this->secondFactorId,
127
            'registration_requested_at'   => (string) $this->registrationRequestedAt,
128
            'registration_code'           => $this->registrationCode,
129
        ];
130
    }
131
132
    public function getSensitiveData()
133
    {
134
        return (new SensitiveData)
135
            ->withCommonName($this->commonName)
136
            ->withEmail($this->email)
137
            ->withSecondFactorIdentifier($this->yubikeyPublicId, new SecondFactorType('yubikey'));
138
    }
139
140
    public function setSensitiveData(SensitiveData $sensitiveData)
141
    {
142
        $this->yubikeyPublicId = $sensitiveData->getSecondFactorIdentifier();
143
        $this->email = $sensitiveData->getEmail();
144
        $this->commonName = $sensitiveData->getCommonName();
145
    }
146
}
147