-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcertificate.go
214 lines (180 loc) · 4.99 KB
/
certificate.go
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
package go_certcentral
import (
"crypto/x509"
"encoding/json"
"errors"
"io/ioutil"
"net/http"
"strings"
"time"
)
const certificateURL = "/certificate"
type CertificateFormat string
func (cf CertificateFormat) String() string {
return string(cf)
}
// CertificateFormats is the set of formats for a certificate.
// Additional documentation can be found here:
// https://dev.digicert.com/glossary/#certificate-formats
var CertificateFormats = struct {
Default,
PEM,
DefaultPEM,
PEMAll,
PEMNoIntermediate,
PEMNoRoot,
P7B,
CRT CertificateFormat
}{
"default",
"pem",
"default_pem",
"pem_all",
"pem_nointermediate",
"pem_noroot",
"p7b",
"crt",
}
type SignatureHash string
func (s SignatureHash) String() string {
return string(s)
}
var SignatureHashes = struct {
SHA256,
SHA384,
SHA512,
SHA1 SignatureHash
}{
"sha256",
"sha384",
"sha512",
"sha1",
}
type (
Certificate struct {
CommonName string `json:"common_name"`
DNSNames []string `json:"dns_names"`
CSR string `json:"csr,omitempty"`
ServerPlatform ServerPlatform `json:"server_platform"`
SignatureHash SignatureHash `json:"signature_hash"`
CaCertID string `json:"ca_cert_id,omitempty"`
OrganizationUnits []string `json:"organization_units,omitempty"`
Organization *Organization `json:"organization,omitempty"`
ProfileOption string `json:"profile_option,omitempty"`
ID int `json:"id,omitempty"`
Thumbprint string `json:"thumbprint,omitempty"`
SerialNumber string `json:"serial_number,omitempty"`
DateCreated *time.Time `json:"date_created,omitempty"`
ValidFrom string `json:"valid_from,omitempty"`
ValidTill string `json:"valid_till,omitempty"`
KeySize int `json:"key_size,omitempty"`
CACert *CACert `json:"ca_cert,omitempty"`
}
CACert struct {
ID string `json:"id"`
Name string `json:"name"`
}
CertificateChain struct {
SubjectCommonName string `json:"subject_common_name"`
Pem string `json:"pem"`
}
ChainIntermediates struct {
Intermediates []CertificateChain `json:"intermediates"`
}
CertificateRevokeResponse struct {
ID int `json:"id"`
Date *time.Time `json:"date,omitempty"`
Type string `json:"type,omitempty"`
Status Status `json:"status,omitempty"`
Requester *User `json:"requester,omitempty"`
Comments string `json:"comments,omitempty"`
}
)
func (cc CertificateChain) DecodePEM() ([]*x509.Certificate, error) {
return decodePEM([]byte(cc.Pem))
}
func (c *Client) DownloadCertificateForOrder(orderID string, certFormat CertificateFormat) ([]*x509.Certificate, error) {
if orderID == "" {
return nil, errors.New("cannot download certificate without orderID")
}
req, err := http.NewRequest(
http.MethodGet, makeURL(certificateURL, "download/order", orderID, "format", certFormat.String()), nil,
)
if err != nil {
return nil, err
}
res, err := c.do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
resBody, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
return decodePEM(resBody)
}
func (c *Client) DownloadCertificate(certificateID string, certFormat CertificateFormat) ([]*x509.Certificate, error) {
if certificateID == "" {
return nil, errors.New("cannot download certificate without its ID")
}
req, err := http.NewRequest(http.MethodGet, makeURL(certificateURL, certificateID, "download/format", certFormat.String()), nil)
if err != nil {
return nil, err
}
res, err := c.do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
resBody, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
return decodePEM(resBody)
}
func (c *Client) RevokeCertificate(certificateID string) (*CertificateRevokeResponse, error) {
if certificateID == "" {
return nil, errors.New("cannot revoke certificate without its ID")
}
req, err := http.NewRequest(
http.MethodPut, makeURL(certificateURL, certificateID, "revoke"),
strings.NewReader("{\n \"skip_approval\":true\n}"),
)
if err != nil {
return nil, err
}
res, err := c.do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
resBody, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
var r CertificateRevokeResponse
err = json.Unmarshal(resBody, &r)
return &r, err
}
func (c *Client) GetCertificateChain(certID string) ([]CertificateChain, error) {
if certID == "" {
return nil, errors.New("cannot get certificate chain without certificate ID")
}
req, err := http.NewRequest(http.MethodGet, makeURL(certificateURL, certID, "chain"), nil)
if err != nil {
return nil, err
}
res, err := c.do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
resBody, err := ioutil.ReadAll(res.Body)
if err != nil {
return nil, err
}
var i ChainIntermediates
err = json.Unmarshal(resBody, &i)
return i.Intermediates, err
}