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 3
/
utils.go
264 lines (220 loc) · 5.73 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
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
package minio
import (
"fmt"
"net/http"
"strings"
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
"github.com/beyondstorage/go-endpoint"
ps "github.com/beyondstorage/go-storage/v4/pairs"
"github.com/beyondstorage/go-storage/v4/pkg/credential"
"github.com/beyondstorage/go-storage/v4/services"
"github.com/beyondstorage/go-storage/v4/types"
)
// Service is the minio service.
type Service struct {
service *minio.Client
defaultPairs DefaultServicePairs
features ServiceFeatures
types.UnimplementedServicer
}
func (s *Service) String() string {
return fmt.Sprintf("Servicer minio")
}
// Storage is the example client.
type Storage struct {
client *minio.Client
bucket string
workDir string
defaultPairs DefaultStoragePairs
features StorageFeatures
types.UnimplementedStorager
types.UnimplementedCopier
types.UnimplementedReacher
}
// String implements Storager.String
func (s *Storage) String() string {
return fmt.Sprintf(
"Storager minio {Name: %s, WorkDir: %s}",
s.bucket, s.workDir,
)
}
func New(pairs ...types.Pair) (types.Servicer, types.Storager, error) {
return newServicerAndStorager(pairs...)
}
func NewServicer(pairs ...types.Pair) (types.Servicer, error) {
return newServicer(pairs...)
}
// NewStorager will create Storager only.
func NewStorager(pairs ...types.Pair) (types.Storager, error) {
_, store, err := newServicerAndStorager(pairs...)
return store, err
}
func newServicer(pairs ...types.Pair) (srv *Service, err error) {
defer func() {
if err != nil {
err = services.InitError{Op: "new_servicer", Type: Type, Err: formatError(err), Pairs: pairs}
}
}()
srv = &Service{}
opt, err := parsePairServiceNew(pairs)
if err != nil {
return nil, err
}
cp, err := credential.Parse(opt.Credential)
if err != nil {
return nil, err
}
if cp.Protocol() != credential.ProtocolHmac {
return nil, services.PairUnsupportedError{Pair: ps.WithCredential(opt.Credential)}
}
ak, sk := cp.Hmac()
ep, err := endpoint.Parse(opt.Endpoint)
if err != nil {
return nil, err
}
var host string
var port int
var secure bool
switch ep.Protocol() {
case endpoint.ProtocolHTTP:
_, host, port = ep.HTTP()
secure = false
case endpoint.ProtocolHTTPS:
_, host, port = ep.HTTPS()
secure = true
default:
return nil, services.PairUnsupportedError{Pair: ps.WithEndpoint(opt.Endpoint)}
}
url := fmt.Sprintf("%s:%d", host, port)
srv.service, err = minio.New(url, &minio.Options{
Creds: credentials.NewStaticV4(ak, sk, ""),
Secure: secure,
})
if err != nil {
return nil, err
}
if opt.HasDefaultServicePairs {
srv.defaultPairs = opt.DefaultServicePairs
}
if opt.HasServiceFeatures {
srv.features = opt.ServiceFeatures
}
return
}
func newServicerAndStorager(pairs ...types.Pair) (srv *Service, store *Storage, err error) {
srv, err = newServicer(pairs...)
if err != nil {
return
}
store, err = srv.newStorage(pairs...)
if err != nil {
err = services.InitError{Op: "new_storager", Type: Type, Err: formatError(err), Pairs: pairs}
return nil, nil, err
}
return srv, store, nil
}
func formatError(err error) error {
if _, ok := err.(services.InternalError); ok {
return err
}
e, ok := err.(minio.ErrorResponse)
if ok {
switch e.Code {
case "AccessDenied":
return fmt.Errorf("%w, %v", services.ErrPermissionDenied, err)
case "NoSuchKey":
return fmt.Errorf("%w, %v", services.ErrObjectNotExist, err)
case "InternalError":
return fmt.Errorf("%w, %v", services.ErrServiceInternal, err)
}
switch e.StatusCode {
case http.StatusTooManyRequests:
return fmt.Errorf("%w, %v", services.ErrRequestThrottled, err)
case http.StatusServiceUnavailable:
return fmt.Errorf("%w, %v", services.ErrRequestThrottled, err)
}
}
return fmt.Errorf("%w, %v", services.ErrUnexpected, err)
}
func (s *Service) newStorage(pairs ...types.Pair) (st *Storage, err error) {
opt, err := parsePairStorageNew(pairs)
if err != nil {
return nil, err
}
store := &Storage{
client: s.service,
bucket: opt.Name,
workDir: "/",
}
if opt.HasWorkDir {
if !strings.HasSuffix(opt.WorkDir, "/") {
opt.WorkDir += "/"
}
store.workDir = opt.WorkDir
}
if opt.HasDefaultStoragePairs {
store.defaultPairs = opt.DefaultStoragePairs
}
if opt.HasStorageFeatures {
store.features = opt.StorageFeatures
}
return store, nil
}
func (s *Service) formatError(op string, err error, name string) error {
if err == nil {
return nil
}
return services.ServiceError{
Op: op,
Err: formatError(err),
Servicer: s,
Name: name,
}
}
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,
}
}
// 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, "/")
}
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)
}
func (s *Storage) formatFileObject(v minio.ObjectInfo) (o *types.Object, err error) {
o = s.newObject(true)
if v.ETag == "" {
o.Mode |= types.ModeDir
} else {
o.Mode |= types.ModeRead
}
o.SetID(v.Key)
o.SetPath(s.getRelPath(v.Key))
o.SetEtag(v.ETag)
o.SetContentLength(v.Size)
o.SetContentType(v.ContentType)
o.SetLastModified(v.LastModified)
o.SetUserMetadata(v.UserMetadata)
o.SetSystemMetadata(ObjectSystemMetadata{
StorageClass: v.StorageClass,
})
return
}
func (s *Storage) newObject(done bool) *types.Object {
return types.NewObject(s, done)
}