-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertificate.go
More file actions
87 lines (73 loc) · 1.51 KB
/
certificate.go
File metadata and controls
87 lines (73 loc) · 1.51 KB
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
package agentintegration
type Certificate struct {
CN,
ValidFrom,
ValidTo string
DNSNames,
EmailAddresses,
Organization,
Province,
Country,
Locality []string
IsCA, IsValid bool
Issuer Issuer
}
type Issuer struct {
CN string
Organization []string
}
type CertificateIssueRequestData struct {
Email,
ServerName,
WebServer,
ChallengeType string
Subjects []string
AdditionalParams map[string]string
Assign bool
PreventReload bool
}
func (ctd *CertificateIssueRequestData) GetAdditionalParam(key string) string {
if ctd.AdditionalParams == nil {
ctd.AdditionalParams = make(map[string]string)
}
return ctd.AdditionalParams[key]
}
type CertificateUploadRequestData struct {
ServerName string
WebServer string
CertName string
PemCertificate string
}
type CertificateAssignRequestData struct {
ServerName string
WebServer string
CertName string
StorageType string
}
type CertificateDownloadRequestData struct {
CertName string
StorageType string
}
type CertificateRemoveRequestData struct {
CertName string
StorageType string
}
type CertificatesResponseData struct {
Certificates map[string]*Certificate
}
type CertificateDownloadResponseData struct {
CertFileName string
CertContent string
}
type CommonDirStatusRequestData struct {
WebServer string
ServerName string
}
type CommonDirStatusResponseData struct {
Status bool
}
type CommonDirChangeStatusRequestData struct {
WebServer string
ServerName string
Status bool
}