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
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
)
|
|
|
|
|
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-05-05 15:54:34 -04:00
|
|
|
XMLName xml.Name `xml:"http://doc.s3.amazonaws.com/2006-03-01 ListBucketResult" json:"-"`
|
2015-02-26 20:23:42 -05:00
|
|
|
Name string
|
|
|
|
Prefix string
|
|
|
|
Marker string
|
|
|
|
MaxKeys int
|
|
|
|
Delimiter string
|
|
|
|
IsTruncated bool
|
2015-03-04 17:24:56 -05:00
|
|
|
Contents []*Item
|
|
|
|
CommonPrefixes []*Prefix
|
2015-01-21 03:50:23 -05:00
|
|
|
}
|
|
|
|
|
2015-04-29 18:28:04 -04:00
|
|
|
// ListBucketsResponse - format for list buckets response
|
|
|
|
type ListBucketsResponse struct {
|
2015-05-05 15:54:34 -04:00
|
|
|
XMLName xml.Name `xml:"http://doc.s3.amazonaws.com/2006-03-01 ListAllMyBucketsResult" json:"-"`
|
2015-01-21 03:50:23 -05:00
|
|
|
Owner Owner
|
2015-01-23 04:55:01 -05:00
|
|
|
Buckets struct {
|
|
|
|
Bucket []*Bucket
|
2015-03-04 17:24:56 -05:00
|
|
|
} // Buckets are nested
|
2015-01-21 03:50:23 -05:00
|
|
|
}
|
|
|
|
|
2015-03-06 00:07:19 -05:00
|
|
|
// Prefix - common prefix
|
2015-02-28 17:44:26 -05:00
|
|
|
type Prefix struct {
|
|
|
|
Prefix string
|
|
|
|
}
|
|
|
|
|
2015-03-06 00:07:19 -05:00
|
|
|
// Bucket - bucket item
|
2015-01-21 03:50:23 -05:00
|
|
|
type Bucket struct {
|
|
|
|
Name string
|
|
|
|
CreationDate string
|
2015-01-20 19:08:14 -05:00
|
|
|
}
|
|
|
|
|
2015-03-06 00:07:19 -05:00
|
|
|
// Item - object item
|
2015-01-23 15:14:39 -05:00
|
|
|
type Item struct {
|
2015-01-20 19:08:14 -05:00
|
|
|
Key string
|
|
|
|
LastModified string
|
|
|
|
ETag string
|
2015-01-25 20:41:59 -05:00
|
|
|
Size int64
|
2015-01-20 19:08:14 -05:00
|
|
|
StorageClass string
|
|
|
|
Owner 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-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,
|
|
|
|
"uploads": 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-01-24 19:35:33 -05:00
|
|
|
"uploadId": true,
|
|
|
|
"torrent": true,
|
|
|
|
"uploads": true,
|
|
|
|
}
|