2015-02-23 19:46:48 -05:00
|
|
|
/*
|
2015-03-19 17:35:50 -04:00
|
|
|
* Minimalist Object 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-07-02 23:31:22 -04:00
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implieapi.Donut.
|
2015-02-23 19:46:48 -05:00
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-03-18 20:49:33 -04:00
|
|
|
package api
|
2015-02-15 20:03:27 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2015-05-08 05:02:51 -04:00
|
|
|
"sort"
|
2015-05-04 02:16:10 -04:00
|
|
|
"strconv"
|
2015-02-15 20:03:27 -05:00
|
|
|
|
2015-05-07 22:55:30 -04:00
|
|
|
"encoding/xml"
|
2015-05-08 01:43:19 -04:00
|
|
|
|
2015-02-15 20:03:27 -05:00
|
|
|
"github.com/gorilla/mux"
|
2015-07-03 03:29:54 -04:00
|
|
|
"github.com/minio/minio/pkg/donut"
|
2015-05-11 19:23:10 -04:00
|
|
|
"github.com/minio/minio/pkg/iodine"
|
|
|
|
"github.com/minio/minio/pkg/utils/log"
|
2015-05-09 22:39:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
maxPartsList = 1000
|
2015-02-15 20:03:27 -05:00
|
|
|
)
|
|
|
|
|
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.
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) GetObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-04-23 04:20:03 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-22 19:28:13 -04:00
|
|
|
var object, bucket string
|
2015-02-15 20:03:27 -05:00
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-04-22 22:29:39 -04:00
|
|
|
|
2015-07-02 23:31:22 -04:00
|
|
|
metadata, err := api.Donut.GetObjectMetadata(bucket, object)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil: // success
|
|
|
|
{
|
|
|
|
httpRange, err := getRequestedRange(req, metadata.Size)
|
|
|
|
if err != nil {
|
|
|
|
writeErrorResponse(w, req, InvalidRange, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch httpRange.start == 0 && httpRange.length == 0 {
|
|
|
|
case true:
|
|
|
|
setObjectHeaders(w, metadata)
|
|
|
|
if _, err := api.Donut.GetObject(w, bucket, object); err != nil {
|
|
|
|
// unable to write headers, we've already printed data. Just close the connection.
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
}
|
|
|
|
case false:
|
|
|
|
metadata.Size = httpRange.length
|
|
|
|
setRangeObjectHeaders(w, metadata, httpRange)
|
|
|
|
w.WriteHeader(http.StatusPartialContent)
|
|
|
|
if _, err := api.Donut.GetPartialObject(w, bucket, object, httpRange.start, httpRange.length); err != nil {
|
|
|
|
// unable to write headers, we've already printed data. Just close the connection.
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-03 03:29:54 -04:00
|
|
|
case donut.BucketNameInvalid:
|
|
|
|
writeErrorResponse(w, req, InvalidBucketName, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.BucketNotFound:
|
|
|
|
writeErrorResponse(w, req, NoSuchBucket, acceptsContentType, req.URL.Path)
|
2015-07-02 23:31:22 -04:00
|
|
|
case donut.ObjectNotFound:
|
|
|
|
writeErrorResponse(w, req, NoSuchKey, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.ObjectNameInvalid:
|
|
|
|
writeErrorResponse(w, req, NoSuchKey, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
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.
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) HeadObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-04-23 04:20:03 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-04-22 19:28:13 -04:00
|
|
|
var object, bucket string
|
2015-02-15 20:03:27 -05:00
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
metadata, err := api.Donut.GetObjectMetadata(bucket, object)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
setObjectHeaders(w, metadata)
|
|
|
|
w.WriteHeader(http.StatusOK)
|
2015-07-03 03:29:54 -04:00
|
|
|
case donut.BucketNameInvalid:
|
|
|
|
error := getErrorCode(InvalidBucketName)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
|
|
|
case donut.BucketNotFound:
|
|
|
|
error := getErrorCode(NoSuchBucket)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
2015-07-02 23:31:22 -04:00
|
|
|
case donut.ObjectNotFound:
|
|
|
|
error := getErrorCode(NoSuchKey)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
|
|
|
case donut.ObjectNameInvalid:
|
|
|
|
error := getErrorCode(NoSuchKey)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
error := getErrorCode(InternalError)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
|
|
|
}
|
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.
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) PutObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// Ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
|
|
|
|
2015-07-02 23:31:22 -04:00
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-04-23 04:20:03 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-15 20:03:27 -05:00
|
|
|
var object, bucket string
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-04-22 22:29:39 -04:00
|
|
|
|
2015-04-22 19:28:13 -04:00
|
|
|
// get Content-MD5 sent by client and verify if valid
|
2015-03-17 16:32:10 -04:00
|
|
|
md5 := req.Header.Get("Content-MD5")
|
2015-04-22 19:28:13 -04:00
|
|
|
if !isValidMD5(md5) {
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, InvalidDigest, acceptsContentType, req.URL.Path)
|
2015-04-22 19:28:13 -04:00
|
|
|
return
|
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
/// if Content-Length missing, deny the request
|
2015-04-29 05:19:51 -04:00
|
|
|
size := req.Header.Get("Content-Length")
|
|
|
|
if size == "" {
|
2015-05-04 02:16:10 -04:00
|
|
|
writeErrorResponse(w, req, MissingContentLength, acceptsContentType, req.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) {
|
|
|
|
writeErrorResponse(w, req, EntityTooLarge, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2015-04-29 13:51:59 -04:00
|
|
|
/// minimum Upload size for objects in a single operation
|
2015-05-23 15:15:13 -04:00
|
|
|
//
|
|
|
|
// Surprisingly while Amazon in their document states that S3 objects have 1byte
|
|
|
|
// as the minimum limit, they do not seem to enforce it one can successfully
|
|
|
|
// create a 0byte file using a regular putObject() operation
|
|
|
|
//
|
|
|
|
// if isMinObjectSize(size) {
|
|
|
|
// writeErrorResponse(w, req, EntityTooSmall, acceptsContentType, req.URL.Path)
|
|
|
|
// return
|
|
|
|
// }
|
2015-05-08 01:43:19 -04:00
|
|
|
sizeInt64, err := strconv.ParseInt(size, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
writeErrorResponse(w, req, InvalidRequest, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
metadata, err := api.Donut.CreateObject(bucket, object, md5, sizeInt64, req.Body, nil)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
w.Header().Set("ETag", metadata.MD5Sum)
|
|
|
|
writeSuccessResponse(w, acceptsContentType)
|
2015-07-03 03:29:54 -04:00
|
|
|
case donut.BucketNotFound:
|
|
|
|
writeErrorResponse(w, req, NoSuchBucket, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.BucketNameInvalid:
|
|
|
|
writeErrorResponse(w, req, InvalidBucketName, acceptsContentType, req.URL.Path)
|
2015-07-02 23:31:22 -04:00
|
|
|
case donut.ObjectExists:
|
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.BadDigest:
|
|
|
|
writeErrorResponse(w, req, BadDigest, acceptsContentType, req.URL.Path)
|
2015-07-08 23:18:32 -04:00
|
|
|
case donut.IncompleteBody:
|
|
|
|
writeErrorResponse(w, req, IncompleteBody, acceptsContentType, req.URL.Path)
|
2015-07-02 23:31:22 -04:00
|
|
|
case donut.EntityTooLarge:
|
|
|
|
writeErrorResponse(w, req, EntityTooLarge, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.InvalidDigest:
|
|
|
|
writeErrorResponse(w, req, InvalidDigest, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
|
2015-06-08 14:06:06 -04:00
|
|
|
/// Multipart API
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// NewMultipartUploadHandler - New multipart upload
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) NewMultipartUploadHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// Ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-05-07 22:55:30 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-14 20:07:30 -04:00
|
|
|
if !isRequestUploads(req.URL.Query()) {
|
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-07 22:55:30 -04:00
|
|
|
var object, bucket string
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
uploadID, err := api.Donut.NewMultipartUpload(bucket, object, "")
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
{
|
|
|
|
response := generateInitiateMultipartUploadResult(bucket, object, uploadID)
|
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response, acceptsContentType)
|
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), len(encodedSuccessResponse))
|
|
|
|
// write body
|
|
|
|
w.Write(encodedSuccessResponse)
|
|
|
|
}
|
|
|
|
case donut.ObjectExists:
|
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// PutObjectPartHandler - Upload part
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) PutObjectPartHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// Ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-05-07 22:55:30 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// get Content-MD5 sent by client and verify if valid
|
|
|
|
md5 := req.Header.Get("Content-MD5")
|
|
|
|
if !isValidMD5(md5) {
|
|
|
|
writeErrorResponse(w, req, InvalidDigest, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2015-04-30 19:29:03 -04:00
|
|
|
|
2015-05-07 22:55:30 -04:00
|
|
|
/// if Content-Length missing, throw away
|
|
|
|
size := req.Header.Get("Content-Length")
|
|
|
|
if size == "" {
|
|
|
|
writeErrorResponse(w, req, MissingContentLength, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2015-04-30 19:29:03 -04:00
|
|
|
|
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) {
|
|
|
|
writeErrorResponse(w, req, EntityTooLarge, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2015-04-30 19:29:03 -04:00
|
|
|
|
2015-05-08 01:43:19 -04:00
|
|
|
sizeInt64, err := strconv.ParseInt(size, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
writeErrorResponse(w, req, InvalidRequest, acceptsContentType, req.URL.Path)
|
2015-05-07 22:55:30 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-09 22:39:00 -04:00
|
|
|
|
2015-05-07 22:55:30 -04:00
|
|
|
vars := mux.Vars(req)
|
2015-05-09 22:39:00 -04:00
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2015-05-10 14:30:03 -04:00
|
|
|
uploadID := req.URL.Query().Get("uploadId")
|
|
|
|
partIDString := req.URL.Query().Get("partNumber")
|
2015-05-09 22:39:00 -04:00
|
|
|
|
2015-05-07 22:55:30 -04:00
|
|
|
partID, err := strconv.Atoi(partIDString)
|
|
|
|
if err != nil {
|
2015-05-08 01:43:19 -04:00
|
|
|
writeErrorResponse(w, req, InvalidPart, acceptsContentType, req.URL.Path)
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
calculatedMD5, err := api.Donut.CreateObjectPart(bucket, object, uploadID, partID, "", md5, sizeInt64, req.Body)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
w.Header().Set("ETag", calculatedMD5)
|
|
|
|
writeSuccessResponse(w, acceptsContentType)
|
|
|
|
case donut.InvalidUploadID:
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.ObjectExists:
|
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.BadDigest:
|
|
|
|
writeErrorResponse(w, req, BadDigest, acceptsContentType, req.URL.Path)
|
2015-07-08 23:18:32 -04:00
|
|
|
case donut.IncompleteBody:
|
|
|
|
writeErrorResponse(w, req, IncompleteBody, acceptsContentType, req.URL.Path)
|
2015-07-02 23:31:22 -04:00
|
|
|
case donut.EntityTooLarge:
|
|
|
|
writeErrorResponse(w, req, EntityTooLarge, acceptsContentType, req.URL.Path)
|
|
|
|
case donut.InvalidDigest:
|
|
|
|
writeErrorResponse(w, req, InvalidDigest, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// AbortMultipartUploadHandler - Abort multipart upload
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) AbortMultipartUploadHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// Ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-05-14 20:07:30 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-13 15:19:41 -04:00
|
|
|
|
2015-05-09 19:06:35 -04:00
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
|
|
|
|
2015-07-02 23:31:22 -04:00
|
|
|
objectResourcesMetadata := getObjectResources(req.URL.Query())
|
|
|
|
|
|
|
|
err := api.Donut.AbortMultipartUpload(bucket, object, objectResourcesMetadata.UploadID)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), 0)
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
case donut.InvalidUploadID:
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 19:06:35 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// ListObjectPartsHandler - List object parts
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) ListObjectPartsHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// Ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-05-14 20:07:30 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-13 15:19:41 -04:00
|
|
|
|
2015-05-09 22:39:00 -04:00
|
|
|
objectResourcesMetadata := getObjectResources(req.URL.Query())
|
|
|
|
if objectResourcesMetadata.MaxParts == 0 {
|
|
|
|
objectResourcesMetadata.MaxParts = maxPartsList
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
|
2015-05-14 20:07:30 -04:00
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
objectResourcesMetadata, err := api.Donut.ListObjectParts(bucket, object, objectResourcesMetadata)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
{
|
|
|
|
response := generateListPartsResult(objectResourcesMetadata)
|
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response, acceptsContentType)
|
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), len(encodedSuccessResponse))
|
|
|
|
// write body
|
|
|
|
w.Write(encodedSuccessResponse)
|
|
|
|
}
|
|
|
|
case donut.InvalidUploadID:
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// CompleteMultipartUploadHandler - Complete multipart upload
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) CompleteMultipartUploadHandler(w http.ResponseWriter, req *http.Request) {
|
2015-07-02 23:31:22 -04:00
|
|
|
// Ticket master block
|
2015-07-02 18:40:16 -04:00
|
|
|
{
|
2015-07-02 23:31:22 -04:00
|
|
|
op := Operation{}
|
|
|
|
op.ProceedCh = make(chan struct{})
|
|
|
|
api.OP <- op
|
|
|
|
// block until Ticket master gives us a go
|
|
|
|
<-op.ProceedCh
|
2015-07-02 18:40:16 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-06-30 23:15:48 -04:00
|
|
|
if !api.isValidOp(w, req, acceptsContentType) {
|
2015-05-14 20:07:30 -04:00
|
|
|
return
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
|
|
|
|
decoder := xml.NewDecoder(req.Body)
|
|
|
|
parts := &CompleteMultipartUpload{}
|
|
|
|
err := decoder.Decode(parts)
|
|
|
|
if err != nil {
|
2015-05-09 20:42:14 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-05-07 22:55:30 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
2015-05-08 01:43:19 -04:00
|
|
|
return
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-05-08 05:02:51 -04:00
|
|
|
if !sort.IsSorted(completedParts(parts.Part)) {
|
|
|
|
writeErrorResponse(w, req, InvalidPartOrder, acceptsContentType, req.URL.Path)
|
|
|
|
return
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket := vars["bucket"]
|
|
|
|
object := vars["object"]
|
2015-06-30 17:42:29 -04:00
|
|
|
|
2015-07-02 23:31:22 -04:00
|
|
|
objectResourcesMetadata := getObjectResources(req.URL.Query())
|
2015-05-07 22:55:30 -04:00
|
|
|
|
2015-05-08 06:31:43 -04:00
|
|
|
partMap := make(map[int]string)
|
2015-05-07 22:55:30 -04:00
|
|
|
for _, part := range parts.Part {
|
|
|
|
partMap[part.PartNumber] = part.ETag
|
|
|
|
}
|
2015-05-09 22:39:00 -04:00
|
|
|
|
2015-07-02 23:31:22 -04:00
|
|
|
metadata, err := api.Donut.CompleteMultipartUpload(bucket, object, objectResourcesMetadata.UploadID, partMap)
|
|
|
|
switch iodine.ToError(err).(type) {
|
|
|
|
case nil:
|
|
|
|
{
|
|
|
|
response := generateCompleteMultpartUploadResult(bucket, object, "", metadata.MD5Sum)
|
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response, acceptsContentType)
|
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), len(encodedSuccessResponse))
|
|
|
|
// write body
|
|
|
|
w.Write(encodedSuccessResponse)
|
|
|
|
}
|
|
|
|
case donut.InvalidUploadID:
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
default:
|
|
|
|
log.Error.Println(iodine.New(err, nil))
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
2015-06-08 14:06:06 -04:00
|
|
|
|
|
|
|
/// Delete API
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// DeleteBucketHandler - Delete bucket
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) DeleteBucketHandler(w http.ResponseWriter, req *http.Request) {
|
2015-06-08 14:06:06 -04:00
|
|
|
error := getErrorCode(NotImplemented)
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
|
|
|
}
|
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// DeleteObjectHandler - Delete object
|
2015-07-02 18:40:16 -04:00
|
|
|
func (api Minio) DeleteObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-06-08 14:06:06 -04:00
|
|
|
error := getErrorCode(NotImplemented)
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
|
|
|
}
|