2015-04-29 02:19:51 -07:00
|
|
|
/*
|
2015-07-24 17:51:40 -07:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-04-29 02:19:51 -07: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 00:52:01 -07:00
|
|
|
package main
|
2015-04-22 16:28:13 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
2016-04-21 06:05:38 +05:30
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
|
|
|
"strings"
|
2015-04-22 16:28:13 -07:00
|
|
|
)
|
|
|
|
|
2016-04-21 06:05:38 +05:30
|
|
|
// xmlDecoder provide decoded value in xml.
|
|
|
|
func xmlDecoder(body io.Reader, v interface{}) error {
|
|
|
|
d := xml.NewDecoder(body)
|
|
|
|
return d.Decode(v)
|
|
|
|
}
|
|
|
|
|
2016-03-12 16:08:15 -08:00
|
|
|
// checkValidMD5 - verify if valid md5, returns md5 in bytes.
|
2016-04-29 14:24:10 -07:00
|
|
|
func checkValidMD5(md5 string) ([]byte, error) {
|
|
|
|
return base64.StdEncoding.DecodeString(strings.TrimSpace(md5))
|
2015-04-22 16:28:13 -07:00
|
|
|
}
|
2015-04-29 02:19:51 -07:00
|
|
|
|
2015-04-29 10:51:59 -07:00
|
|
|
/// http://docs.aws.amazon.com/AmazonS3/latest/dev/UploadingObjects.html
|
2015-04-29 02:19:51 -07:00
|
|
|
const (
|
2015-12-27 23:00:36 -08:00
|
|
|
// maximum object size per PUT request is 5GiB
|
2015-04-29 02:19:51 -07:00
|
|
|
maxObjectSize = 1024 * 1024 * 1024 * 5
|
2016-05-09 00:36:05 +05:30
|
|
|
// minimum Part size for multipart upload is 5MB
|
|
|
|
minPartSize = 1024 * 1024 * 5
|
2015-04-29 02:19:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// isMaxObjectSize - verify if max object size
|
2015-12-27 23:00:36 -08:00
|
|
|
func isMaxObjectSize(size int64) bool {
|
2016-04-02 17:28:54 -07:00
|
|
|
return size > maxObjectSize
|
2015-04-29 02:19:51 -07:00
|
|
|
}
|
2016-02-05 16:39:31 +05:30
|
|
|
|
2016-05-09 00:36:05 +05:30
|
|
|
// Check if part size is more than or equal to minimum allowed size.
|
|
|
|
func isMinAllowedPartSize(size int64) bool {
|
|
|
|
return size >= minPartSize
|
|
|
|
}
|
|
|
|
|
2016-02-05 16:39:31 +05:30
|
|
|
func contains(stringList []string, element string) bool {
|
|
|
|
for _, e := range stringList {
|
|
|
|
if e == element {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|