-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDistinguishedName.php
112 lines (91 loc) · 2.73 KB
/
DistinguishedName.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
<?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 a Distinguished Name.
*
* @author Jérémy Derussé <[email protected]>
*/
class DistinguishedName
{
/** @var string */
private $commonName;
/** @var string */
private $countryName;
/** @var string */
private $stateOrProvinceName;
/** @var string */
private $localityName;
/** @var string */
private $organizationName;
/** @var string */
private $organizationalUnitName;
/** @var string */
private $emailAddress;
/** @var array */
private $subjectAlternativeNames;
public function __construct(
string $commonName,
string $countryName = null,
string $stateOrProvinceName = null,
string $localityName = null,
string $organizationName = null,
string $organizationalUnitName = null,
string $emailAddress = null,
array $subjectAlternativeNames = []
) {
Assert::stringNotEmpty($commonName, __CLASS__.'::$commonName expected a non empty string. Got: %s');
Assert::allStringNotEmpty(
$subjectAlternativeNames,
__CLASS__.'::$subjectAlternativeNames expected an array of non empty string. Got: %s'
);
$this->commonName = $commonName;
$this->countryName = $countryName;
$this->stateOrProvinceName = $stateOrProvinceName;
$this->localityName = $localityName;
$this->organizationName = $organizationName;
$this->organizationalUnitName = $organizationalUnitName;
$this->emailAddress = $emailAddress;
$this->subjectAlternativeNames = array_diff(array_unique($subjectAlternativeNames), [$commonName]);
}
public function getCommonName(): string
{
return $this->commonName;
}
public function getCountryName(): ?string
{
return $this->countryName;
}
public function getStateOrProvinceName(): ?string
{
return $this->stateOrProvinceName;
}
public function getLocalityName(): ?string
{
return $this->localityName;
}
public function getOrganizationName(): ?string
{
return $this->organizationName;
}
public function getOrganizationalUnitName(): ?string
{
return $this->organizationalUnitName;
}
public function getEmailAddress(): ?string
{
return $this->emailAddress;
}
public function getSubjectAlternativeNames(): array
{
return $this->subjectAlternativeNames;
}
}