-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbucket.go
416 lines (351 loc) · 12.8 KB
/
bucket.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
package s2
import (
"encoding/xml"
"net/http"
"time"
"github.com/gorilla/mux"
"github.com/sirupsen/logrus"
)
const (
// defaultMaxKeys specifies the maximum number of keys returned in object
// listings by default
defaultMaxKeys int = 1000
// VersioningDisabled specifies that versioning is not enabled on a bucket
VersioningDisabled string = ""
// VersioningDisabled specifies that versioning is suspended on a bucket
VersioningSuspended string = "Suspended"
// VersioningDisabled specifies that versioning is enabled on a bucket
VersioningEnabled string = "Enabled"
)
// Contents is an individual file/object
type Contents struct {
// Key specifies the object key
Key string `xml:"Key"`
// LastModified specifies when the object was last modified
LastModified time.Time `xml:"LastModified"`
// ETag is a hex encoding of the hash of the object contents, with or
// without surrounding quotes.
ETag string `xml:"ETag"`
// Size specifies the size of the object
Size uint64 `xml:"Size"`
// StorageClass specifies the storage class used for the object
StorageClass string `xml:"StorageClass"`
// Owner specifies the owner of the object
Owner User `xml:"Owner"`
}
// CommonPrefixes specifies a common prefix of S3 keys. This is akin to a
// directory.
type CommonPrefixes struct {
// Prefix specifies the common prefix value.
Prefix string `xml:"Prefix"`
// Owner specifies the owner of the object
Owner User `xml:"Owner"`
}
// DeleteMarker specifies an object that has been deleted from a
// versioning-enabled bucket.
type DeleteMarker struct {
// Key specifies the object key
Key string `xml:"Key"`
// Version is the version of the object, or an empty string if versioning
// is not enabled or supported.
Version string `xml:"VersionId"`
// IsLatest specifies whether this is the latest version of the object.
IsLatest bool `xml:"IsLatest"`
// LastModified specifies when the object was last modified
LastModified time.Time `xml:"LastModified"`
// Owner specifies the owner of the object
Owner User `xml:"Owner"`
}
// Version specifies a specific version of an object in a
// versioning-enabled bucket.
type Version struct {
// Key specifies the object key
Key string `xml:"Key"`
// Version is the version of the object, or an empty string if versioning
// is not enabled or supported.
Version string `xml:"VersionId"`
// IsLatest specifies whether this is the latest version of the object.
IsLatest bool `xml:"IsLatest"`
// LastModified specifies when the object was last modified
LastModified time.Time `xml:"LastModified"`
// ETag is a hex encoding of the hash of the object contents, with or
// without surrounding quotes.
ETag string `xml:"ETag"`
// Size specifies the size of the object
Size uint64 `xml:"Size"`
// StorageClass specifies the storage class used for the object
StorageClass string `xml:"StorageClass"`
// Owner specifies the owner of the object
Owner User `xml:"Owner"`
}
// ListObjectsResult is a response from a ListObjects call
type ListObjectsResult struct {
// Contents are the list of objects returned
Contents []*Contents
// CommonPrefixes are the list of common prefixes returned
CommonPrefixes []*CommonPrefixes
// IsTruncated specifies whether this is the end of the list or not
IsTruncated bool
}
// ListObjectVersionsResult is a response from a ListObjectVersions call
type ListObjectVersionsResult struct {
// Versions are the list of versions returned
Versions []*Version
// DeleteMarkers are the list of delete markers returned
DeleteMarkers []*DeleteMarker
// IsTruncated specifies whether this is the end of the list or not
IsTruncated bool
}
// BucketController is an interface that specifies bucket-level functionality.
type BucketController interface {
// GetLocation gets the location of a bucket
GetLocation(r *http.Request, bucket string) (string, error)
// ListObjects lists objects within a bucket
ListObjects(r *http.Request, bucket, prefix, marker, delimiter string, maxKeys int) (*ListObjectsResult, error)
// ListObjectVersions lists objects' versions within a bucket
ListObjectVersions(r *http.Request, bucket, prefix, keyMarker, versionMarker string, delimiter string, maxKeys int) (*ListObjectVersionsResult, error)
// CreateBucket creates a bucket
CreateBucket(r *http.Request, bucket string) error
// DeleteBucket deletes a bucket
DeleteBucket(r *http.Request, bucket string) error
// GetBucketVersioning gets the state of versioning on the given bucket
GetBucketVersioning(r *http.Request, bucket string) (string, error)
// SetBucketVersioning sets the state of versioning on the given bucket
SetBucketVersioning(r *http.Request, bucket, status string) error
}
// unimplementedBucketController defines a controller that returns
// `NotImplementedError` for all functionality
type unimplementedBucketController struct{}
func (c unimplementedBucketController) GetLocation(r *http.Request, bucket string) (string, error) {
return "", NotImplementedError(r)
}
func (c unimplementedBucketController) ListObjects(r *http.Request, bucket, prefix, marker, delimiter string, maxKeys int) (*ListObjectsResult, error) {
return nil, NotImplementedError(r)
}
func (c unimplementedBucketController) ListObjectVersions(r *http.Request, bucket, prefix, keyMarker, versionMarker string, delimiter string, maxKeys int) (*ListObjectVersionsResult, error) {
return nil, NotImplementedError(r)
}
func (c unimplementedBucketController) CreateBucket(r *http.Request, bucket string) error {
return NotImplementedError(r)
}
func (c unimplementedBucketController) DeleteBucket(r *http.Request, bucket string) error {
return NotImplementedError(r)
}
func (c unimplementedBucketController) GetBucketVersioning(r *http.Request, bucket string) (string, error) {
return "", NotImplementedError(r)
}
func (c unimplementedBucketController) SetBucketVersioning(r *http.Request, bucket, status string) error {
return NotImplementedError(r)
}
type bucketHandler struct {
controller BucketController
logger *logrus.Entry
}
func (h *bucketHandler) location(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
location, err := h.controller.GetLocation(r, bucket)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
writeXML(h.logger, w, r, http.StatusOK, struct {
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ LocationConstraint"`
Location string `xml:",innerxml"`
}{
Location: location,
})
}
func (h *bucketHandler) get(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
// hadoop's S3 client could make requests with max-keys=5000
maxKeys, err := intFormValue(r, "max-keys", 0, 5000, defaultMaxKeys)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
prefix := r.FormValue("prefix")
marker := r.FormValue("marker")
delimiter := r.FormValue("delimiter")
result, err := h.controller.ListObjects(r, bucket, prefix, marker, delimiter, maxKeys)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
// some clients (e.g. minio-python) can't handle sub-seconds in datetime
// output
for _, contents := range result.Contents {
contents.LastModified = contents.LastModified.UTC().Round(time.Second)
}
for _, c := range result.Contents {
c.ETag = addETagQuotes(c.ETag)
}
marshallable := struct {
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ListBucketResult"`
Contents []*Contents `xml:"Contents"`
CommonPrefixes []*CommonPrefixes `xml:"CommonPrefixes"`
Delimiter string `xml:"Delimiter,omitempty"`
IsTruncated bool `xml:"IsTruncated"`
Marker string `xml:"Marker"`
MaxKeys int `xml:"MaxKeys"`
Name string `xml:"Name"`
NextMarker string `xml:"NextMarker,omitempty"`
Prefix string `xml:"Prefix"`
}{
Name: bucket,
Prefix: prefix,
Marker: marker,
Delimiter: delimiter,
MaxKeys: maxKeys,
IsTruncated: result.IsTruncated,
Contents: result.Contents,
CommonPrefixes: result.CommonPrefixes,
}
if marshallable.IsTruncated {
high := ""
for _, contents := range marshallable.Contents {
if contents.Key > high {
high = contents.Key
}
}
for _, commonPrefix := range marshallable.CommonPrefixes {
if commonPrefix.Prefix > high {
high = commonPrefix.Prefix
}
}
marshallable.NextMarker = high
}
writeXML(h.logger, w, r, http.StatusOK, marshallable)
}
func (h *bucketHandler) put(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
if err := h.controller.CreateBucket(r, bucket); err != nil {
WriteError(h.logger, w, r, err)
return
}
w.WriteHeader(http.StatusOK)
}
func (h *bucketHandler) del(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
if err := h.controller.DeleteBucket(r, bucket); err != nil {
WriteError(h.logger, w, r, err)
return
}
w.WriteHeader(http.StatusNoContent)
}
func (h *bucketHandler) versioning(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
status, err := h.controller.GetBucketVersioning(r, bucket)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
result := struct {
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ VersioningConfiguration"`
Status string `xml:"Status,omitempty"`
}{
Status: status,
}
writeXML(h.logger, w, r, http.StatusOK, result)
}
func (h *bucketHandler) setVersioning(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
payload := struct {
XMLName xml.Name `xml:"VersioningConfiguration"`
Status string `xml:"Status"`
}{}
if err := readXMLBody(r, &payload); err != nil {
WriteError(h.logger, w, r, err)
return
}
if payload.Status != VersioningDisabled && payload.Status != VersioningSuspended && payload.Status != VersioningEnabled {
WriteError(h.logger, w, r, IllegalVersioningConfigurationError(r))
return
}
err := h.controller.SetBucketVersioning(r, bucket, payload.Status)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
w.WriteHeader(http.StatusOK)
}
func (h *bucketHandler) listVersions(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
bucket := vars["bucket"]
maxKeys, err := intFormValue(r, "max-keys", 0, defaultMaxKeys, defaultMaxKeys)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
prefix := r.FormValue("prefix")
keyMarker := r.FormValue("key-marker")
versionIDMarker := r.FormValue("version-id-marker")
delimiter := r.FormValue("delimiter")
result, err := h.controller.ListObjectVersions(r, bucket, prefix, keyMarker, versionIDMarker, delimiter, maxKeys)
if err != nil {
WriteError(h.logger, w, r, err)
return
}
// some clients (e.g. minio-python) can't handle sub-seconds in datetime
// output
for _, version := range result.Versions {
version.LastModified = version.LastModified.UTC().Round(time.Second)
}
for _, deleteMarker := range result.DeleteMarkers {
deleteMarker.LastModified = deleteMarker.LastModified.UTC().Round(time.Second)
}
for _, v := range result.Versions {
v.ETag = addETagQuotes(v.ETag)
}
marshallable := struct {
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ListVersionsResult"`
Delimiter string `xml:"Delimiter,omitempty"`
IsTruncated bool `xml:"IsTruncated"`
KeyMarker string `xml:"KeyMarker"`
NextKeyMarker string `xml:"NextKeyMarker,omitempty"`
MaxKeys int `xml:"MaxKeys"`
Name string `xml:"Name"`
VersionIDMarker string `xml:"VersionIdKeyMarker"`
NextVersionIDMarker string `xml:"NextVersionIdKeyMarker,omitempty"`
Prefix string `xml:"Prefix"`
Versions []*Version `xml:"Version"`
DeleteMarkers []*DeleteMarker `xml:"DeleteMarker"`
}{
IsTruncated: result.IsTruncated,
KeyMarker: keyMarker,
MaxKeys: maxKeys,
Name: bucket,
VersionIDMarker: versionIDMarker,
Prefix: prefix,
Versions: result.Versions,
DeleteMarkers: result.DeleteMarkers,
}
if marshallable.IsTruncated {
highKey := ""
highVersion := ""
for _, version := range marshallable.Versions {
if version.Key > highKey {
highKey = version.Key
}
if version.Version > highVersion {
highVersion = version.Version
}
}
for _, deleteMarker := range marshallable.DeleteMarkers {
if deleteMarker.Key > highKey {
highKey = deleteMarker.Key
}
if deleteMarker.Version > highVersion {
highVersion = deleteMarker.Version
}
}
marshallable.NextKeyMarker = highKey
marshallable.NextVersionIDMarker = highVersion
}
writeXML(h.logger, w, r, http.StatusOK, marshallable)
}