forked from oleiade/trousseau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subcommands.go
135 lines (121 loc) · 2.49 KB
/
subcommands.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
package trousseau
import (
"github.com/codegangsta/cli"
)
func CreateCommand() cli.Command {
return cli.Command{
Name: "create",
Usage: "create trousseau",
Action: CreateAction,
}
}
func PushCommand() cli.Command {
return cli.Command{
Name: "push",
Usage: "pushes the trousseau to remote storage",
Action: PushAction,
Flags: []cli.Flag{
OverwriteFlag(),
S3BucketFlag(),
SshPrivateKeyPathFlag(),
RemoteStorageFlag(),
RemoteFilenameFlag(),
RemoteHostFlag(),
RemotePortFlag(),
RemoteUserFlag(),
},
}
}
func PullCommand() cli.Command {
return cli.Command{
Name: "pull",
Usage: "pull the trousseau from remote storage",
Action: PullAction,
Flags: []cli.Flag{
OverwriteFlag(),
S3BucketFlag(),
SshPrivateKeyPathFlag(),
RemoteStorageFlag(),
RemoteFilenameFlag(),
RemoteHostFlag(),
RemotePortFlag(),
RemoteUserFlag(),
},
}
}
func ExportCommand() cli.Command {
return cli.Command{
Name: "export",
Usage: "export the encrypted trousseau to local fs",
Action: ExportAction,
Flags: []cli.Flag{
OverwriteFlag(),
},
}
}
func ImportCommand() cli.Command {
return cli.Command{
Name: "import",
Usage: "import an encrypted trousseau from local fs",
Action: ImportAction,
Flags: []cli.Flag{
OverwriteFlag(),
},
}
}
func AddRecipientCommand() cli.Command {
return cli.Command{
Name: "add-recipient",
Usage: "add a recipient to the encrypted trousseau",
Action: AddRecipientAction,
}
}
func RemoveRecipientCommand() cli.Command {
return cli.Command{
Name: "remove-recipient",
Usage: "remove a recipient of the encrypted trousseau",
Action: RemoveRecipientAction,
}
}
func SetCommand() cli.Command {
return cli.Command{
Name: "set",
Usage: "sets a key value pair in the store",
Action: SetAction,
}
}
func GetCommand() cli.Command {
return cli.Command{
Name: "get",
Usage: "get a value from the trousseau",
Action: GetAction,
}
}
func DelCommand() cli.Command {
return cli.Command{
Name: "del",
Usage: "delete the point key pair from the store",
Action: DelAction,
}
}
func KeysCommand() cli.Command {
return cli.Command{
Name: "keys",
Usage: "Lists the store keys",
Action: KeysAction,
}
}
func ShowCommand() cli.Command {
return cli.Command{
Name: "show",
Usage: "shows trousseau content",
Action: ShowAction,
}
}
func MetaCommand() cli.Command {
return cli.Command{
Name: "meta",
Usage: "shows trousseau metadata",
Action: MetaAction,
}
}