2015-02-23 19:46:48 -05:00
|
|
|
/*
|
2015-07-24 20:51:40 -04:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-02-23 19:46:48 -05:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
2015-10-16 14:26:01 -04:00
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implieapi.Filesystem.
|
2015-02-23 19:46:48 -05:00
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-09-19 03:52:01 -04:00
|
|
|
package main
|
2015-02-15 20:03:27 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2016-02-07 06:37:54 -05:00
|
|
|
"net/url"
|
2015-05-04 02:16:10 -04:00
|
|
|
"strconv"
|
2015-02-15 20:03:27 -05:00
|
|
|
|
2015-08-22 21:34:00 -04:00
|
|
|
"github.com/gorilla/mux"
|
2015-10-16 22:09:35 -04:00
|
|
|
"github.com/minio/minio/pkg/fs"
|
2015-05-09 22:39:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
maxPartsList = 1000
|
2015-02-15 20:03:27 -05:00
|
|
|
)
|
|
|
|
|
2016-02-07 06:37:54 -05:00
|
|
|
// supportedGetReqParams - supported request parameters for GET
|
|
|
|
// presigned request.
|
|
|
|
var supportedGetReqParams = map[string]string{
|
|
|
|
"response-expires": "Expires",
|
|
|
|
"response-content-type": "Content-Type",
|
|
|
|
"response-cache-control": "Cache-Control",
|
|
|
|
"response-content-disposition": "Content-Disposition",
|
|
|
|
}
|
|
|
|
|
|
|
|
// setResponseHeaders - set any requested parameters as response headers.
|
|
|
|
func setResponseHeaders(w http.ResponseWriter, reqParams url.Values) {
|
|
|
|
for k, v := range reqParams {
|
|
|
|
if header, ok := supportedGetReqParams[k]; ok {
|
|
|
|
w.Header()[header] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// GetObjectHandler - GET Object
|
2015-02-23 19:46:48 -05:00
|
|
|
// ----------
|
|
|
|
// This implementation of the GET operation retrieves object. To use GET,
|
|
|
|
// you must have READ access to the object.
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) GetObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2015-04-22 19:28:13 -04:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-02-15 20:03:27 -05:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-04-22 22:29:39 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if !isSignV4ReqAuthenticated(api.Signature, r) {
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
metadata, err := api.Filesystem.GetObjectMetadata(bucket, object)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "GetObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-08-03 19:17:21 -04:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
var hrange *httpRange
|
2016-02-15 20:42:39 -05:00
|
|
|
hrange, err = getRequestedRange(r.Header.Get("Range"), metadata.Size)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidRange, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
return
|
|
|
|
}
|
2016-02-07 06:37:54 -05:00
|
|
|
|
|
|
|
// Set standard object headers.
|
2015-09-19 06:20:07 -04:00
|
|
|
setObjectHeaders(w, metadata, hrange)
|
2016-02-07 06:37:54 -05:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Set any additional ruested response headers.
|
|
|
|
setResponseHeaders(w, r.URL.Query())
|
2016-02-07 06:37:54 -05:00
|
|
|
|
|
|
|
// Get the object.
|
2015-10-16 14:26:01 -04:00
|
|
|
if _, err = api.Filesystem.GetObject(w, bucket, object, hrange.start, hrange.length); err != nil {
|
2015-09-19 06:20:07 -04:00
|
|
|
errorIf(err.Trace(), "GetObject failed.", nil)
|
|
|
|
return
|
2015-07-02 23:31:22 -04:00
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// HeadObjectHandler - HEAD Object
|
2015-02-23 19:46:48 -05:00
|
|
|
// -----------
|
|
|
|
// The HEAD operation retrieves metadata from an object without returning the object itself.
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) HeadObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2015-04-22 19:28:13 -04:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-02-15 20:03:27 -05:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if !isSignV4ReqAuthenticated(api.Signature, r) {
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
metadata, err := api.Filesystem.GetObjectMetadata(bucket, object)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
setObjectHeaders(w, metadata, nil)
|
|
|
|
w.WriteHeader(http.StatusOK)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// PutObjectHandler - PUT Object
|
2015-02-23 19:46:48 -05:00
|
|
|
// ----------
|
|
|
|
// This implementation of the PUT operation adds an object to a bucket.
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) PutObjectHandler(w http.ResponseWriter, r *http.Request) {
|
2015-02-15 20:03:27 -05:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-02-15 20:03:27 -05:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-04-22 22:29:39 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-22 19:28:13 -04:00
|
|
|
// get Content-MD5 sent by client and verify if valid
|
2016-02-15 20:42:39 -05:00
|
|
|
md5 := r.Header.Get("Content-MD5")
|
2015-04-22 19:28:13 -04:00
|
|
|
if !isValidMD5(md5) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidDigest, r.URL.Path)
|
2015-04-22 19:28:13 -04:00
|
|
|
return
|
|
|
|
}
|
2015-12-28 02:00:36 -05:00
|
|
|
/// if Content-Length is unknown/missing, deny the request
|
2016-02-15 20:42:39 -05:00
|
|
|
size := r.ContentLength
|
|
|
|
if size == -1 && !contains(r.TransferEncoding, "chunked") {
|
|
|
|
writeErrorResponse(w, r, MissingContentLength, r.URL.Path)
|
2015-04-29 05:19:51 -04:00
|
|
|
return
|
|
|
|
}
|
2015-04-29 13:51:59 -04:00
|
|
|
/// maximum Upload size for objects in a single operation
|
2015-04-29 05:19:51 -04:00
|
|
|
if isMaxObjectSize(size) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, EntityTooLarge, r.URL.Path)
|
2015-04-29 05:19:51 -04:00
|
|
|
return
|
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Set http request for signature.
|
|
|
|
api.Signature.SetHTTPRequestToVerify(r)
|
2015-07-09 17:42:04 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Create object.
|
|
|
|
metadata, err := api.Filesystem.CreateObject(bucket, object, md5, size, r.Body, api.Signature)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CreateObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-17 22:17:33 -04:00
|
|
|
case fs.RootPathFull:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, RootPathFull, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BadDigest:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, BadDigest, r.URL.Path)
|
|
|
|
case fs.SignDoesNotMatch:
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.IncompleteBody:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, IncompleteBody, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidDigest:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidDigest, r.URL.Path)
|
2016-02-02 18:23:28 -05:00
|
|
|
case fs.ObjectExistsAsPrefix:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, ObjectExistsAsPrefix, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-02-05 05:15:48 -05:00
|
|
|
if metadata.MD5 != "" {
|
|
|
|
w.Header().Set("ETag", "\""+metadata.MD5+"\"")
|
2016-02-01 15:19:54 -05:00
|
|
|
}
|
2016-01-08 03:40:06 -05:00
|
|
|
writeSuccessResponse(w, nil)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
|
2015-10-17 22:17:33 -04:00
|
|
|
/// Multipart CloudStorageAPI
|
2015-06-08 14:06:06 -04:00
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// NewMultipartUploadHandler - New multipart upload
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) NewMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
|
2015-05-07 22:55:30 -04:00
|
|
|
var object, bucket string
|
2016-02-15 20:42:39 -05:00
|
|
|
vars := mux.Vars(r)
|
2015-05-07 22:55:30 -04:00
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if !isSignV4ReqAuthenticated(api.Signature, r) {
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
uploadID, err := api.Filesystem.NewMultipartUpload(bucket, object)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "NewMultipartUpload failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-17 22:17:33 -04:00
|
|
|
case fs.RootPathFull:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, RootPathFull, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
|
|
|
|
response := generateInitiateMultipartUploadResponse(bucket, object, uploadID)
|
2015-10-04 03:27:49 -04:00
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response)
|
2015-09-19 06:20:07 -04:00
|
|
|
// write headers
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
|
|
|
// write success response.
|
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// PutObjectPartHandler - Upload part
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) PutObjectPartHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
2015-10-16 22:09:35 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-16 22:09:35 -04:00
|
|
|
// get Content-MD5 sent by client and verify if valid
|
2016-02-15 20:42:39 -05:00
|
|
|
md5 := r.Header.Get("Content-MD5")
|
2015-10-16 22:09:35 -04:00
|
|
|
if !isValidMD5(md5) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidDigest, r.URL.Path)
|
2015-10-16 22:09:35 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-28 02:00:36 -05:00
|
|
|
/// if Content-Length is unknown/missing, throw away
|
2016-02-15 20:42:39 -05:00
|
|
|
size := r.ContentLength
|
2015-12-28 02:00:36 -05:00
|
|
|
if size == -1 {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, MissingContentLength, r.URL.Path)
|
2015-12-28 02:00:36 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-08 01:43:19 -04:00
|
|
|
/// maximum Upload size for multipart objects in a single operation
|
2015-05-07 22:55:30 -04:00
|
|
|
if isMaxObjectSize(size) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, EntityTooLarge, r.URL.Path)
|
2015-05-07 22:55:30 -04:00
|
|
|
return
|
|
|
|
}
|
2015-04-30 19:29:03 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
uploadID := r.URL.Query().Get("uploadId")
|
|
|
|
partIDString := r.URL.Query().Get("partNumber")
|
2015-05-09 22:39:00 -04:00
|
|
|
|
2015-08-03 19:17:21 -04:00
|
|
|
var partID int
|
|
|
|
{
|
|
|
|
var err error
|
|
|
|
partID, err = strconv.Atoi(partIDString)
|
|
|
|
if err != nil {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidPart, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
return
|
2015-08-03 19:17:21 -04:00
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Set http request.
|
|
|
|
api.Signature.SetHTTPRequestToVerify(r)
|
2015-07-09 22:01:15 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
calculatedMD5, err := api.Filesystem.CreateObjectPart(bucket, object, uploadID, md5, partID, size, r.Body, api.Signature)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CreateObjectPart failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-17 22:17:33 -04:00
|
|
|
case fs.RootPathFull:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, RootPathFull, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchUpload, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BadDigest:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, BadDigest, r.URL.Path)
|
|
|
|
case fs.SignDoesNotMatch:
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.IncompleteBody:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, IncompleteBody, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidDigest:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidDigest, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-02-01 15:19:54 -05:00
|
|
|
if calculatedMD5 != "" {
|
|
|
|
w.Header().Set("ETag", "\""+calculatedMD5+"\"")
|
|
|
|
}
|
2016-01-08 03:40:06 -05:00
|
|
|
writeSuccessResponse(w, nil)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// AbortMultipartUploadHandler - Abort multipart upload
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) AbortMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
2015-05-09 19:06:35 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if !isSignV4ReqAuthenticated(api.Signature, r) {
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
objectResourcesMetadata := getObjectResources(r.URL.Query())
|
2015-10-16 14:26:01 -04:00
|
|
|
err := api.Filesystem.AbortMultipartUpload(bucket, object, objectResourcesMetadata.UploadID)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "AbortMutlipartUpload failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchUpload, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-10-16 23:02:37 -04:00
|
|
|
writeSuccessNoContent(w)
|
2015-05-09 19:06:35 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// ListObjectPartsHandler - List object parts
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) ListObjectPartsHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
2015-10-16 22:09:35 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if !isSignV4ReqAuthenticated(api.Signature, r) {
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
objectResourcesMetadata := getObjectResources(r.URL.Query())
|
2015-07-16 20:22:45 -04:00
|
|
|
if objectResourcesMetadata.PartNumberMarker < 0 {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidPartNumberMarker, r.URL.Path)
|
2015-07-16 20:22:45 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if objectResourcesMetadata.MaxParts < 0 {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidMaxParts, r.URL.Path)
|
2015-07-16 20:22:45 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-09 22:39:00 -04:00
|
|
|
if objectResourcesMetadata.MaxParts == 0 {
|
|
|
|
objectResourcesMetadata.MaxParts = maxPartsList
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
objectResourcesMetadata, err := api.Filesystem.ListObjectParts(bucket, object, objectResourcesMetadata)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "ListObjectParts failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchUpload, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2015-09-19 06:20:07 -04:00
|
|
|
response := generateListPartsResponse(objectResourcesMetadata)
|
2015-10-04 03:27:49 -04:00
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response)
|
2016-01-08 03:40:06 -05:00
|
|
|
// write headers.
|
|
|
|
setCommonHeaders(w)
|
|
|
|
// write success response.
|
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
2015-05-09 14:41:26 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// CompleteMultipartUploadHandler - Complete multipart upload
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) CompleteMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
2015-05-07 22:55:30 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
2015-06-30 17:42:29 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Set http request for signature.
|
|
|
|
api.Signature.SetHTTPRequestToVerify(r)
|
|
|
|
|
|
|
|
// Extract object resources.
|
|
|
|
objectResourcesMetadata := getObjectResources(r.URL.Query())
|
2015-10-07 02:32:20 -04:00
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
// Complete multipart upload.
|
|
|
|
metadata, err := api.Filesystem.CompleteMultipartUpload(bucket, object, objectResourcesMetadata.UploadID, r.Body, api.Signature)
|
2015-09-19 06:20:07 -04:00
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "CompleteMultipartUpload failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidUploadID:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchUpload, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidPart:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidPart, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.InvalidPartOrder:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidPartOrder, r.URL.Path)
|
|
|
|
case fs.SignDoesNotMatch:
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.IncompleteBody:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, IncompleteBody, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.MalformedXML:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, MalformedXML, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-09-19 06:20:07 -04:00
|
|
|
}
|
2015-08-03 19:17:21 -04:00
|
|
|
return
|
|
|
|
}
|
2016-02-15 20:42:39 -05:00
|
|
|
response := generateCompleteMultpartUploadResponse(bucket, object, r.URL.String(), metadata.MD5)
|
2015-10-04 03:27:49 -04:00
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response)
|
2015-09-19 06:20:07 -04:00
|
|
|
// write headers
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
|
|
|
// write success response.
|
|
|
|
writeSuccessResponse(w, encodedSuccessResponse)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-06-08 14:06:06 -04:00
|
|
|
|
2015-10-17 22:17:33 -04:00
|
|
|
/// Delete CloudStorageAPI
|
2015-06-08 14:06:06 -04:00
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// DeleteObjectHandler - Delete object
|
2016-02-15 20:42:39 -05:00
|
|
|
func (api CloudStorageAPI) DeleteObjectHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vars := mux.Vars(r)
|
2015-10-16 14:26:01 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if isRequestRequiresACLCheck(r) {
|
2016-02-04 15:52:25 -05:00
|
|
|
if api.Filesystem.IsPrivateBucket(bucket) || api.Filesystem.IsReadOnlyBucket(bucket) {
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, AccessDenied, r.URL.Path)
|
2016-02-04 15:52:25 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:42:39 -05:00
|
|
|
if !isSignV4ReqAuthenticated(api.Signature, r) {
|
|
|
|
writeErrorResponse(w, r, SignatureDoesNotMatch, r.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
err := api.Filesystem.DeleteObject(bucket, object)
|
|
|
|
if err != nil {
|
|
|
|
errorIf(err.Trace(), "DeleteObject failed.", nil)
|
|
|
|
switch err.ToGoError().(type) {
|
|
|
|
case fs.BucketNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InvalidBucketName, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.BucketNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchBucket, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNotFound:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
case fs.ObjectNameInvalid:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, NoSuchKey, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
default:
|
2016-02-15 20:42:39 -05:00
|
|
|
writeErrorResponse(w, r, InternalError, r.URL.Path)
|
2015-10-16 14:26:01 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-16 23:02:37 -04:00
|
|
|
writeSuccessNoContent(w)
|
2015-06-08 14:06:06 -04:00
|
|
|
}
|