-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrun_cert.go
More file actions
226 lines (177 loc) · 6.15 KB
/
run_cert.go
File metadata and controls
226 lines (177 loc) · 6.15 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
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
// ThreatSpec package main
package main
import (
"fmt"
"github.com/jawher/mow.cli"
"github.com/pki-io/controller"
)
func certCmd(cmd *cli.Cmd) {
cmd.Command("new", "Create a new certificate", certNewCmd)
cmd.Command("list", "List certificates", certListCmd)
cmd.Command("show", "Show a certificate", certShowCmd)
cmd.Command("update", "Update a certificate", certUpdateCmd)
cmd.Command("delete", "Delete a certificate", certDeleteCmd)
}
func certNewCmd(cmd *cli.Cmd) {
cmd.Spec = "NAME [OPTIONS]"
params := controller.NewCertificateParams()
params.Name = cmd.StringArg("NAME", "", "name of certificate")
params.Tags = cmd.StringOpt("tags", "NAME", "comma separated list of tags")
params.StandaloneFile = cmd.StringOpt("standalone", "", "certificate isn't managed by the org but is exported as a tar.gz")
params.CertFile = cmd.StringOpt("cert", "", "certificate PEM file")
params.KeyFile = cmd.StringOpt("key", "", "key PEM file")
params.Expiry = cmd.IntOpt("expiry", 365, "expiry period in days")
params.Ca = cmd.StringOpt("ca", "", "name of the signing CA (self-signed by default)")
params.KeyType = cmd.StringOpt("key-type", "ec", "Key type (ec or rsa)")
params.DnLocality = cmd.StringOpt("dn-l", "", "Locality for DN")
params.DnState = cmd.StringOpt("dn-st", "", "State/province for DN")
params.DnOrg = cmd.StringOpt("dn-o", "", "Organization for DN")
params.DnOrgUnit = cmd.StringOpt("dn-ou", "", "Organizational unit for DN")
params.DnCountry = cmd.StringOpt("dn-c", "", "Country for DN")
params.DnStreet = cmd.StringOpt("dn-street", "", "Street for DN")
params.DnPostal = cmd.StringOpt("dn-postal", "", "PostalCode for DN")
cmd.Action = func() {
app := NewAdminApp()
logger.Info("creating new certificate")
cont, err := controller.NewCertificate(app.env)
if err != nil {
app.Fatal(err)
}
cert, ca, err := cont.New(params)
if err != nil {
app.Fatal(err)
}
if cert == nil {
return
}
if *params.StandaloneFile == "" {
table := app.NewTable()
certData := [][]string{
[]string{"Id", cert.Id()},
[]string{"Name", cert.Name()},
}
table.AppendBulk(certData)
app.RenderTable(table)
} else {
var files []ExportFile
certFile := fmt.Sprintf("%s-cert.pem", cert.Data.Body.Name)
keyFile := fmt.Sprintf("%s-key.pem", cert.Data.Body.Name)
caFile := fmt.Sprintf("%s-cacert.pem", cert.Data.Body.Name)
if ca != nil {
files = append(files, ExportFile{Name: caFile, Mode: 0644, Content: []byte(ca.Data.Body.Certificate)})
}
files = append(files, ExportFile{Name: certFile, Mode: 0644, Content: []byte(cert.Data.Body.Certificate)})
files = append(files, ExportFile{Name: keyFile, Mode: 0600, Content: []byte(cert.Data.Body.PrivateKey)})
logger.Debugf("Exporting to '%s'", *params.StandaloneFile)
Export(files, *params.StandaloneFile)
}
}
}
func certListCmd(cmd *cli.Cmd) {
params := controller.NewCertificateParams()
cmd.Action = func() {
app := NewAdminApp()
logger.Info("listing certificates")
cont, err := controller.NewCertificate(app.env)
if err != nil {
app.Fatal(err)
}
certs, err := cont.List(params)
if err != nil {
app.Fatal(err)
}
table := app.NewTable()
table.SetHeader([]string{"Name", "Id"})
for _, cert := range certs {
table.Append([]string{cert.Name(), cert.Id()})
}
app.RenderTable(table)
}
}
func certShowCmd(cmd *cli.Cmd) {
cmd.Spec = "NAME [OPTIONS]"
params := controller.NewCertificateParams()
params.Name = cmd.StringArg("NAME", "", "name of certificate")
params.Export = cmd.StringOpt("export", "", "tar.gz export to file")
params.Private = cmd.BoolOpt("private", false, "show/export private data")
cmd.Action = func() {
app := NewAdminApp()
logger.Info("showing certificate")
cont, err := controller.NewCertificate(app.env)
if err != nil {
app.Fatal(err)
}
cert, err := cont.Show(params)
if err != nil {
app.Fatal(err)
}
if cert == nil {
return
}
if *params.Export == "" {
table := app.NewTable()
certData := [][]string{
[]string{"ID", cert.Id()},
[]string{"Name", cert.Name()},
[]string{"Key type", cert.Data.Body.KeyType},
}
table.AppendBulk(certData)
app.RenderTable(table)
fmt.Println("")
fmt.Printf("Certificate:\n%s\n", cert.Data.Body.Certificate)
if *params.Private {
fmt.Printf("Private key:\n%s\n", cert.Data.Body.PrivateKey)
}
} else {
var files []ExportFile
certFile := fmt.Sprintf("%s-cert.pem", cert.Data.Body.Name)
keyFile := fmt.Sprintf("%s-key.pem", cert.Data.Body.Name)
files = append(files, ExportFile{Name: certFile, Mode: 0644, Content: []byte(cert.Data.Body.Certificate)})
if cert.Data.Body.CACertificate != "" {
caFile := fmt.Sprintf("%s-cacert.pem", cert.Data.Body.Name)
files = append(files, ExportFile{Name: caFile, Mode: 0644, Content: []byte(cert.Data.Body.CACertificate)})
}
if *params.Private {
files = append(files, ExportFile{Name: keyFile, Mode: 0600, Content: []byte(cert.Data.Body.PrivateKey)})
}
logger.Debugf("exporting to '%s'", *params.Export)
Export(files, *params.Export)
}
}
}
func certUpdateCmd(cmd *cli.Cmd) {
cmd.Spec = "NAME [OPTIONS]"
params := controller.NewCertificateParams()
params.Name = cmd.StringArg("NAME", "", "name of certificate")
params.CertFile = cmd.StringOpt("cert", "", "certificate PEM file")
params.KeyFile = cmd.StringOpt("key", "", "key PEM file")
params.Tags = cmd.StringOpt("tags", "", "comma separated list of tags")
cmd.Action = func() {
app := NewAdminApp()
logger.Info("updating certificate")
cont, err := controller.NewCertificate(app.env)
if err != nil {
app.Fatal(err)
}
if err := cont.Update(params); err != nil {
app.Fatal(err)
}
}
}
func certDeleteCmd(cmd *cli.Cmd) {
cmd.Spec = "NAME [OPTIONS]"
params := controller.NewCertificateParams()
params.Name = cmd.StringArg("NAME", "", "name of certificate")
params.ConfirmDelete = cmd.StringOpt("confirm-delete", "", "reason for deleting certificate")
cmd.Action = func() {
app := NewAdminApp()
logger.Info("deleting certificate")
cont, err := controller.NewCertificate(app.env)
if err != nil {
app.Fatal(err)
}
if err := cont.Delete(params); err != nil {
app.Fatal(err)
}
}
}