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 (
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
"github.com/minio/minio/pkg/fs"
|
2015-02-26 20:23:42 -05:00
|
|
|
)
|
2015-02-15 20:03:27 -05:00
|
|
|
|
2015-02-23 19:46:48 -05:00
|
|
|
// parse bucket url queries
|
2016-01-19 20:49:48 -05:00
|
|
|
func getBucketResources(values url.Values) (prefix, marker, delimiter string, maxkeys int, encodingType string) {
|
|
|
|
prefix = values.Get("prefix")
|
|
|
|
marker = values.Get("marker")
|
|
|
|
delimiter = values.Get("delimiter")
|
|
|
|
maxkeys, _ = strconv.Atoi(values.Get("max-keys"))
|
|
|
|
encodingType = values.Get("encoding-type")
|
2015-02-15 20:03:27 -05:00
|
|
|
return
|
|
|
|
}
|
2015-04-27 06:04:29 -04:00
|
|
|
|
2015-05-14 17:36:41 -04:00
|
|
|
// part bucket url queries for ?uploads
|
2015-10-16 14:26:01 -04:00
|
|
|
func getBucketMultipartResources(values url.Values) (v fs.BucketMultipartResourcesMetadata) {
|
2015-05-14 17:36:41 -04:00
|
|
|
v.Prefix = values.Get("prefix")
|
|
|
|
v.KeyMarker = values.Get("key-marker")
|
|
|
|
v.MaxUploads, _ = strconv.Atoi(values.Get("max-uploads"))
|
|
|
|
v.Delimiter = values.Get("delimiter")
|
|
|
|
v.EncodingType = values.Get("encoding-type")
|
|
|
|
v.UploadIDMarker = values.Get("upload-id-marker")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-09 14:41:26 -04:00
|
|
|
// parse object url queries
|
2015-10-16 14:26:01 -04:00
|
|
|
func getObjectResources(values url.Values) (v fs.ObjectResourcesMetadata) {
|
2015-05-10 14:30:03 -04:00
|
|
|
v.UploadID = values.Get("uploadId")
|
|
|
|
v.PartNumberMarker, _ = strconv.Atoi(values.Get("part-number-marker"))
|
|
|
|
v.MaxParts, _ = strconv.Atoi(values.Get("max-parts"))
|
|
|
|
v.EncodingType = values.Get("encoding-type")
|
2015-05-09 14:41:26 -04:00
|
|
|
return
|
|
|
|
}
|