-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdrive.go
497 lines (427 loc) · 11.9 KB
/
gdrive.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
package boxes
import (
"bytes"
"encoding/json"
"errors"
"fmt"
log "github.com/sirupsen/logrus"
"secrets/config"
"strings"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/drive/v3"
"google.golang.org/api/option"
)
var notFound = errors.New("Record not found.")
var foundMany = errors.New("Found more then one record.")
const ROOTID string = "root"
type DriveBox struct {
Box
token *oauth2.Token
}
// Refresh google auth token
func GRefreshAuth() (*oauth2.Token, error) {
oauthConfig, err := getConfig(config.CredentialsFile)
if err != nil {
return nil, err
}
return refreshToken(oauthConfig)
}
func GUrlAuth() (string, error) {
oauthConfig, err := getConfig(config.CredentialsFile)
if err != nil {
log.Debug(err)
return "", err
}
authURL := oauthConfig.AuthCodeURL("state-token", oauth2.AccessTypeOffline)
return authURL, nil
}
// Read a file from google drive
func (box DriveBox) ReadBoxItem() (string, error) {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
"itemName": box.itemName,
}).Info("Reading google drive secret box ")
gconfig, err := getConfig(config.CredentialsFile)
if err != nil {
return "", err
}
ctx := context.Background()
srv, err := drive.NewService(ctx, option.WithTokenSource(gconfig.TokenSource(ctx, box.token)))
if err != nil {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
"itemName": box.itemName,
}).Warn("Could not initialize a google client.")
return "", err
}
parentId, err := getDirId(srv, box)
if err != nil {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
"itemName": box.itemName,
}).Warn("Dir id not found")
return "", err
}
if box.itemName == "" {
return "", errors.New("Item name not defined")
}
item := addSufix(box.itemName)
itemId, err := getItemGId(srv, parentId, item)
if err != nil {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": item,
}).Debug("Error happen when try get the google id ")
return "", err
}
return fetchRemoteFile(srv, itemId)
}
// Write the content item into a file in the box path in subdir of box name
func (box DriveBox) WriteBoxItem(content string) error {
gconfig, err := getConfig(config.CredentialsFile)
if err != nil {
panic("error to write")
}
ctx := context.Background()
srv, err := drive.NewService(ctx, option.WithTokenSource(gconfig.TokenSource(ctx, box.token)))
if err != nil {
log.Fatal(err.Error())
}
parentId, err := ensureDirs(srv, box)
if err != nil {
return err
}
log.WithFields(log.Fields{
"parentId": parentId,
}).Debug("Creating file")
if box.itemName == "" {
return errors.New("Item name not defined")
}
item := addSufix(box.itemName)
return upsert(srv, parentId, item, content)
}
func fetchRemoteFile(service *drive.Service, itemId string) (string, error) {
http, err := service.Files.Get(itemId).Download()
if err != nil {
log.WithFields(log.Fields{
"itemName": itemId,
}).Debug("HTTP drive file retrive error ", itemId)
return "", err
}
defer http.Body.Close()
buff := new(bytes.Buffer)
buff.ReadFrom(http.Body)
content := buff.String()
log.WithFields(log.Fields{
"itemName": itemId,
}).Info("File fetched from google drive")
return content, nil
}
func getDirId(service *drive.Service, box DriveBox) (string, error) {
path, _ := gdirExpansion(box.boxPath)
finalPath := path + "/" + box.boxName
finalPath = strings.Trim(finalPath, "/")
// there is no boxPath or boxName set use root dir
if finalPath == "" {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
}).Info("Final path is a empty string, using the root dir")
return ROOTID, nil
}
paths := strings.Split(finalPath, "/")
parentId := ROOTID
for _, path := range paths {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": path,
}).Debug("Get dir id")
id, err := getItemGId(service, parentId, path)
if err != nil {
return "", err
}
parentId = id
}
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": finalPath,
}).Debug("Found the final id")
return parentId, nil
}
func ensureDirs(service *drive.Service, box DriveBox) (string, error) {
path, _ := gdirExpansion(box.boxPath)
finalPath := path + "/" + box.boxName
finalPath = strings.Trim(finalPath, "/")
// there is no boxPath or boxName set use root dir
if finalPath == "" {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
}).Info("Final path is a empty string, using the root dir")
return ROOTID, nil
}
paths := strings.Split(finalPath, "/")
parentId := ROOTID
var subPath int
for subPath = 0; subPath < len(paths); subPath++ {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
}).Debug("Searching id ", paths[subPath])
id, err := getItemGId(service, parentId, paths[subPath])
if err == notFound {
log.WithFields(log.Fields{
"boxPath": box.boxPath,
"boxName": box.boxName,
}).Warn("Subpath does not exists, it will try to create ", strings.Join(paths[subPath:], "/"))
break
} else if err != nil {
return "", err
}
parentId = id
}
if subPath == len(paths) {
log.WithFields(log.Fields{
"parentId": parentId}).Debug("Subpath final parent id ", parentId)
return parentId, nil
} else {
// it creates missing dirs or just return the parent id
return createDirs(service, parentId, paths[subPath:])
}
}
func createDirs(service *drive.Service, parentId string, names []string) (string, error) {
for _, name := range names {
dir, err := createDir(service, parentId, name)
if err != nil {
return "", err
}
parentId = dir.Id
}
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": strings.Join(names, "/"),
}).Info("Created missing paths")
return parentId, nil
}
func createDir(service *drive.Service, parentId, name string) (*drive.File, error) {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": name,
}).Debug("Creating folder ")
d := &drive.File{
Name: name,
MimeType: "application/vnd.google-apps.folder",
Parents: []string{parentId},
}
file, err := service.Files.Create(d).Do()
if err != nil {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": name,
}).Debug("Could not create dir")
return nil, err
}
return file, nil
}
// insert or update a item
func upsert(service *drive.Service, parentId, itemName, content string) error {
gid, err := getItemGId(service, parentId, itemName)
// found item do a update
if err == nil {
file, err := updateFile(service, gid, itemName, content)
if err != nil {
return err
}
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": file.Id,
"name": file.Name,
}).Info("Update file")
} else { // some other error happens, try to create new the file
file, err := createFile(service, itemName, content, parentId)
if err != nil {
return err
}
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": file.Id,
"name": file.Name,
}).Info("Created file ")
}
return nil
}
// Retrieve a google id for a given item name
func getItemGId(service *drive.Service, parentId, itemName string) (string, error) {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": itemName,
}).Debug("Finding file on drive")
flCall := service.Files.List().PageSize(10).
Fields("files(id, name)").
Q("name = '" + itemName + "' and '" + parentId + "' in parents")
r, err := flCall.Do()
if err != nil {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": itemName,
}).Debug("Unable to get id request")
return "", err
}
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": itemName,
}).Debug("Found files ", len(r.Files))
switch len(r.Files) {
case 0:
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": itemName,
}).Warn("Item not found on box. ")
return "", notFound
case 1:
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": r.Files[0].Id,
}).Debug("Found the file ")
return r.Files[0].Id, nil
default: // should use the last one ordered by modification date
for _, f := range r.Files {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": f.Name,
}).Debug("Files: ", parentId, " / ", f.Id, " (", f.Name, ")")
}
return "", foundMany
}
}
func ExchangeToken(authCode string) (string, error) {
oauthConfig, err := getConfig(config.CredentialsFile)
if err != nil {
return "", err
}
token, err := oauthConfig.Exchange(context.TODO(), authCode)
tokenJson, err := json.Marshal(token)
if err != nil {
return "", err
}
return string(tokenJson), nil
}
// Retrieve a token, saves the token or load from cache.
func getToken(oauthConfig *oauth2.Config) (*oauth2.Token, error) {
log.Warn("Deprecated")
token, err := TokenFromFile(config.TokenFile)
if err != nil {
log.Error(err.Error())
return refreshToken(oauthConfig)
}
return token, nil
}
func refreshToken(oauthConfig *oauth2.Config) (*oauth2.Token, error) {
log.Warn("Deprecated")
token := getTokenFromWeb(oauthConfig)
log.Debug("Saving credential file.")
tokenJson, err := json.Marshal(token)
if err != nil {
log.Debug("Could not parse the token")
return nil, err
}
err = WriteIntoFile(config.TokenFile, string(tokenJson))
return token, err
}
// Request a token from the web, then returns the retrieved token.
func getTokenFromWeb(oauthConfig *oauth2.Config) *oauth2.Token {
log.Warn("Deprecated")
authURL := oauthConfig.AuthCodeURL("state-token", oauth2.AccessTypeOffline)
fmt.Printf("Authorization URL\n%v\nAuthorization code:\n", authURL)
var authCode string
if _, err := fmt.Scan(&authCode); err != nil {
log.Fatal("Unable to read authorization code %v", err)
}
tok, err := oauthConfig.Exchange(context.TODO(), authCode)
if err != nil {
log.Fatal("Unable to retrieve token from web %v", err)
}
return tok
}
// Retrieves a token from a local file.
func TokenFromFile(file string) (*oauth2.Token, error) {
log.Warn("Deprecated")
jsonToken, err := ReadFromFile(file)
if err != nil {
log.WithFields(log.Fields{
"file": file,
}).Warn("Token not retrieved from file")
return nil, err
}
tok := &oauth2.Token{}
err = json.Unmarshal([]byte(jsonToken), tok)
if err != nil {
log.WithFields(log.Fields{
"file": file,
}).Warn("Could not Unmarshal json token")
return nil, err
}
if tok.Valid() {
log.WithFields(log.Fields{
"file": file,
}).Debug("Token from file is ok!")
return tok, nil
} else {
return nil, errors.New("Token is invalid or expired")
}
}
func getConfig(credentialsFile string) (*oauth2.Config, error) {
b, err := ReadFromFile(credentialsFile)
if err != nil {
return nil, err
}
// If modifying these scopes, delete your previously saved token.json.
config, err := google.ConfigFromJSON([]byte(b), drive.DriveFileScope)
if err != nil {
log.WithFields(log.Fields{
"file": credentialsFile,
}).Warn("Unable to parse client secret file to config")
return nil, err
}
return config, nil
}
// update files not change the parent ID
func updateFile(service *drive.Service, gid, name, content string) (*drive.File, error) {
f := &drive.File{
Name: name,
}
ioContent := strings.NewReader(content)
file, err := service.Files.Update(gid, f).Media(ioContent).Do()
if err != nil {
log.WithFields(log.Fields{
"itemName": gid,
"name": name,
}).Debug("Could not update file: " + err.Error())
return nil, err
}
return file, nil
}
func createFile(service *drive.Service, name, content, parentId string) (*drive.File, error) {
f := &drive.File{
Name: name,
Parents: []string{parentId},
}
ioContent := strings.NewReader(content)
file, err := service.Files.Create(f).Media(ioContent).Do()
if err != nil {
log.WithFields(log.Fields{
"parentId": parentId,
"itemName": name,
}).Debug("Could not create file")
return nil, err
}
return file, nil
}
func gdirExpansion(path string) (string, error) {
return strings.Trim(path, "~/"), nil
}