-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecrets.go
161 lines (139 loc) · 3.32 KB
/
secrets.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
package main
import (
"errors"
"fmt"
"io"
"os"
"github.com/urfave/cli/v2"
"gitlab.com/ionburst/ionburst-sdk-go"
"gitlab.com/ionburst/ionburst-sdk-go/ioprogress"
)
var classification string
var SecretsCmd = &cli.Command{
Name: "secrets",
Aliases: []string{"sec"},
Usage: "Manage Ionburst Secrets",
Subcommands: []*cli.Command{
{
Name: "get",
Usage: "Download a secret from Ionburst",
ArgsUsage: "<id> <outputfile>",
Action: func(c *cli.Context) error {
id := c.Args().Get(0)
if id == "" {
return errors.New("Please specify an id for the secret to be downloaded")
}
file := c.Args().Get(1)
if file == "" {
return errors.New("Please specify a secret to download")
}
cli, err := ionburst.NewClientPathAndProfile(config, profile, debug)
if err != nil {
return err
}
rdr, len, err := cli.GetSecretsWithLen(id)
if err != nil {
return err
}
progressR := &ioprogress.Reader{
Reader: rdr,
Size: len,
}
wr, err := os.Create(file)
if err != nil {
return err
}
_, err = io.Copy(wr, progressR)
return err
},
},
{
Name: "put",
Usage: "Upload a secret to Ionburst",
ArgsUsage: "<id> <secrettoupload>",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "classification",
Aliases: []string{
"t",
},
Value: "",
Usage: "Classification to apply to uploaded secret",
Destination: &classification,
},
},
Action: func(c *cli.Context) error {
id := c.Args().Get(0)
if id == "" {
return errors.New("Please specify an id for the secret to be uploaded")
}
file := c.Args().Get(1)
if file == "" {
return errors.New("Please specify a secret to upload")
} else if !ionburst.FileExists(file) {
return errors.New(fmt.Sprintf("The specififed secret doesnt exist: %s", file))
}
stat, err := os.Stat(file)
if err != nil {
return err
}
rdr, err := os.Open(file)
if err != nil {
return err
}
progressR := &ioprogress.Reader{
Reader: rdr,
Size: stat.Size(),
}
cli, err := ionburst.NewClientPathAndProfile(config, profile, debug)
if err != nil {
return err
}
err = cli.PutSecrets(id, progressR, c.String("classification"))
return err
},
},
{
Name: "delete",
Usage: "Delete a secret from Ionburst",
ArgsUsage: "<id>",
Action: func(c *cli.Context) error {
id := c.Args().Get(0)
if id == "" {
return errors.New("Please specify an id for the secret to be deleted")
}
cli, err := ionburst.NewClientPathAndProfile(config, profile, debug)
if err != nil {
return err
}
err = cli.DeleteSecrets(id)
if err != nil {
return err
}
return nil
},
},
{
Name: "head",
Usage: "Check a secret from Ionburst",
ArgsUsage: "<id>",
Action: func(c *cli.Context) error {
id := c.Args().Get(0)
if id == "" {
return errors.New("Please specify an id for the object to be checked")
}
cli, err := ionburst.NewClientPathAndProfile(config, profile, debug)
if err != nil {
return err
}
size, err := cli.HeadSecretsWithLen(id)
if err != nil {
return err
} else {
fmt.Printf("Size: %d\n", size)
}
return nil
},
},
},
}