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,
|
|
|
|
* 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-09-19 03:52:01 -04:00
|
|
|
package main
|
2015-02-15 20:03:27 -05:00
|
|
|
|
|
|
|
import (
|
2015-04-22 19:28:13 -04:00
|
|
|
"net/http"
|
2015-02-27 20:50:55 -05:00
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
"github.com/minio/minio/pkg/fs"
|
2015-02-15 20:03:27 -05:00
|
|
|
)
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// Reply date format
|
|
|
|
const (
|
2015-07-08 19:54:32 -04:00
|
|
|
rfcFormat = "2006-01-02T15:04:05.000Z"
|
2015-02-23 19:46:48 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// takes an array of Bucketmetadata information for serialization
|
|
|
|
// input:
|
|
|
|
// array of bucket metadata
|
|
|
|
//
|
|
|
|
// output:
|
|
|
|
// populated struct that can be serialized to match xml and json api spec output
|
2015-10-16 14:26:01 -04:00
|
|
|
func generateListBucketsResponse(buckets []fs.BucketMetadata) ListBucketsResponse {
|
2015-02-15 20:03:27 -05:00
|
|
|
var listbuckets []*Bucket
|
2015-04-29 18:28:04 -04:00
|
|
|
var data = ListBucketsResponse{}
|
2015-02-15 20:03:27 -05:00
|
|
|
var owner = Owner{}
|
|
|
|
|
|
|
|
owner.ID = "minio"
|
|
|
|
owner.DisplayName = "minio"
|
|
|
|
|
|
|
|
for _, bucket := range buckets {
|
|
|
|
var listbucket = &Bucket{}
|
|
|
|
listbucket.Name = bucket.Name
|
2015-07-08 19:54:32 -04:00
|
|
|
listbucket.CreationDate = bucket.Created.Format(rfcFormat)
|
2015-02-15 20:03:27 -05:00
|
|
|
listbuckets = append(listbuckets, listbucket)
|
|
|
|
}
|
|
|
|
|
|
|
|
data.Owner = owner
|
|
|
|
data.Buckets.Bucket = listbuckets
|
|
|
|
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2015-10-08 14:12:02 -04:00
|
|
|
// generates an AccessControlPolicy response for the said ACL.
|
2015-10-16 14:26:01 -04:00
|
|
|
func generateAccessControlPolicyResponse(acl fs.BucketACL) AccessControlPolicyResponse {
|
2015-10-08 14:12:02 -04:00
|
|
|
accessCtrlPolicyResponse := AccessControlPolicyResponse{}
|
|
|
|
accessCtrlPolicyResponse.Owner = Owner{
|
|
|
|
ID: "minio",
|
|
|
|
DisplayName: "minio",
|
|
|
|
}
|
|
|
|
defaultGrant := Grant{}
|
|
|
|
defaultGrant.Grantee.ID = "minio"
|
|
|
|
defaultGrant.Grantee.DisplayName = "minio"
|
|
|
|
defaultGrant.Permission = "FULL_CONTROL"
|
|
|
|
accessCtrlPolicyResponse.AccessControlList.Grant = append(accessCtrlPolicyResponse.AccessControlList.Grant, defaultGrant)
|
|
|
|
switch {
|
|
|
|
case acl.IsPublicRead():
|
|
|
|
publicReadGrant := Grant{}
|
|
|
|
publicReadGrant.Grantee.ID = "minio"
|
|
|
|
publicReadGrant.Grantee.DisplayName = "minio"
|
|
|
|
publicReadGrant.Grantee.URI = "http://acs.amazonaws.com/groups/global/AllUsers"
|
|
|
|
publicReadGrant.Permission = "READ"
|
|
|
|
accessCtrlPolicyResponse.AccessControlList.Grant = append(accessCtrlPolicyResponse.AccessControlList.Grant, publicReadGrant)
|
|
|
|
case acl.IsPublicReadWrite():
|
|
|
|
publicReadGrant := Grant{}
|
|
|
|
publicReadGrant.Grantee.ID = "minio"
|
|
|
|
publicReadGrant.Grantee.DisplayName = "minio"
|
|
|
|
publicReadGrant.Grantee.URI = "http://acs.amazonaws.com/groups/global/AllUsers"
|
|
|
|
publicReadGrant.Permission = "READ"
|
|
|
|
publicReadWriteGrant := Grant{}
|
|
|
|
publicReadWriteGrant.Grantee.ID = "minio"
|
|
|
|
publicReadWriteGrant.Grantee.DisplayName = "minio"
|
|
|
|
publicReadWriteGrant.Grantee.URI = "http://acs.amazonaws.com/groups/global/AllUsers"
|
|
|
|
publicReadWriteGrant.Permission = "WRITE"
|
|
|
|
accessCtrlPolicyResponse.AccessControlList.Grant = append(accessCtrlPolicyResponse.AccessControlList.Grant, publicReadGrant)
|
|
|
|
accessCtrlPolicyResponse.AccessControlList.Grant = append(accessCtrlPolicyResponse.AccessControlList.Grant, publicReadWriteGrant)
|
|
|
|
}
|
|
|
|
return accessCtrlPolicyResponse
|
|
|
|
}
|
|
|
|
|
|
|
|
// generates an ListObjects response for the said bucket with other enumerated options.
|
2016-01-19 20:49:48 -05:00
|
|
|
func generateListObjectsResponse(bucket, prefix, marker, delimiter string, maxKeys int, resp fs.ListObjectsResult) ListObjectsResponse {
|
2015-05-05 17:27:18 -04:00
|
|
|
var contents []*Object
|
|
|
|
var prefixes []*CommonPrefix
|
2015-02-15 20:03:27 -05:00
|
|
|
var owner = Owner{}
|
2015-04-29 18:28:04 -04:00
|
|
|
var data = ListObjectsResponse{}
|
2015-02-15 20:03:27 -05:00
|
|
|
|
|
|
|
owner.ID = "minio"
|
|
|
|
owner.DisplayName = "minio"
|
|
|
|
|
2015-11-10 06:10:11 -05:00
|
|
|
for _, object := range resp.Objects {
|
2015-05-05 17:27:18 -04:00
|
|
|
var content = &Object{}
|
2015-06-30 20:08:18 -04:00
|
|
|
if object.Object == "" {
|
2015-02-28 17:44:26 -05:00
|
|
|
continue
|
|
|
|
}
|
2015-06-30 20:08:18 -04:00
|
|
|
content.Key = object.Object
|
2015-07-09 22:34:07 -04:00
|
|
|
content.LastModified = object.Created.Format(rfcFormat)
|
2015-10-16 14:26:01 -04:00
|
|
|
content.ETag = "\"" + object.Md5 + "\""
|
2015-02-15 20:03:27 -05:00
|
|
|
content.Size = object.Size
|
|
|
|
content.StorageClass = "STANDARD"
|
|
|
|
content.Owner = owner
|
|
|
|
contents = append(contents, content)
|
|
|
|
}
|
2015-05-05 17:27:18 -04:00
|
|
|
// TODO - support EncodingType in xml decoding
|
2015-02-15 20:03:27 -05:00
|
|
|
data.Name = bucket
|
|
|
|
data.Contents = contents
|
2015-11-10 06:10:11 -05:00
|
|
|
|
2016-01-19 20:49:48 -05:00
|
|
|
data.Prefix = prefix
|
|
|
|
data.Marker = marker
|
|
|
|
data.Delimiter = delimiter
|
|
|
|
data.MaxKeys = maxKeys
|
2015-11-10 06:10:11 -05:00
|
|
|
|
|
|
|
data.NextMarker = resp.NextMarker
|
|
|
|
data.IsTruncated = resp.IsTruncated
|
|
|
|
for _, prefix := range resp.Prefixes {
|
2015-05-05 17:27:18 -04:00
|
|
|
var prefixItem = &CommonPrefix{}
|
2015-02-28 17:44:26 -05:00
|
|
|
prefixItem.Prefix = prefix
|
|
|
|
prefixes = append(prefixes, prefixItem)
|
|
|
|
}
|
|
|
|
data.CommonPrefixes = prefixes
|
2015-02-15 20:03:27 -05:00
|
|
|
return data
|
|
|
|
}
|
2015-04-22 19:28:13 -04:00
|
|
|
|
2015-07-09 22:01:15 -04:00
|
|
|
// generateInitiateMultipartUploadResponse
|
|
|
|
func generateInitiateMultipartUploadResponse(bucket, key, uploadID string) InitiateMultipartUploadResponse {
|
|
|
|
return InitiateMultipartUploadResponse{
|
2015-05-07 22:55:30 -04:00
|
|
|
Bucket: bucket,
|
|
|
|
Key: key,
|
|
|
|
UploadID: uploadID,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-09 22:01:15 -04:00
|
|
|
// generateCompleteMultipartUploadResponse
|
|
|
|
func generateCompleteMultpartUploadResponse(bucket, key, location, etag string) CompleteMultipartUploadResponse {
|
|
|
|
return CompleteMultipartUploadResponse{
|
2015-05-08 01:43:19 -04:00
|
|
|
Location: location,
|
|
|
|
Bucket: bucket,
|
|
|
|
Key: key,
|
|
|
|
ETag: etag,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-09 14:41:26 -04:00
|
|
|
// generateListPartsResult
|
2015-10-16 14:26:01 -04:00
|
|
|
func generateListPartsResponse(objectMetadata fs.ObjectResourcesMetadata) ListPartsResponse {
|
2015-05-09 14:41:26 -04:00
|
|
|
// TODO - support EncodingType in xml decoding
|
|
|
|
listPartsResponse := ListPartsResponse{}
|
|
|
|
listPartsResponse.Bucket = objectMetadata.Bucket
|
2015-10-16 14:26:01 -04:00
|
|
|
listPartsResponse.Key = objectMetadata.Object
|
2015-05-09 14:41:26 -04:00
|
|
|
listPartsResponse.UploadID = objectMetadata.UploadID
|
|
|
|
listPartsResponse.StorageClass = "STANDARD"
|
|
|
|
listPartsResponse.Initiator.ID = "minio"
|
|
|
|
listPartsResponse.Initiator.DisplayName = "minio"
|
|
|
|
listPartsResponse.Owner.ID = "minio"
|
|
|
|
listPartsResponse.Owner.DisplayName = "minio"
|
|
|
|
|
|
|
|
listPartsResponse.MaxParts = objectMetadata.MaxParts
|
|
|
|
listPartsResponse.PartNumberMarker = objectMetadata.PartNumberMarker
|
|
|
|
listPartsResponse.IsTruncated = objectMetadata.IsTruncated
|
|
|
|
listPartsResponse.NextPartNumberMarker = objectMetadata.NextPartNumberMarker
|
|
|
|
|
|
|
|
listPartsResponse.Part = make([]*Part, len(objectMetadata.Part))
|
|
|
|
for _, part := range objectMetadata.Part {
|
|
|
|
newPart := &Part{}
|
|
|
|
newPart.PartNumber = part.PartNumber
|
2015-06-09 04:12:32 -04:00
|
|
|
newPart.ETag = "\"" + part.ETag + "\""
|
2015-05-09 14:41:26 -04:00
|
|
|
newPart.Size = part.Size
|
2015-07-08 19:54:32 -04:00
|
|
|
newPart.LastModified = part.LastModified.Format(rfcFormat)
|
2015-05-09 14:41:26 -04:00
|
|
|
listPartsResponse.Part = append(listPartsResponse.Part, newPart)
|
|
|
|
}
|
|
|
|
return listPartsResponse
|
|
|
|
}
|
|
|
|
|
2015-07-09 22:01:15 -04:00
|
|
|
// generateListMultipartUploadsResponse
|
2015-10-16 14:26:01 -04:00
|
|
|
func generateListMultipartUploadsResponse(bucket string, metadata fs.BucketMultipartResourcesMetadata) ListMultipartUploadsResponse {
|
2015-05-14 17:36:41 -04:00
|
|
|
listMultipartUploadsResponse := ListMultipartUploadsResponse{}
|
|
|
|
listMultipartUploadsResponse.Bucket = bucket
|
|
|
|
listMultipartUploadsResponse.Delimiter = metadata.Delimiter
|
|
|
|
listMultipartUploadsResponse.IsTruncated = metadata.IsTruncated
|
|
|
|
listMultipartUploadsResponse.EncodingType = metadata.EncodingType
|
|
|
|
listMultipartUploadsResponse.Prefix = metadata.Prefix
|
|
|
|
listMultipartUploadsResponse.KeyMarker = metadata.KeyMarker
|
|
|
|
listMultipartUploadsResponse.NextKeyMarker = metadata.NextKeyMarker
|
|
|
|
listMultipartUploadsResponse.MaxUploads = metadata.MaxUploads
|
|
|
|
listMultipartUploadsResponse.NextUploadIDMarker = metadata.NextUploadIDMarker
|
|
|
|
listMultipartUploadsResponse.UploadIDMarker = metadata.UploadIDMarker
|
|
|
|
|
|
|
|
listMultipartUploadsResponse.Upload = make([]*Upload, len(metadata.Upload))
|
|
|
|
for _, upload := range metadata.Upload {
|
|
|
|
newUpload := &Upload{}
|
|
|
|
newUpload.UploadID = upload.UploadID
|
2015-10-16 14:26:01 -04:00
|
|
|
newUpload.Key = upload.Object
|
2015-07-08 19:54:32 -04:00
|
|
|
newUpload.Initiated = upload.Initiated.Format(rfcFormat)
|
2015-05-14 17:36:41 -04:00
|
|
|
listMultipartUploadsResponse.Upload = append(listMultipartUploadsResponse.Upload, newUpload)
|
|
|
|
}
|
|
|
|
return listMultipartUploadsResponse
|
|
|
|
}
|
|
|
|
|
2016-01-08 03:40:06 -05:00
|
|
|
// writeSuccessResponse write success headers and response if any.
|
|
|
|
func writeSuccessResponse(w http.ResponseWriter, response []byte) {
|
|
|
|
setCommonHeaders(w)
|
|
|
|
if response == nil {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Write(response)
|
|
|
|
w.(http.Flusher).Flush()
|
2015-04-29 13:51:59 -04:00
|
|
|
}
|
|
|
|
|
2015-10-16 23:02:37 -04:00
|
|
|
// writeSuccessNoContent write success headers with http status 204
|
|
|
|
func writeSuccessNoContent(w http.ResponseWriter) {
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
2015-10-16 23:02:37 -04:00
|
|
|
w.WriteHeader(http.StatusNoContent)
|
|
|
|
}
|
|
|
|
|
2015-05-09 14:41:26 -04:00
|
|
|
// writeErrorRespone write error headers
|
2015-10-04 03:27:49 -04:00
|
|
|
func writeErrorResponse(w http.ResponseWriter, req *http.Request, errorType int, resource string) {
|
2015-04-22 19:28:13 -04:00
|
|
|
error := getErrorCode(errorType)
|
2015-04-29 18:28:04 -04:00
|
|
|
// generate error response
|
2015-04-22 19:28:13 -04:00
|
|
|
errorResponse := getErrorResponse(error, resource)
|
2015-10-04 03:27:49 -04:00
|
|
|
encodedErrorResponse := encodeErrorResponse(errorResponse)
|
2015-04-29 18:28:04 -04:00
|
|
|
// set common headers
|
2016-01-08 03:40:06 -05:00
|
|
|
setCommonHeaders(w)
|
2015-05-15 23:44:42 -04:00
|
|
|
// write Header
|
2015-04-22 19:28:13 -04:00
|
|
|
w.WriteHeader(error.HTTPStatusCode)
|
2015-09-19 05:36:50 -04:00
|
|
|
// HEAD should have no body, do not attempt to write to it
|
2015-07-11 00:06:43 -04:00
|
|
|
if req.Method != "HEAD" {
|
|
|
|
// write error body
|
|
|
|
w.Write(encodedErrorResponse)
|
2016-01-08 03:40:06 -05:00
|
|
|
w.(http.Flusher).Flush()
|
2015-07-11 00:06:43 -04:00
|
|
|
}
|
2015-04-22 19:28:13 -04:00
|
|
|
}
|