2015-01-21 02:16:06 -05:00
|
|
|
/*
|
2015-03-19 17:35:50 -04:00
|
|
|
* Minimalist Object Storage, (C) 2014 Minio, Inc.
|
2015-01-21 02:16:06 -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-01-20 19:08:14 -05:00
|
|
|
|
2015-05-14 17:36:41 -04:00
|
|
|
import "encoding/xml"
|
2015-01-20 19:08:14 -05:00
|
|
|
|
2015-06-30 23:15:48 -04:00
|
|
|
// Config - http server config
|
|
|
|
type Config struct {
|
|
|
|
Address string
|
|
|
|
TLS bool
|
|
|
|
CertFile string
|
|
|
|
KeyFile string
|
|
|
|
RateLimit int
|
|
|
|
}
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// Limit number of objects in a given response
|
2015-01-23 15:14:39 -05:00
|
|
|
const (
|
2015-03-02 21:03:01 -05:00
|
|
|
maxObjectList = 1000
|
2015-01-23 15:14:39 -05:00
|
|
|
)
|
|
|
|
|
2015-04-29 18:28:04 -04:00
|
|
|
// ListObjectsResponse - format for list objects response
|
|
|
|
type ListObjectsResponse struct {
|
2015-07-02 16:14:21 -04:00
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ListBucketResult" json:"-"`
|
2015-05-05 17:27:18 -04:00
|
|
|
|
|
|
|
CommonPrefixes []*CommonPrefix
|
|
|
|
Contents []*Object
|
|
|
|
|
|
|
|
Delimiter string
|
|
|
|
|
|
|
|
// Encoding type used to encode object keys in the response.
|
|
|
|
EncodingType string
|
|
|
|
|
|
|
|
// A flag that indicates whether or not ListObjects returned all of the results
|
|
|
|
// that satisfied the search criteria.
|
|
|
|
IsTruncated bool
|
|
|
|
Marker string
|
|
|
|
MaxKeys int
|
|
|
|
Name string
|
|
|
|
|
|
|
|
// When response is truncated (the IsTruncated element value in the response
|
|
|
|
// is true), you can use the key name in this field as marker in the subsequent
|
|
|
|
// request to get next set of objects. Object storage lists objects in alphabetical
|
|
|
|
// order Note: This element is returned only if you have delimiter request parameter
|
|
|
|
// specified. If response does not include the NextMaker and it is truncated,
|
|
|
|
// you can use the value of the last Key in the response as the marker in the
|
|
|
|
// subsequent request to get the next set of object keys.
|
|
|
|
NextMarker string
|
|
|
|
Prefix string
|
2015-01-21 03:50:23 -05:00
|
|
|
}
|
|
|
|
|
2015-07-09 22:01:15 -04:00
|
|
|
// Part container for part metadata
|
|
|
|
type Part struct {
|
|
|
|
PartNumber int
|
|
|
|
ETag string
|
|
|
|
LastModified string
|
|
|
|
Size int64
|
|
|
|
}
|
|
|
|
|
2015-05-09 14:41:26 -04:00
|
|
|
// ListPartsResponse - format for list parts response
|
|
|
|
type ListPartsResponse struct {
|
2015-07-02 16:14:21 -04:00
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ListPartsResult" json:"-"`
|
2015-05-09 14:41:26 -04:00
|
|
|
|
|
|
|
Bucket string
|
|
|
|
Key string
|
|
|
|
UploadID string `xml:"UploadId"`
|
|
|
|
|
|
|
|
Initiator Initiator
|
|
|
|
Owner Owner
|
|
|
|
|
|
|
|
// The class of storage used to store the object.
|
|
|
|
StorageClass string
|
|
|
|
|
|
|
|
PartNumberMarker int
|
|
|
|
NextPartNumberMarker int
|
|
|
|
MaxParts int
|
|
|
|
IsTruncated bool
|
|
|
|
|
|
|
|
// List of parts
|
|
|
|
Part []*Part
|
|
|
|
}
|
|
|
|
|
2015-05-14 17:36:41 -04:00
|
|
|
// ListMultipartUploadsResponse - format for list multipart uploads response
|
|
|
|
type ListMultipartUploadsResponse struct {
|
2015-07-02 16:14:21 -04:00
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ListMultipartUploadsResult" json:"-"`
|
2015-05-14 17:36:41 -04:00
|
|
|
|
|
|
|
Bucket string
|
|
|
|
KeyMarker string
|
|
|
|
UploadIDMarker string `xml:"UploadIdMarker"`
|
|
|
|
NextKeyMarker string
|
|
|
|
NextUploadIDMarker string `xml:"NextUploadIdMarker"`
|
|
|
|
EncodingType string
|
|
|
|
MaxUploads int
|
|
|
|
IsTruncated bool
|
|
|
|
Upload []*Upload
|
|
|
|
Prefix string
|
|
|
|
Delimiter string
|
|
|
|
CommonPrefixes []*CommonPrefix
|
|
|
|
}
|
|
|
|
|
2015-04-29 18:28:04 -04:00
|
|
|
// ListBucketsResponse - format for list buckets response
|
|
|
|
type ListBucketsResponse struct {
|
2015-07-02 16:14:21 -04:00
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ListAllMyBucketsResult" json:"-"`
|
2015-05-05 17:27:18 -04:00
|
|
|
// Container for one or more buckets.
|
2015-01-23 04:55:01 -05:00
|
|
|
Buckets struct {
|
|
|
|
Bucket []*Bucket
|
2015-03-04 17:24:56 -05:00
|
|
|
} // Buckets are nested
|
2015-05-05 17:27:18 -04:00
|
|
|
Owner Owner
|
2015-01-21 03:50:23 -05:00
|
|
|
}
|
|
|
|
|
2015-05-14 17:36:41 -04:00
|
|
|
// Upload container for in progress multipart upload
|
|
|
|
type Upload struct {
|
|
|
|
Key string
|
|
|
|
UploadID string `xml:"UploadId"`
|
|
|
|
Initiator Initiator
|
|
|
|
Owner Owner
|
|
|
|
StorageClass string
|
|
|
|
Initiated string
|
|
|
|
}
|
|
|
|
|
2015-05-05 17:27:18 -04:00
|
|
|
// CommonPrefix container for prefix response in ListObjectsResponse
|
|
|
|
type CommonPrefix struct {
|
2015-02-28 17:44:26 -05:00
|
|
|
Prefix string
|
|
|
|
}
|
|
|
|
|
2015-05-05 17:27:18 -04:00
|
|
|
// Bucket container for bucket metadata
|
2015-01-21 03:50:23 -05:00
|
|
|
type Bucket struct {
|
|
|
|
Name string
|
|
|
|
CreationDate string
|
2015-01-20 19:08:14 -05:00
|
|
|
}
|
|
|
|
|
2015-05-05 17:27:18 -04:00
|
|
|
// Object container for object metadata
|
|
|
|
type Object struct {
|
|
|
|
ETag string
|
2015-01-20 19:08:14 -05:00
|
|
|
Key string
|
|
|
|
LastModified string
|
2015-01-25 20:41:59 -05:00
|
|
|
Size int64
|
2015-05-05 17:27:18 -04:00
|
|
|
|
|
|
|
Owner Owner
|
|
|
|
|
|
|
|
// The class of storage used to store the object.
|
2015-01-20 19:08:14 -05:00
|
|
|
StorageClass string
|
|
|
|
}
|
|
|
|
|
2015-05-09 14:41:26 -04:00
|
|
|
// Initiator inherit from Owner struct, fields are same
|
|
|
|
type Initiator Owner
|
|
|
|
|
2015-03-06 00:07:19 -05:00
|
|
|
// Owner - bucket owner/principal
|
2015-01-20 19:08:14 -05:00
|
|
|
type Owner struct {
|
|
|
|
ID string
|
|
|
|
DisplayName string
|
|
|
|
}
|
2015-01-24 19:35:33 -05:00
|
|
|
|
2015-07-09 22:01:15 -04:00
|
|
|
// InitiateMultipartUploadResponse container for InitiateMultiPartUpload response, provides uploadID to start MultiPart upload
|
|
|
|
type InitiateMultipartUploadResponse struct {
|
2015-07-02 16:14:21 -04:00
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ InitiateMultipartUploadResult" json:"-"`
|
2015-05-07 22:55:30 -04:00
|
|
|
|
|
|
|
Bucket string
|
|
|
|
Key string
|
|
|
|
UploadID string `xml:"UploadId"`
|
|
|
|
}
|
|
|
|
|
2015-07-09 22:01:15 -04:00
|
|
|
// CompleteMultipartUploadResponse container for completed multipart upload response
|
|
|
|
type CompleteMultipartUploadResponse struct {
|
2015-07-02 16:14:21 -04:00
|
|
|
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ CompleteMultipartUploadResult" json:"-"`
|
2015-05-08 01:43:19 -04:00
|
|
|
|
|
|
|
Location string
|
|
|
|
Bucket string
|
|
|
|
Key string
|
|
|
|
ETag string
|
|
|
|
}
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// List of not implemented bucket queries
|
2015-04-29 18:28:04 -04:00
|
|
|
var notimplementedBucketResourceNames = map[string]bool{
|
2015-04-22 17:44:59 -04:00
|
|
|
"policy": true,
|
2015-02-15 20:03:27 -05:00
|
|
|
"cors": true,
|
2015-01-24 19:35:33 -05:00
|
|
|
"lifecycle": true,
|
|
|
|
"location": true,
|
|
|
|
"logging": true,
|
|
|
|
"notification": true,
|
2015-02-15 20:03:27 -05:00
|
|
|
"tagging": true,
|
2015-01-24 19:35:33 -05:00
|
|
|
"versions": true,
|
|
|
|
"requestPayment": true,
|
|
|
|
"versioning": true,
|
|
|
|
"website": true,
|
|
|
|
}
|
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// List of not implemented object queries
|
2015-04-29 18:28:04 -04:00
|
|
|
var notimplementedObjectResourceNames = map[string]bool{
|
2015-05-07 22:55:30 -04:00
|
|
|
"torrent": true,
|
2015-01-24 19:35:33 -05:00
|
|
|
}
|