This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
generated from beyondstorage/go-service-example
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstorage.go
375 lines (305 loc) · 9.04 KB
/
storage.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
package gdrive
import (
"context"
"fmt"
"io"
"path/filepath"
"strings"
"google.golang.org/api/drive/v3"
"github.com/beyondstorage/go-storage/v4/pkg/iowrap"
"github.com/beyondstorage/go-storage/v4/services"
. "github.com/beyondstorage/go-storage/v4/types"
)
const directoryMimeType = "application/vnd.google-apps.folder"
func (s *Storage) copy(ctx context.Context, src string, dst string, opt pairStorageCopy) (err error) {
var dstFile *drive.File
srcFileId, err := s.pathToId(ctx, src)
if err != nil {
return err
}
dstFileId, err := s.pathToId(ctx, dst)
if err != nil {
return err
}
// FIXME: I don't know how to directly copy a file into an existing one
if dstFileId != "" {
err = s.service.Files.Delete(dstFileId).Do()
if err != nil {
return err
}
}
dstFile = &drive.File{
Name: s.getFileName(dst),
}
_, err = s.service.Files.Copy(srcFileId, dstFile).Context(ctx).Do()
if err != nil {
return err
}
return nil
}
func (s *Storage) create(path string, opt pairStorageCreate) (o *Object) {
o = s.newObject(false)
o.ID = s.getAbsPath(path)
o.Path = path
return o
}
func (s *Storage) createDir(ctx context.Context, path string, opt pairStorageCreateDir) (o *Object, err error) {
_, err = s.createDirs(ctx, path)
if err != nil {
return nil, err
}
o = s.newObject(true)
o.ID = s.getAbsPath(path)
o.Path = path
o.Mode = ModeDir
return o, nil
}
// This function is very similar to `createDir` but has different uses. Unlike `creatDir`, it
// is mainly responsible for communicating with gdrive API
func (s *Storage) createDirs(ctx context.Context, path string) (parentsId string, err error) {
pathUnits := strings.Split(path, "/")
parentsId = "root"
for _, v := range pathUnits {
// TODO: use `strings.Split` to split path is not perfect, maybe
// we should add a helper function to do this.
if v != "" {
parentsId, err = s.mkDir(ctx, parentsId, v)
if err != nil {
return "", err
}
}
}
return parentsId, nil
}
func (s *Storage) delete(ctx context.Context, path string, opt pairStorageDelete) (err error) {
var fileId string
fileId, err = s.pathToId(ctx, path)
if err != nil {
return err
}
err = s.service.Files.Delete(fileId).Do()
// Omit `path_lookup/not_found` error here.
// ref: [GSP-46](https://github.com/beyondstorage/specs/blob/master/rfcs/46-idempotent-delete.md)
if err != nil && strings.Contains(err.Error(), "404") {
err = nil
}
if err != nil {
return err
}
return nil
}
func (s *Storage) list(ctx context.Context, path string, opt pairStorageList) (oi *ObjectIterator, err error) {
input := &objectPageStatus{
limit: 200,
path: s.getAbsPath(path),
}
if !opt.HasListMode || opt.ListMode.IsDir() {
return NewObjectIterator(ctx, s.nextObjectPage, input), nil
} else {
return nil, services.ListModeInvalidError{Actual: opt.ListMode}
}
}
func (s *Storage) metadata(opt pairStorageMetadata) (meta *StorageMeta) {
meta = NewStorageMeta()
meta.Name = s.name
meta.WorkDir = s.workDir
return meta
}
// Create a directory by passing it's name and the parents' fileId.
// It will return the fileId of the directory whether it exist or not.
// If error occurs, it will return an empty string and error.
func (s *Storage) mkDir(ctx context.Context, parents string, dirName string) (string, error) {
id, err := s.searchContentInDir(ctx, parents, dirName)
if err != nil {
return "", err
}
// Simply return the fileId if the directory already exist
if id != "" {
return id, nil
}
// create a directory if not exist
dir := &drive.File{
Name: dirName,
Parents: []string{parents},
MimeType: directoryMimeType,
}
f, err := s.service.Files.Create(dir).Context(ctx).Do()
if err != nil {
return "", err
}
return f.Id, nil
}
func (s *Storage) nextObjectPage(ctx context.Context, page *ObjectPage) (err error) {
input := page.Status.(*objectPageStatus)
var dirId string
dirId, err = s.pathToId(ctx, input.path)
if err != nil {
return err
}
q := s.service.Files.List().Q(fmt.Sprintf("parents='%s'", dirId)).Fields("*")
if input.pageToken != "" {
q = q.PageToken(input.pageToken)
}
r, err := q.Do()
if err != nil {
return err
}
if len(r.Files) == 0 {
return IterateDone
}
for _, f := range r.Files {
o := s.newObject(true)
o.SetContentLength(f.Size)
o.Path = f.Name
switch f.MimeType {
case directoryMimeType:
o.Mode = ModeDir
default:
o.Mode = ModeRead
}
page.Data = append(page.Data, o)
}
input.pageToken = r.NextPageToken
return nil
}
// pathToId converts path to fileId, as we discussed in RFC-14.
// Ref: https://github.com/beyondstorage/go-service-gdrive/blob/master/docs/rfcs/14-gdrive-for-go-storage-design.md
// Behavior:
// err represents the error handled in pathToId
// fileId represents the results: fileId empty means the path is not exist, otherwise it's the fileId of input path
func (s *Storage) pathToId(ctx context.Context, path string) (fileId string, err error) {
path = s.getAbsPath(path)
fileId, found := s.getCache(path)
if found {
return fileId, nil
}
pathUnits := strings.Split(path, "/")
fileId = "root"
cacheCurrentPath := ""
// Traverse the whole path, break the loop if we fails at one search
for _, v := range pathUnits {
fileId, err = s.searchContentInDir(ctx, fileId, v)
if fileId == "" || err != nil {
break
}
if cacheCurrentPath == "" {
cacheCurrentPath = v
} else {
cacheCurrentPath += "/" + v
}
s.setCache(cacheCurrentPath, fileId)
}
if err != nil {
return "", err
}
return fileId, nil
}
func (s *Storage) read(ctx context.Context, path string, w io.Writer, opt pairStorageRead) (n int64, err error) {
fileId, err := s.pathToId(ctx, path)
if err != nil {
return 0, err
}
fileGetCall := s.service.Files.Get(fileId)
if opt.HasOffset && !opt.HasSize {
rangeBytes := fmt.Sprintf("bytes=%d-", opt.Offset)
fileGetCall.Header().Add("Range", rangeBytes)
} else if !opt.HasOffset && opt.HasSize {
rangeBytes := fmt.Sprintf("bytes=0-%d", opt.Size-1)
fileGetCall.Header().Add("Range", rangeBytes)
} else if opt.HasOffset && opt.HasSize {
rangeBytes := fmt.Sprintf("bytes=%d-%d", opt.Offset, opt.Offset+opt.Size-1)
fileGetCall.Header().Add("Range", rangeBytes)
}
f, err := fileGetCall.Context(ctx).Download()
if err != nil {
return 0, err
}
var rc io.ReadCloser
rc = f.Body
if opt.HasIoCallback {
rc = iowrap.CallbackReadCloser(rc, opt.IoCallback)
}
return io.Copy(w, rc)
}
// Search something in directory by passing it's name and the fileId of the folder.
// It will return the fileId of the content we want, and nil for sure.
// If nothing is found, we will return an empty string and nil.
// We will only return non nil if error occurs.
func (s *Storage) searchContentInDir(ctx context.Context, dirId string, contentName string) (fileId string, err error) {
searchArg := fmt.Sprintf("name = '%s' and parents = '%s'", contentName, dirId)
fileList, err := s.service.Files.List().Context(ctx).Q(searchArg).Fields("*").Do()
if err != nil {
return "", err
}
// Because we assume that the path is unique, so there would be only two results: One file matches or none
if len(fileList.Files) == 0 {
return "", nil
}
return fileList.Files[0].Id, nil
}
func (s *Storage) stat(ctx context.Context, path string, opt pairStorageStat) (o *Object, err error) {
content, err := s.pathToId(ctx, path)
if content == "" {
return nil, services.ErrObjectNotExist
}
if err != nil {
return nil, err
}
rp := s.getAbsPath(path)
o = s.newObject(true)
o.ID = rp
o.Path = path
//TODO: Just a temporary hack, maybe add a helper function to do this?
file, _ := s.service.Files.Get(content).Context(ctx).Fields("*").Do()
if file.MimeType == directoryMimeType {
o.Mode |= ModeDir
}
o.SetContentLength(file.Size)
return o, nil
}
// First we need make sure this file is not exist.
// If it is, then we upload it, or we will overwrite it.
func (s *Storage) write(ctx context.Context, path string, r io.Reader, size int64, opt pairStorageWrite) (n int64, err error) {
// According to GSP-751, we should allow the user to pass in a nil io.Reader.
// ref: https://github.com/beyondstorage/go-storage/blob/master/docs/rfcs/751-write-empty-file-behavior.md
if r == nil && size != 0 {
return 0, fmt.Errorf("reader is nil but size is not nil")
}
// Parent directory of the file
var parentsId string
r = io.LimitReader(r, size)
if opt.HasIoCallback {
r = iowrap.CallbackReader(r, opt.IoCallback)
}
fileId, err := s.pathToId(ctx, path)
if err != nil {
return 0, err
}
// fileId can be empty when err is nil
if fileId == "" {
// upload
dirs, fileName := filepath.Split(s.getAbsPath(path))
if dirs != "" {
parentsId, err = s.createDirs(ctx, dirs)
if err != nil {
return 0, err
}
}
file := &drive.File{
Name: fileName,
Parents: []string{parentsId},
}
_, err = s.service.Files.Create(file).Context(ctx).Media(r).Do()
if err != nil {
return 0, err
}
} else {
// update
newFile := &drive.File{Name: s.getFileName(path)}
_, err = s.service.Files.Update(fileId, newFile).Context(ctx).Media(r).Do()
if err != nil {
return 0, err
}
}
return size, nil
}