forked from acmephp/ssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParsedCertificate.php
157 lines (135 loc) · 3.4 KB
/
ParsedCertificate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
/*
* This file is part of the Acme PHP project.
*
* (c) Titouan Galopin <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace AcmePhp\Ssl;
use Webmozart\Assert\Assert;
/**
* Represent the content of a parsed certificate.
*
* @author Jérémy Derussé <[email protected]>
*/
class ParsedCertificate
{
/** @var Certificate */
private $source;
/** @var string */
private $subject;
/** @var string */
private $issuer;
/** @var bool */
private $selfSigned;
/** @var \DateTime */
private $validFrom;
/** @var \DateTime */
private $validTo;
/** @var string */
private $serialNumber;
/** @var array */
private $subjectAlternativeNames;
/**
* @param Certificate $source
* @param string $subject
* @param string $issuer
* @param bool $selfSigned
* @param \DateTime $validFrom
* @param \DateTime $validTo
* @param string $serialNumber
* @param array $subjectAlternativeNames
*/
public function __construct(
Certificate $source,
$subject,
$issuer = null,
$selfSigned = true,
\DateTime $validFrom = null,
\DateTime $validTo = null,
$serialNumber = null,
array $subjectAlternativeNames = []
) {
Assert::stringNotEmpty($subject, __CLASS__.'::$subject expected a non empty string. Got: %s');
Assert::nullOrString($issuer, __CLASS__.'::$issuer expected a string or null. Got: %s');
Assert::nullOrBoolean($selfSigned, __CLASS__.'::$selfSigned expected a boolean or null. Got: %s');
Assert::nullOrString($serialNumber, __CLASS__.'::$serialNumber expected a string or null. Got: %s');
Assert::allStringNotEmpty(
$subjectAlternativeNames,
__CLASS__.'::$subjectAlternativeNames expected a array of non empty string. Got: %s'
);
$this->source = $source;
$this->subject = $subject;
$this->issuer = $issuer;
$this->selfSigned = $selfSigned;
$this->validFrom = $validFrom;
$this->validTo = $validTo;
$this->serialNumber = $serialNumber;
$this->subjectAlternativeNames = $subjectAlternativeNames;
}
/**
* @return Certificate
*/
public function getSource()
{
return $this->source;
}
/**
* @return string
*/
public function getSubject()
{
return $this->subject;
}
/**
* @return string
*/
public function getIssuer()
{
return $this->issuer;
}
/**
* @return bool
*/
public function isSelfSigned()
{
return $this->selfSigned;
}
/**
* @return \DateTime
*/
public function getValidFrom()
{
return $this->validFrom;
}
/**
* @return \DateTime
*/
public function getValidTo()
{
return $this->validTo;
}
/**
* @return bool
*/
public function isExpired()
{
return $this->validTo < (new \DateTime());
}
/**
* @return string
*/
public function getSerialNumber()
{
return $this->serialNumber;
}
/**
* @return array
*/
public function getSubjectAlternativeNames()
{
return $this->subjectAlternativeNames;
}
}