Add object name validation

This commit is contained in:
Harshavardhana 2015-02-27 19:42:04 -08:00
parent e7992320c1
commit 6ebb48b4ea

View file

@ -20,6 +20,7 @@ import (
"io"
"regexp"
"time"
"unicode/utf8"
)
type Storage interface {
@ -86,5 +87,11 @@ func IsValidBucket(bucket string) bool {
}
func IsValidObject(object string) bool {
if len(object) > 1024 || len(object) == 0 {
return false
}
if !utf8.Valid(object) {
return false
}
return true
}