-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
312 lines (307 loc) · 8.37 KB
/
main.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
package main
import (
"log"
"os"
"gopkg.in/urfave/cli.v1"
"github.com/dictybase-playground/gdrive-uploadr/commands"
"github.com/dictybase-playground/gdrive-uploadr/validate"
)
func main() {
app := cli.NewApp()
app.Version = "1.0.0"
app.Name = "gdrive-uploadr"
app.Usage = "Manage google drive upload"
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "gdrive-secret, gs",
Usage: "gdrive client secret json file",
EnvVar: "GDRIVE_CLIENT_SECRET",
},
cli.StringFlag{
Name: "cache-file, cf",
Usage: "location of cached gdrive token file, defaults to ~/.credentials/gdrive.json",
EnvVar: "CACHE_TOKEN_FILE",
},
}
app.Commands = []cli.Command{
{
Name: "authorize",
Usage: "authorize gdrive client",
Action: commands.AuthGDriveAction,
Before: validate.ValidateGdriveOptions,
},
{
Name: "gdrive-folder",
Usage: "create new gdrive folder",
Action: commands.CreateGdriveFolderAction,
Before: validate.ValidateGdriveFolderOptions,
Flags: []cli.Flag{
cli.StringFlag{
Name: "folder,f",
Usage: "Name of the folder[required]",
EnvVar: "FOLDER",
},
},
},
{
Name: "shared-gdrive-folder",
Usage: "create read only public gdrive folder",
Action: commands.CreateSharedGdriveFolderAction,
Before: validate.ValidateGdriveFolderOptions,
Flags: []cli.Flag{
cli.StringFlag{
Name: "folder,f",
Usage: "Name of the folder[required]",
EnvVar: "FOLDER",
},
},
},
{
Name: "run-gdrive",
Usage: "starts the server for uploading image to google drive",
Action: commands.RunGdriveServer,
Before: validate.ValidateGdriveServer,
Flags: []cli.Flag{
cli.StringFlag{
Name: "app-log",
Usage: "Name of the application log file(optional), default goes to stderr",
EnvVar: "APP_LOG",
},
cli.StringFlag{
Name: "app-log-level",
Usage: "log level of the application log(optional), default is json",
Value: "error",
EnvVar: "APP_LOG_LEVEL",
},
cli.StringFlag{
Name: "app-log-fmt",
Usage: "Format of the application log(optional), default is json",
Value: "json",
EnvVar: "APP_LOG_FMT",
},
cli.StringSliceFlag{
Name: "hooks",
Usage: "hook names for sending log in addition to stderr",
Value: &cli.StringSlice{},
},
cli.StringFlag{
Name: "slack-channel",
EnvVar: "SLACK_CHANNEL",
Usage: "Slack channel where the log will be posted",
},
cli.StringFlag{
Name: "slack-url",
EnvVar: "SLACK_URL",
Usage: "Slack webhook url[required if slack channel is provided]",
},
cli.StringFlag{
Name: "web-log",
Usage: "Name of the web request log file(optional), default goes to stderr",
EnvVar: "WEB-LOG",
},
cli.StringFlag{
Name: "web-log-fmt",
Usage: "Format of the web log(optional), default is json",
Value: "json",
EnvVar: "WEB_LOG_FMT",
},
cli.IntFlag{
Name: "port",
Usage: "port on which the server listen",
Value: 9998,
},
cli.StringFlag{
Name: "image-key",
Usage: "The name of form key from where the image file will be retrieved from the request body",
Value: "image",
},
cli.StringFlag{
Name: "folder-id",
Usage: "The folder id of gdrive[required]",
EnvVar: "FOLDER_ID",
},
},
},
{
Name: "run-local",
Usage: "starts the server for uploading image to local storage",
Action: commands.RunLocalServer,
Flags: []cli.Flag{
cli.StringFlag{
Name: "app-log",
Usage: "Name of the application log file(optional), default goes to stderr",
EnvVar: "APP_LOG",
},
cli.StringFlag{
Name: "app-log-level",
Usage: "log level of the application log(optional), default is json",
Value: "error",
EnvVar: "APP_LOG_LEVEL",
},
cli.StringFlag{
Name: "app-log-fmt",
Usage: "Format of the application log(optional), default is json",
Value: "json",
EnvVar: "APP_LOG_FMT",
},
cli.StringSliceFlag{
Name: "hooks",
Usage: "hook names for sending log in addition to stderr",
Value: &cli.StringSlice{},
},
cli.StringFlag{
Name: "slack-channel",
EnvVar: "SLACK_CHANNEL",
Usage: "Slack channel where the log will be posted",
},
cli.StringFlag{
Name: "slack-url",
EnvVar: "SLACK_URL",
Usage: "Slack webhook url[required if slack channel is provided]",
},
cli.StringFlag{
Name: "web-log",
Usage: "Name of the web request log file(optional), default goes to stderr",
EnvVar: "WEB-LOG",
},
cli.StringFlag{
Name: "web-log-fmt",
Usage: "Format of the web log(optional), default is json",
Value: "json",
EnvVar: "WEB_LOG_FMT",
},
cli.IntFlag{
Name: "port",
Usage: "port on which the server listen",
Value: 9998,
},
cli.StringFlag{
Name: "image-key",
Usage: "The name of form key from where the image file will be retrieved from the request body",
Value: "image",
},
cli.StringFlag{
Name: "save-path",
Usage: "The local path where the image file will be saved, default is the current folder",
},
},
},
{
Name: "run-s3",
Usage: "starts the server for uploading image to s3 storage",
Action: commands.RunS3Server,
Before: validate.ValidateS3Server,
Flags: []cli.Flag{
cli.StringFlag{
Name: "app-log",
Usage: "Name of the application log file(optional), default goes to stderr",
EnvVar: "APP_LOG",
},
cli.StringFlag{
Name: "app-log-level",
Usage: "log level of the application log(optional), default is json",
Value: "error",
EnvVar: "APP_LOG_LEVEL",
},
cli.StringFlag{
Name: "app-log-fmt",
Usage: "Format of the application log(optional), default is json",
Value: "json",
EnvVar: "APP_LOG_FMT",
},
cli.StringSliceFlag{
Name: "hooks",
Usage: "hook names for sending log in addition to stderr",
Value: &cli.StringSlice{},
},
cli.StringFlag{
Name: "slack-channel",
EnvVar: "SLACK_CHANNEL",
Usage: "Slack channel where the log will be posted",
},
cli.StringFlag{
Name: "slack-url",
EnvVar: "SLACK_URL",
Usage: "Slack webhook url[required if slack channel is provided]",
},
cli.IntFlag{
Name: "port",
Usage: "port on which the server listen",
Value: 9998,
},
cli.StringFlag{
Name: "image-key",
Usage: "The name of form key from where the image file will be retrieved from the request body",
Value: "image",
},
cli.StringFlag{
Name: "s3-host",
Usage: "S3 server host",
EnvVar: "MINIO_SERVICE_HOST",
Value: "minio",
},
cli.StringFlag{
Name: "s3-port",
Usage: "S3 server port",
EnvVar: "MINIO_SERVICE_PORT",
},
cli.StringFlag{
Name: "bucket",
Usage: "S3 bucket where the image will be saved",
},
cli.StringFlag{
Name: "access-key, akey",
Usage: "access key for S3 server, required based on command run",
},
cli.StringFlag{
Name: "secret-key, skey",
Usage: "secret key for S3 server, required based on command run",
},
cli.StringFlag{
Name: "log-file",
Usage: "name of log file",
},
cli.StringFlag{
Name: "log-fmt",
Usage: "Format of the web log(optional), default is json",
Value: "json",
},
cli.StringFlag{
Name: "subfolder,sf",
Usage: "Name of the sub-folder where the original images will be uploaded",
Value: "original",
},
cli.StringFlag{
Name: "thumb-folder,tf",
Usage: "Name of the sub-folder where the thumbnail images will be uploaded",
Value: "thumbnail",
},
cli.StringFlag{
Name: "redis-master",
Usage: "redis master host",
Value: "redis-master",
EnvVar: "REDIS_MASTER_SERVICE_HOST",
},
cli.StringFlag{
Name: "redis-master-port",
Usage: "redis master port",
EnvVar: "REDIS_MASTER_SERVICE_PORT",
},
cli.StringFlag{
Name: "redis-slave",
Usage: "redis slave host",
Value: "redis-slave",
EnvVar: "REDIS_SLAVE_SERVICE_HOST",
},
cli.StringFlag{
Name: "redis-slave-port",
Usage: "redis slave host",
EnvVar: "REDIS_SLAVE_SERVICE_PORT",
},
},
},
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}