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 pathutils.go
235 lines (200 loc) · 5.41 KB
/
utils.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
package gdrive
import (
"context"
"encoding/base64"
"fmt"
"io/ioutil"
"strings"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/drive/v3"
"google.golang.org/api/googleapi"
"google.golang.org/api/option"
. "github.com/dgraph-io/ristretto"
ps "github.com/beyondstorage/go-storage/v4/pairs"
"github.com/beyondstorage/go-storage/v4/pkg/credential"
"github.com/beyondstorage/go-storage/v4/pkg/httpclient"
"github.com/beyondstorage/go-storage/v4/services"
"github.com/beyondstorage/go-storage/v4/types"
)
const (
numCounters = 1e7 // number of keys to track frequency of (10M).
maxCost = 1 << 30 // maximum cost of cache (1GB).
bufferItems = 64 // number of keys per Get buffer.
cost = 1
expireTime = 100
)
// Storage is the example client.
type Storage struct {
name string
workDir string
service *drive.Service
cache *Cache
defaultPairs DefaultStoragePairs
features StorageFeatures
types.UnimplementedStorager
types.UnimplementedDirer
types.UnimplementedCopier
}
// String implements Storager.String
func (s *Storage) String() string {
return fmt.Sprintf(
"Storager gdrive {Name: %s, WorkDir: %s}",
s.name, s.workDir,
)
}
// NewStorager will create Storager only.
func NewStorager(pairs ...types.Pair) (types.Storager, error) {
return newStorager(pairs...)
}
func newStorager(pairs ...types.Pair) (store *Storage, err error) {
defer func() {
if err != nil {
err = services.InitError{Op: "new_storager", Type: Type, Err: formatError(err), Pairs: pairs}
}
}()
opt, err := parsePairStorageNew(pairs)
if err != nil {
return nil, err
}
store = &Storage{
name: opt.Name,
workDir: "/",
}
// Init cache for storager
ch, err := initCache(numCounters, maxCost, bufferItems)
if err != nil {
return nil, err
}
store.cache = ch
if opt.HasWorkDir {
store.workDir = opt.WorkDir
}
ctx := context.Background()
// Google drive only support authorized by Oauth2
// Ref:https://developers.google.com/drive/api/v3/about-auth
hc := httpclient.New(opt.HTTPClientOptions)
var credJSON []byte
cp, err := credential.Parse(opt.Credential)
if err != nil {
return nil, err
}
switch cp.Protocol() {
case credential.ProtocolFile:
credJSON, err = ioutil.ReadFile(cp.File())
if err != nil {
return nil, err
}
case credential.ProtocolBase64:
credJSON, err = base64.StdEncoding.DecodeString(cp.Base64())
if err != nil {
return nil, err
}
default:
return nil, services.PairUnsupportedError{Pair: ps.WithCredential(opt.Credential)}
}
// Loading token source from binary data.
// DriveScope means full control of gdrive
creds, err := google.CredentialsFromJSON(ctx, credJSON, drive.DriveScope)
if err != nil {
return nil, err
}
ot := &oauth2.Transport{
Source: creds.TokenSource,
Base: hc.Transport,
}
hc.Transport = ot
store.service, err = drive.NewService(ctx, option.WithHTTPClient(hc))
if err != nil {
return nil, err
}
return store, nil
}
func formatError(err error) error {
if _, ok := err.(services.InternalError); ok {
return err
}
e, ok := err.(*googleapi.Error)
if !ok {
return fmt.Errorf("%w: %v", services.ErrUnexpected, err)
}
// FIXME: find better way to deal with errors.
//Ref: https://developers.google.com/drive/api/v3/handle-errors
switch e.Code {
case 400:
return fmt.Errorf("%w: %v", services.ErrCapabilityInsufficient, err)
case 401:
return fmt.Errorf("%w: %v", credential.ErrInvalidValue, err)
case 403:
return fmt.Errorf("%w: %v", services.ErrRequestThrottled, err)
case 404:
return fmt.Errorf("%w: %v", services.ErrObjectNotExist, err)
case 500:
return fmt.Errorf("%w: %v", services.ErrServiceInternal, err)
default:
return fmt.Errorf("%w: %v", services.ErrUnexpected, err)
}
}
func (s *Storage) formatError(op string, err error, path ...string) error {
if err == nil {
return nil
}
return services.StorageError{
Op: op,
Err: formatError(err),
Storager: s,
Path: path,
}
}
func (s *Storage) newObject(done bool) *types.Object {
return types.NewObject(s, done)
}
// getAbsPath will calculate object storage's abs path
func (s *Storage) getAbsPath(path string) string {
if strings.HasPrefix(path, s.workDir) {
return strings.TrimPrefix(path, "/")
} else if strings.TrimPrefix(s.workDir, "/") == strings.Trim(path, "/") {
return strings.TrimPrefix(s.workDir, "/")
} else if path == "" {
return strings.TrimPrefix(s.workDir, "/")
} else {
prefix := strings.TrimPrefix(s.workDir, "/")
return prefix + "/" + path
}
}
// getRelPath will get object storage's rel path.
func (s *Storage) getRelPath(path string) string {
prefix := strings.TrimPrefix(s.workDir, "/") + "/"
return strings.TrimPrefix(path, prefix)
}
// getFileName will get a file's name without path
func (s *Storage) getFileName(path string) string {
if strings.Contains(path, "/") {
tmp := strings.Split(path, "/")
return tmp[len(tmp)-1]
} else {
return path
}
}
func initCache(nc int64, mc int64, bi int64) (cache *Cache, err error) {
config := &Config{
NumCounters: nc,
MaxCost: mc,
BufferItems: bi,
}
cache, err = NewCache(config)
if err != nil {
return nil, err
}
return cache, nil
}
func (s *Storage) setCache(path string, fileId string) {
s.cache.SetWithTTL(path, fileId, cost, expireTime)
}
func (s *Storage) getCache(path string) (string, bool) {
id, found := s.cache.Get(path)
if found {
return id.(string), true
}
return "", false
}