-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtls.go
More file actions
134 lines (103 loc) · 2.81 KB
/
tls.go
File metadata and controls
134 lines (103 loc) · 2.81 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
package cmd
import (
"github.com/drycc/controller-sdk-go/tls"
)
// TLSInfo prints info about the TLS settings for the given app.
func (d *DryccCmd) TLSInfo(appID string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
tls, err := tls.Info(s.Client, appID)
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Printf("=== %s TLS\n", appID)
d.Println(tls)
return nil
}
// TLSForceEnable enables the router to enforce https-only requests to the application.
func (d *DryccCmd) TLSForceEnable(appID string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
d.Printf("Enabling https-only requests for %s... ", appID)
quit := progress(d.WOut)
_, err = tls.EnableHTTPSEnforced(s.Client, appID)
quit <- true
<-quit
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Println("done")
return nil
}
// TLSForceDisable disables the router to enforce https-only requests to the application.
func (d *DryccCmd) TLSForceDisable(appID string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
d.Printf("Disabling https-only requests for %s... ", appID)
quit := progress(d.WOut)
_, err = tls.DisableHTTPSEnforced(s.Client, appID)
quit <- true
<-quit
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Println("done")
return nil
}
// TLSAutoEnable enables certs-auto requests to the application.
func (d *DryccCmd) TLSAutoEnable(appID string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
d.Printf("Enabling certs-auto requests for %s... ", appID)
quit := progress(d.WOut)
_, err = tls.EnableCertsAutoEnabled(s.Client, appID)
quit <- true
<-quit
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Println("done")
return nil
}
// TLSAutoDisable disables certs-auto requests to the application.
func (d *DryccCmd) TLSAutoDisable(appID string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
d.Printf("Disabling certs-auto requests for %s... ", appID)
quit := progress(d.WOut)
_, err = tls.DisableCertsAutoEnabled(s.Client, appID)
quit <- true
<-quit
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Println("done")
return nil
}
// TLSAutoIssuer add issuer requests to the application.
func (d *DryccCmd) TLSAutoIssuer(appID string, email string, server string, keyID string, keySecret string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
d.Printf("Adding issuer requests for %s... ", appID)
quit := progress(d.WOut)
_, err = tls.AddCertsIssuer(s.Client, appID, email, server, keyID, keySecret)
quit <- true
<-quit
if d.checkAPICompatibility(s.Client, err) != nil {
return err
}
d.Println("done")
return nil
}