GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

SslChain::expirationDate()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace LiquidWeb\SslCertificate;
4
5
use Carbon\Carbon;
6
use phpseclib\Math\BigInteger;
7
8
class SslChain
9
{
10
    /** @var string */
11
    protected $name;
12
13
    /** @var array */
14
    protected $subject;
15
16
    /** @var string */
17
    protected $hash;
18
19
    /** @var array */
20
    protected $issuer;
21
22
    /** @var string */
23
    protected $version;
24
25
    /** @var BigInteger */
26
    protected $serial;
27
28
    /** @var Carbon */
29
    protected $validFrom;
30
31
    /** @var Carbon */
32
    protected $validTo;
33
34
    /** @var string */
35
    protected $signatureType;
36
37 41
    private static function setValidFromDate($utcInput): Carbon
38
    {
39 41
        return Carbon::createFromTimestampUTC($utcInput);
40
    }
41
42 41
    private static function setValidToDate($utcInput): Carbon
43
    {
44 41
        return Carbon::createFromTimestampUTC($utcInput);
45
    }
46
47 41
    public function __construct(array $chainInput)
48
    {
49 41
        $this->name = $chainInput['name'];
50 41
        $this->subject = $chainInput['subject'];
51 41
        $this->hash = $chainInput['hash'];
52 41
        $this->issuer = $chainInput['issuer'];
53 41
        $this->version = $chainInput['version'];
54 41
        $this->serial = new BigInteger($chainInput['serialNumber']);
55 41
        $this->validFrom = self::setValidFromDate($chainInput['validFrom_time_t']);
56 41
        $this->validTo = self::setValidToDate($chainInput['validTo_time_t']);
57 41
        $this->signatureType = $chainInput['signatureTypeSN'];
58 41
    }
59
60 1
    public function getLocationName(): string
61
    {
62 1
        return $this->subject['C'] ?? '';
63
    }
64
65 1
    public function getOrganizationName(): string
66
    {
67 1
        return $this->subject['O'] ?? '';
68
    }
69
70 1
    public function getOrganizationUnitName(): string
71
    {
72 1
        return $this->subject['OU'] ?? '';
73
    }
74
75 1
    public function getCommonName(): string
76
    {
77 1
        return $this->subject['CN'] ?? '';
78
    }
79
80 1
    public function getHash(): string
81
    {
82 1
        return $this->hash;
83
    }
84
85 1
    public function getIssuerLocationName(): string
86
    {
87 1
        return $this->issuer['C'] ?? '';
88
    }
89
90 1
    public function getIssuerOrganizationName(): string
91
    {
92 1
        return $this->issuer['O'] ?? '';
93
    }
94
95 2
    public function getIssuerOrganizationUnitName(): string
96
    {
97 2
        if (isset($this->issuer['OU']) === true) {
98 2
            if (is_array($this->issuer['OU']) === true) {
99 1
                return $this->issuer['OU'][0] ?? '';
100
            }
101
        }
102
103 1
        return $this->issuer['OU'] ?? '';
104
    }
105
106 1
    public function getIssuerCommonName(): string
107
    {
108 1
        return $this->issuer['CN'] ?? '';
109
    }
110
111 1
    public function getSerialNumber(): string
112
    {
113 1
        return strtoupper($this->serial->toHex());
114
    }
115
116 2
    public function validFromDate(): Carbon
117
    {
118 2
        return $this->validFrom;
119
    }
120
121 4
    public function expirationDate(): Carbon
122
    {
123 4
        return $this->validTo;
124
    }
125
126 1
    public function getSignatureAlgorithm(): string
127
    {
128 1
        return $this->signatureType;
129
    }
130
131 1
    public function isExpired(): bool
132
    {
133 1
        return $this->expirationDate()->isPast();
134
    }
135
136 1 View Code Duplication
    public function isValid()
137
    {
138 1
        if (Carbon::now()->between($this->validFromDate(), $this->expirationDate()) === false) {
139
            return false;
140
        }
141
142 1
        return true;
143
    }
144
145 1
    public function isValidUntil(Carbon $carbon): bool
146
    {
147 1
        if ($this->expirationDate()->gt($carbon) === true) {
148 1
            return false;
149
        }
150
151
        return $this->isValid();
152
    }
153
}
154