forked from prasmussen/gdrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.go
342 lines (285 loc) · 7.95 KB
/
cli.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
package cli
import (
"code.google.com/p/google-api-go-client/drive/v2"
"fmt"
"github.com/prasmussen/gdrive/gdrive"
"github.com/prasmussen/gdrive/util"
"io"
"mime"
"os"
"path/filepath"
"strings"
)
func List(d *gdrive.Drive, query, titleFilter string, maxResults int, sharedStatus bool, noHeader bool) error {
caller := d.Files.List()
if maxResults > 0 {
caller.MaxResults(int64(maxResults))
}
if titleFilter != "" {
q := fmt.Sprintf("title contains '%s'", titleFilter)
caller.Q(q)
}
if query != "" {
caller.Q(query)
}
list, err := caller.Do()
if err != nil {
return err
}
items := make([]map[string]string, 0, 0)
for _, f := range list.Items {
// Skip files that dont have a download url (they are not stored on google drive)
if f.DownloadUrl == "" {
if f.MimeType != "application/vnd.google-apps.folder" {
continue
}
}
if f.Labels.Trashed {
continue
}
items = append(items, map[string]string{
"Id": f.Id,
"Title": util.TruncateString(f.Title, 40),
"Size": util.FileSizeFormat(f.FileSize),
"Created": util.ISODateToLocal(f.CreatedDate),
})
}
columnOrder := []string{"Id", "Title", "Size", "Created"}
if sharedStatus {
addSharedStatus(d, items)
columnOrder = append(columnOrder, "Shared")
}
util.PrintColumns(items, columnOrder, 3, noHeader)
return nil
}
// Adds the key-value-pair 'Shared: True/False' to the map
func addSharedStatus(d *gdrive.Drive, items []map[string]string) {
// Limit to 10 simultaneous requests
active := make(chan bool, 10)
done := make(chan bool)
// Closure that performs the check
checkStatus := func(item map[string]string) {
// Wait for an empty spot in the active queue
active <- true
// Perform request
shared := isShared(d, item["Id"])
item["Shared"] = util.FormatBool(shared)
// Decrement the active queue and notify that we are done
<-active
done <- true
}
// Go, go, go!
for _, item := range items {
go checkStatus(item)
}
// Wait for all goroutines to finish
for i := 0; i < len(items); i++ {
<-done
}
}
func Info(d *gdrive.Drive, fileId string) error {
info, err := d.Files.Get(fileId).Do()
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
printInfo(d, info)
return nil
}
func printInfo(d *gdrive.Drive, f *drive.File) {
fields := map[string]string{
"Id": f.Id,
"Title": f.Title,
"Description": f.Description,
"Size": util.FileSizeFormat(f.FileSize),
"Created": util.ISODateToLocal(f.CreatedDate),
"Modified": util.ISODateToLocal(f.ModifiedDate),
"Owner": strings.Join(f.OwnerNames, ", "),
"Md5sum": f.Md5Checksum,
"Shared": util.FormatBool(isShared(d, f.Id)),
"Parents": util.ParentList(f.Parents),
}
order := []string{
"Id",
"Title",
"Description",
"Size",
"Created",
"Modified",
"Owner",
"Md5sum",
"Shared",
"Parents",
}
util.Print(fields, order)
}
// Create folder in drive
func Folder(d *gdrive.Drive, title string, parentId string, share bool) error {
// File instance
f := &drive.File{Title: title, MimeType: "application/vnd.google-apps.folder"}
// Set parent (if provided)
if parentId != "" {
p := &drive.ParentReference{Id: parentId}
f.Parents = []*drive.ParentReference{p}
}
// Create folder
info, err := d.Files.Insert(f).Do()
if err != nil {
return fmt.Errorf("An error occurred creating the folder: %v\n", err)
}
// Share folder if the share flag was provided
if share {
Share(d, info.Id)
}
printInfo(d, info)
fmt.Printf("Folder '%s' created\n", info.Title)
return nil
}
// Upload file to drive
func Upload(d *gdrive.Drive, input io.ReadCloser, title string, parentId string, share bool, mimeType string) error {
// Use filename or 'untitled' as title if no title is specified
if title == "" {
if f, ok := input.(*os.File); ok && input != os.Stdin {
title = filepath.Base(f.Name())
} else {
title = "untitled"
}
}
if mimeType == "" {
mimeType = mime.TypeByExtension(filepath.Ext(title))
}
// File instance
f := &drive.File{Title: title, MimeType: mimeType}
// Set parent (if provided)
if parentId != "" {
p := &drive.ParentReference{Id: parentId}
f.Parents = []*drive.ParentReference{p}
}
getRate := util.MeasureTransferRate()
info, err := d.Files.Insert(f).Media(input).Do()
if err != nil {
return fmt.Errorf("An error occurred uploading the document: %v\n", err)
}
// Total bytes transferred
bytes := info.FileSize
// Print information about uploaded file
printInfo(d, info)
fmt.Printf("MIME Type: %s\n", mimeType)
fmt.Printf("Uploaded '%s' at %s, total %s\n", info.Title, getRate(bytes), util.FileSizeFormat(bytes))
// Share file if the share flag was provided
if share {
err = Share(d, info.Id)
}
return err
}
func DownloadLatest(d *gdrive.Drive, stdout bool) error {
list, err := d.Files.List().Do()
if err != nil {
return err
}
if len(list.Items) == 0 {
return fmt.Errorf("No files found")
}
latestId := list.Items[0].Id
return Download(d, latestId, stdout, true)
}
// Download file from drive
func Download(d *gdrive.Drive, fileId string, stdout, deleteAfterDownload bool) error {
// Get file info
info, err := d.Files.Get(fileId).Do()
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
if info.DownloadUrl == "" {
// If there is no DownloadUrl, there is no body
return fmt.Errorf("An error occurred: File is not downloadable")
}
// Measure transfer rate
getRate := util.MeasureTransferRate()
// GET the download url
res, err := d.Client().Get(info.DownloadUrl)
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
// Close body on function exit
defer res.Body.Close()
// Write file content to stdout
if stdout {
io.Copy(os.Stdout, res.Body)
return nil
}
// Check if file exists
if util.FileExists(info.Title) {
return fmt.Errorf("An error occurred: '%s' already exists\n", info.Title)
}
// Create a new file
outFile, err := os.Create(info.Title)
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
// Close file on function exit
defer outFile.Close()
// Save file to disk
bytes, err := io.Copy(outFile, res.Body)
if err != nil {
return fmt.Errorf("An error occurred: %s", err)
}
fmt.Printf("Downloaded '%s' at %s, total %s\n", info.Title, getRate(bytes), util.FileSizeFormat(bytes))
if deleteAfterDownload {
err = Delete(d, fileId)
}
return err
}
// Delete file with given file id
func Delete(d *gdrive.Drive, fileId string) error {
info, err := d.Files.Get(fileId).Do()
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
if err := d.Files.Delete(fileId).Do(); err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
fmt.Printf("Removed file '%s'\n", info.Title)
return nil
}
// Make given file id readable by anyone -- auth not required to view/download file
func Share(d *gdrive.Drive, fileId string) error {
info, err := d.Files.Get(fileId).Do()
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
perm := &drive.Permission{
Value: "me",
Type: "anyone",
Role: "reader",
}
if _, err := d.Permissions.Insert(fileId, perm).Do(); err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
fmt.Printf("File '%s' is now readable by everyone @ %s\n", info.Title, util.PreviewUrl(fileId))
return nil
}
// Removes the 'anyone' permission -- auth will be required to view/download file
func Unshare(d *gdrive.Drive, fileId string) error {
info, err := d.Files.Get(fileId).Do()
if err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
if err := d.Permissions.Delete(fileId, "anyone").Do(); err != nil {
return fmt.Errorf("An error occurred: %v\n", err)
}
fmt.Printf("File '%s' is no longer shared to 'anyone'\n", info.Title)
return nil
}
func isShared(d *gdrive.Drive, fileId string) bool {
r, err := d.Permissions.List(fileId).Do()
if err != nil {
fmt.Printf("An error occurred: %v\n", err)
os.Exit(1)
}
for _, perm := range r.Items {
if perm.Type == "anyone" {
return true
}
}
return false
}