-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathzerossl_client.go
231 lines (219 loc) · 6.54 KB
/
zerossl_client.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
* Copyright [2022] [tinkernels (github.com/tinkernels)]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package zerosslIPCert
import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"strconv"
)
// Client is a client for ZeroSSL.
// Refer: https://zerossl.com/documentation/api
type Client struct {
ApiKey string // API key
}
// GetCert returns a certificate.
func (c *Client) GetCert(id string) (cert CertificateInfoModel, err error) {
req_ := ApiReqFactory.GetCertificate(c.ApiKey, id)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
return CertificateInfoModel{}, err
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return CertificateInfoModel{}, fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
err = json.NewDecoder(resp.Body).Decode(&cert)
if err != nil {
if &cert == nil {
return
}
log.Println(err)
// The validation field in api response can an empty array, using the partially unmarshalled value.
return cert, nil
}
return
}
// CreateCert creates a certificate with the given parameters.
func (c *Client) CreateCert(domains, csr, days, isStrictDomains string) (cert CertificateInfoModel, err error) {
req_ := ApiReqFactory.CreateCertificate(c.ApiKey, domains, csr, days, isStrictDomains)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
log.Println(err)
return CertificateInfoModel{}, err
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return CertificateInfoModel{}, fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
err = json.NewDecoder(resp.Body).Decode(&cert)
if err != nil {
return CertificateInfoModel{}, err
}
return
}
// Cancel a certificate.
func (c *Client) CancelCert(id string) (err error) {
req_ := ApiReqFactory.CancelCertificate(c.ApiKey, id)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
return err
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
return
}
// VerifyDomains verifies domains of specified certificate with given validation info.
func (c *Client) VerifyDomains(certID, validationMethod, validationEmail string) (verifyDomainsRsp VerifyDomainsModel, err error) {
req_ := ApiReqFactory.VerifyDomains(c.ApiKey, certID, validationMethod, validationEmail)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
log.Println(err)
return
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return VerifyDomainsModel{}, fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
err = json.NewDecoder(resp.Body).Decode(&verifyDomainsRsp)
if err != nil {
return VerifyDomainsModel{}, err
}
return
}
// VerificationStatus returns the verification status of a certificate.
func (c *Client) VerificationStatus(certID string) (verificationStatusRsp VerificationStatusModel, err error) {
req_ := ApiReqFactory.VerificationStatus(c.ApiKey, certID)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
log.Println(err)
return
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return VerificationStatusModel{}, fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
err = json.NewDecoder(resp.Body).Decode(&verificationStatusRsp)
if err != nil {
return VerificationStatusModel{}, err
}
return
}
// DownloadCertInline returns the certificate in PEM format.
func (c *Client) DownloadCertInline(certID, includeCrossSigned string) (cert CertificateContentModel, err error) {
req_ := ApiReqFactory.DownloadCertificateInline(c.ApiKey, certID, includeCrossSigned)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
log.Println(err)
return
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return CertificateContentModel{}, fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
err = json.NewDecoder(resp.Body).Decode(&cert)
if err != nil {
return CertificateContentModel{}, err
}
return
}
// ListCerts returns a list of certificates with optional filters.
func (c *Client) ListCerts(status, search, limit, page string) (listCertsRsp ListCertsModel, err error) {
req_ := ApiReqFactory.ListCertificates(c.ApiKey, status, search, limit, page)
resp, err := http.DefaultClient.Do(req_)
if err != nil {
log.Println(err)
return
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Println(err)
}
}(resp.Body)
if resp.StatusCode >= 400 {
return ListCertsModel{}, fmt.Errorf("ZeroSSL API returned status code %d", resp.StatusCode)
}
err = json.NewDecoder(resp.Body).Decode(&listCertsRsp)
if err != nil {
if &listCertsRsp == nil {
return
}
log.Println(err)
// The validation field in api response can an empty array, using the partially unmarshalled value.
return listCertsRsp, nil
}
return
}
func (c *Client) CleanUnfinished() (err error) {
log.Println("Cleaning unfinished certificates")
perPage_ := 100
max := 1
for page_ := 1; page_-1 <= max; page_++ {
certs, err := c.ListCerts("", "draft,pending_validation", strconv.Itoa(perPage_), strconv.Itoa(page_))
max = certs.TotalCount / perPage_
log.Printf("page_: %d max: %d ResultCount: %d", page_, max, certs.ResultCount)
if err != nil {
log.Println(err)
break
}
for _, cert := range certs.Results {
// Cleaning up certificates that are not finished (including cancelled, expired).
if cert.Status == CertStatus.Draft || cert.Status == CertStatus.PendingValidation {
log.Printf("Cleaning %s in %s status, id %s", cert.CommonName, cert.Status, cert.ID)
err = c.CancelCert(cert.ID)
if err != nil {
log.Println(err)
}
}
}
}
return
}