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"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2015-03-31 22:06:05 -04:00
|
|
|
"github.com/minio-io/iodine"
|
2015-03-23 23:40:21 -04:00
|
|
|
"github.com/minio-io/minio/pkg/drivers"
|
2015-03-23 21:12:20 -04:00
|
|
|
"github.com/minio-io/minio/pkg/utils/log"
|
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
|
|
|
var object, bucket string
|
|
|
|
acceptsContentType := getContentType(req)
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
|
|
|
|
2015-03-23 23:40:21 -04:00
|
|
|
metadata, err := server.driver.GetObjectMetadata(bucket, object, "")
|
2015-02-15 20:03:27 -05:00
|
|
|
switch err := err.(type) {
|
|
|
|
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-03-30 01:03:10 -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-03-31 22:06:05 -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-04-01 22:58:46 -04:00
|
|
|
log.Error.Println(err)
|
2015-03-31 22:06:05 -04:00
|
|
|
}
|
2015-03-11 04:01:49 -04:00
|
|
|
}
|
|
|
|
case false:
|
2015-03-31 22:06:05 -04:00
|
|
|
{
|
|
|
|
metadata.Size = httpRange.length
|
|
|
|
setRangeObjectHeaders(w, metadata, httpRange)
|
|
|
|
w.WriteHeader(http.StatusPartialContent)
|
|
|
|
_, err := server.driver.GetPartialObject(w, bucket, object, httpRange.start, httpRange.length)
|
|
|
|
if err != nil {
|
|
|
|
// unable to write headers, we've already printed data. Just close the connection.
|
2015-04-03 21:53:21 -04:00
|
|
|
log.Error.Println(iodine.New(err, nil))
|
2015-03-31 22:06:05 -04:00
|
|
|
}
|
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-03-30 01:03:10 -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
|
|
|
case drivers.BucketNotFound:
|
|
|
|
{
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, NoSuchBucket, acceptsContentType, req.URL.Path)
|
2015-03-28 02:19:58 -04:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectNameInvalid:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-30 01:03:10 -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.BucketNameInvalid:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, InvalidBucketName, 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-03-30 01:03:10 -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
|
|
|
var object, bucket string
|
|
|
|
acceptsContentType := getContentType(req)
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
|
|
|
|
2015-03-23 23:40:21 -04:00
|
|
|
metadata, err := server.driver.GetObjectMetadata(bucket, object, "")
|
2015-02-15 20:03:27 -05:00
|
|
|
switch err := err.(type) {
|
|
|
|
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-03-30 01:03:10 -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-03-30 01:03:10 -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.ImplementationError:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-28 18:58:48 -04:00
|
|
|
log.Error.Println(err)
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-31 23:26:14 -04:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
log.Error.Println(err)
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
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-02-15 20:03:27 -05:00
|
|
|
var object, bucket string
|
|
|
|
vars := mux.Vars(req)
|
|
|
|
acceptsContentType := getContentType(req)
|
|
|
|
bucket = vars["bucket"]
|
|
|
|
object = vars["object"]
|
|
|
|
|
2015-02-23 05:11:27 -05:00
|
|
|
resources := getBucketResources(req.URL.Query())
|
2015-02-26 20:23:42 -05:00
|
|
|
if resources.Policy == true && object == "" {
|
2015-04-01 22:58:46 -04:00
|
|
|
// TODO
|
|
|
|
// ----
|
|
|
|
// This is handled here instead of router, is only because semantically
|
|
|
|
// resource queries are not treated differently by Gorilla mux
|
|
|
|
//
|
|
|
|
// In-fact a request coming in as /bucket/?policy={} and /bucket/object are
|
|
|
|
// treated similarly. A proper fix would be to remove this comment and
|
|
|
|
// find a right regex pattern for individual requests
|
2015-02-23 05:11:27 -05:00
|
|
|
server.putBucketPolicyHandler(w, req)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-17 16:32:10 -04:00
|
|
|
// get Content-MD5 sent by client
|
|
|
|
md5 := req.Header.Get("Content-MD5")
|
2015-03-23 23:40:21 -04:00
|
|
|
err := server.driver.CreateObject(bucket, object, "", md5, req.Body)
|
2015-02-15 20:03:27 -05:00
|
|
|
switch err := err.(type) {
|
|
|
|
case nil:
|
|
|
|
w.Header().Set("Server", "Minio")
|
|
|
|
w.Header().Set("Connection", "close")
|
2015-03-30 01:03:10 -04:00
|
|
|
w.WriteHeader(http.StatusOK)
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ImplementationError:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-28 18:58:48 -04:00
|
|
|
log.Error.Println(err)
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.BucketNotFound:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, NoSuchBucket, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.BucketNameInvalid:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, InvalidBucketName, acceptsContentType, req.URL.Path)
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.ObjectExists:
|
2015-02-15 20:03:27 -05:00
|
|
|
{
|
2015-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, NotImplemented, 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-03-30 01:03:10 -04:00
|
|
|
writeErrorResponse(w, req, BadDigest, acceptsContentType, req.URL.Path)
|
2015-03-17 16:32:10 -04:00
|
|
|
}
|
2015-03-23 23:40:21 -04:00
|
|
|
case drivers.InvalidDigest:
|
2015-03-17 16:32:10 -04:00
|
|
|
{
|
2015-03-30 01:03:10 -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:
|
|
|
|
{
|
|
|
|
log.Error.Println(err)
|
|
|
|
writeErrorResponse(w, req, InternalError, acceptsContentType, req.URL.Path)
|
|
|
|
}
|
2015-02-15 20:03:27 -05:00
|
|
|
}
|
|
|
|
}
|