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,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* 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-05-11 19:23:10 -04:00
|
|
|
"github.com/minio/minio/pkg/iodine"
|
|
|
|
"github.com/minio/minio/pkg/storage/drivers"
|
|
|
|
"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-02-23 19:46:48 -05:00
|
|
|
// GET Object
|
|
|
|
// ----------
|
|
|
|
// This implementation of the GET operation retrieves object. To use GET,
|
|
|
|
// you must have READ access to the object.
|
2015-03-06 00:07:19 -05:00
|
|
|
func (server *minioAPI) getObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-02-15 20:03:27 -05:00
|
|
|
acceptsContentType := getContentType(req)
|
2015-04-30 19:29:03 -04:00
|
|
|
// verify if this operation is allowed
|
2015-04-23 04:20:03 -04:00
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-15 22:23:30 -04:00
|
|
|
metadata, err := server.driver.GetObjectMetadata(bucket, object)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-02-15 20:03:27 -05:00
|
|
|
case nil: // success
|
|
|
|
{
|
2015-03-30 00:06:47 -04:00
|
|
|
httpRange, err := getRequestedRange(req, metadata.Size)
|
2015-03-11 04:01:49 -04:00
|
|
|
if err != nil {
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, InvalidRange, acceptsContentType, req.URL.Path)
|
2015-03-11 04:01:49 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
switch httpRange.start == 0 && httpRange.length == 0 {
|
|
|
|
case true:
|
2015-04-22 22:29:39 -04:00
|
|
|
setObjectHeaders(w, metadata)
|
|
|
|
if _, err := server.driver.GetObject(w, bucket, object); err != nil {
|
|
|
|
// unable to write headers, we've already printed data. Just close the connection.
|
2015-05-18 14:53:28 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-03-11 04:01:49 -04:00
|
|
|
}
|
|
|
|
case false:
|
2015-04-22 22:29:39 -04:00
|
|
|
metadata.Size = httpRange.length
|
|
|
|
setRangeObjectHeaders(w, metadata, httpRange)
|
|
|
|
w.WriteHeader(http.StatusPartialContent)
|
|
|
|
if _, err := server.driver.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-03-11 04:01:49 -04:00
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectNotFound:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, NoSuchKey, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectNameInvalid:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, NoSuchKey, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-28 02:19:58 -04:00
|
|
|
default:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-04-03 21:53:21 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// HEAD Object
|
|
|
|
// -----------
|
|
|
|
// The HEAD operation retrieves metadata from an object without returning the object itself.
|
2015-03-06 00:07:19 -05:00
|
|
|
func (server *minioAPI) headObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-02-15 20:03:27 -05:00
|
|
|
acceptsContentType := getContentType(req)
|
2015-04-30 19:29:03 -04:00
|
|
|
// verify if this operation is allowed
|
2015-04-23 04:20:03 -04:00
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-15 22:23:30 -04:00
|
|
|
metadata, err := server.driver.GetObjectMetadata(bucket, object)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-02-15 20:03:27 -05:00
|
|
|
case nil:
|
2015-03-31 23:26:14 -04:00
|
|
|
{
|
|
|
|
setObjectHeaders(w, metadata)
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectNotFound:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-05-16 00:27:00 -04:00
|
|
|
error := getErrorCode(NoSuchKey)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectNameInvalid:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-05-16 00:27:00 -04:00
|
|
|
error := getErrorCode(NoSuchKey)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-31 23:26:14 -04:00
|
|
|
default:
|
|
|
|
{
|
2015-04-04 15:46:34 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-05-16 00:27:00 -04:00
|
|
|
error := getErrorCode(InternalError)
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
2015-03-31 23:26:14 -04:00
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// PUT Object
|
|
|
|
// ----------
|
|
|
|
// This implementation of the PUT operation adds an object to a bucket.
|
2015-03-06 00:07:19 -05:00
|
|
|
func (server *minioAPI) putObjectHandler(w http.ResponseWriter, req *http.Request) {
|
2015-04-22 19:28:13 -04:00
|
|
|
acceptsContentType := getContentType(req)
|
2015-04-30 19:29:03 -04:00
|
|
|
// verify if this operation is allowed
|
2015-04-23 04:20:03 -04:00
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-04 02:16:10 -04:00
|
|
|
/// if Content-Length missing, throw away
|
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
|
|
|
|
//
|
|
|
|
// For example take a look at :-
|
|
|
|
//
|
|
|
|
// $ mc ls https://s3.amazonaws.com/ferenginar/test.go
|
|
|
|
//
|
|
|
|
// 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-05-07 22:55:30 -04:00
|
|
|
calculatedMD5, err := server.driver.CreateObject(bucket, object, "", md5, sizeInt64, req.Body)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-02-15 20:03:27 -05:00
|
|
|
case nil:
|
2015-04-29 13:51:59 -04:00
|
|
|
{
|
2015-04-30 06:38:11 -04:00
|
|
|
w.Header().Set("ETag", calculatedMD5)
|
|
|
|
writeSuccessResponse(w, acceptsContentType)
|
2015-04-29 18:28:04 -04:00
|
|
|
|
2015-04-29 13:51:59 -04:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectExists:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-04-27 06:54:49 -04:00
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.BadDigest:
|
2015-03-17 16:32:10 -04:00
|
|
|
{
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, BadDigest, acceptsContentType, req.URL.Path)
|
2015-03-17 16:32:10 -04:00
|
|
|
}
|
2015-04-24 18:19:29 -04:00
|
|
|
case drivers.EntityTooLarge:
|
|
|
|
{
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, EntityTooLarge, acceptsContentType, req.URL.Path)
|
2015-04-24 18:19:29 -04:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.InvalidDigest:
|
2015-03-17 16:32:10 -04:00
|
|
|
{
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, InvalidDigest, acceptsContentType, req.URL.Path)
|
2015-03-17 16:32:10 -04:00
|
|
|
}
|
2015-03-31 23:26:14 -04:00
|
|
|
default:
|
|
|
|
{
|
2015-05-18 14:53:28 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-04-26 20:02:49 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
2015-03-31 23:26:14 -04:00
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
|
|
|
|
func (server *minioAPI) newMultipartUploadHandler(w http.ResponseWriter, req *http.Request) {
|
|
|
|
acceptsContentType := getContentType(req)
|
|
|
|
// handle ACL's here at bucket level
|
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-09 22:39:00 -04:00
|
|
|
uploadID, err := server.driver.NewMultipartUpload(bucket, object, "")
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-05-09 22:39:00 -04:00
|
|
|
case nil:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
response := generateInitiateMultipartUploadResult(bucket, object, uploadID)
|
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response, acceptsContentType)
|
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), len(encodedSuccessResponse))
|
|
|
|
// write body
|
|
|
|
w.Write(encodedSuccessResponse)
|
|
|
|
}
|
2015-05-09 22:39:00 -04:00
|
|
|
case drivers.ObjectExists:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 22:39:00 -04:00
|
|
|
default:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
2015-05-18 14:53:28 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-05-16 00:27:00 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (server *minioAPI) putObjectPartHandler(w http.ResponseWriter, req *http.Request) {
|
|
|
|
acceptsContentType := getContentType(req)
|
|
|
|
// handle ACL's here at bucket level
|
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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
|
|
|
}
|
|
|
|
calculatedMD5, err := server.driver.CreateObjectPart(bucket, object, uploadID, partID, "", md5, sizeInt64, req.Body)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-05-07 22:55:30 -04:00
|
|
|
case nil:
|
|
|
|
{
|
|
|
|
w.Header().Set("ETag", calculatedMD5)
|
|
|
|
writeSuccessResponse(w, acceptsContentType)
|
|
|
|
|
|
|
|
}
|
2015-05-08 05:02:51 -04:00
|
|
|
case drivers.InvalidUploadID:
|
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
case drivers.ObjectExists:
|
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, MethodNotAllowed, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
|
|
|
case drivers.BadDigest:
|
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, BadDigest, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
|
|
|
case drivers.EntityTooLarge:
|
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, EntityTooLarge, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
|
|
|
case drivers.InvalidDigest:
|
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, InvalidDigest, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2015-05-18 14:53:28 -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-09 19:06:35 -04:00
|
|
|
func (server *minioAPI) abortMultipartUploadHandler(w http.ResponseWriter, req *http.Request) {
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-05-14 20:07:30 -04:00
|
|
|
// handle ACL's here at bucket level
|
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-09 22:39:00 -04:00
|
|
|
objectResourcesMetadata := getObjectResources(req.URL.Query())
|
|
|
|
|
|
|
|
err := server.driver.AbortMultipartUpload(bucket, object, objectResourcesMetadata.UploadID)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-05-09 19:06:35 -04:00
|
|
|
case nil:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), 0)
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
}
|
2015-05-09 19:06:35 -04:00
|
|
|
case drivers.InvalidUploadID:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 19:06:35 -04:00
|
|
|
default:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
2015-05-18 14:53:28 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-05-16 00:27:00 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 19:06:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-09 14:41:26 -04:00
|
|
|
func (server *minioAPI) listObjectPartsHandler(w http.ResponseWriter, req *http.Request) {
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-05-14 20:07:30 -04:00
|
|
|
// handle ACL's here at bucket level
|
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-09 22:39:00 -04:00
|
|
|
objectResourcesMetadata, err := server.driver.ListObjectParts(bucket, object, objectResourcesMetadata)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-05-09 14:41:26 -04:00
|
|
|
case nil:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
response := generateListPartsResult(objectResourcesMetadata)
|
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response, acceptsContentType)
|
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), len(encodedSuccessResponse))
|
|
|
|
// write body
|
|
|
|
w.Write(encodedSuccessResponse)
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
case drivers.InvalidUploadID:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
default:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
2015-05-18 14:53:28 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-05-16 00:27:00 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-09 14:41:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-07 22:55:30 -04:00
|
|
|
func (server *minioAPI) completeMultipartUploadHandler(w http.ResponseWriter, req *http.Request) {
|
|
|
|
acceptsContentType := getContentType(req)
|
2015-05-14 20:07:30 -04:00
|
|
|
// handle ACL's here at bucket level
|
|
|
|
if !server.isValidOp(w, req, acceptsContentType) {
|
|
|
|
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-05-09 22:39:00 -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
|
|
|
|
|
|
|
etag, err := server.driver.CompleteMultipartUpload(bucket, object, objectResourcesMetadata.UploadID, partMap)
|
2015-05-18 14:53:28 -04:00
|
|
|
switch iodine.ToError(err).(type) {
|
2015-05-08 01:43:19 -04:00
|
|
|
case nil:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
response := generateCompleteMultpartUploadResult(bucket, object, "", etag)
|
|
|
|
encodedSuccessResponse := encodeSuccessResponse(response, acceptsContentType)
|
|
|
|
// write headers
|
|
|
|
setCommonHeaders(w, getContentTypeString(acceptsContentType), len(encodedSuccessResponse))
|
|
|
|
// write body
|
|
|
|
w.Write(encodedSuccessResponse)
|
|
|
|
}
|
2015-05-08 05:02:51 -04:00
|
|
|
case drivers.InvalidUploadID:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
|
|
|
writeErrorResponse(w, req, NoSuchUpload, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-08 01:43:19 -04:00
|
|
|
default:
|
2015-05-16 00:27:00 -04:00
|
|
|
{
|
2015-05-18 14:53:28 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-05-16 00:27:00 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-05-08 01:43:19 -04:00
|
|
|
}
|
2015-05-07 22:55:30 -04:00
|
|
|
}
|