Golint cleanup pkg/utils/policy

This commit is contained in:
Harshavardhana 2015-03-05 19:41:28 -08:00
parent 3e321b6631
commit c36450a83a
2 changed files with 19 additions and 16 deletions

View file

@ -6,19 +6,19 @@ import (
"strings"
)
// For 0000-00-00 Date type
// Date - [0000-00-00]
type Date struct {
Year int16
Month byte
Day byte
}
// Date to string output in yyyy-mm-dd format
// String output in yyyy-mm-dd format
func (d Date) String() string {
return fmt.Sprintf("%04d-%02d-%02d", d.Year, d.Month, d.Day)
}
// True if date is 0000-00-00
// IsZero true if date is 0000-00-00
func (d Date) IsZero() bool {
return d.Day == 0 && d.Month == 0 && d.Year == 0
}

View file

@ -6,35 +6,41 @@ import (
"strings"
)
type UserCred struct {
// User - AWS canonical
type User struct {
AWS string
}
type Stmt struct {
// Statement - AWS policy statement
type Statement struct {
Sid string
Effect string
Principal UserCred
Principal User
Action []string
Resource []string
// TODO fix it in future if necessary - Condition {}
}
// BucketPolicy - AWS policy collection
type BucketPolicy struct {
Version string // date in 0000-00-00 format
Statement []Stmt
Statement []Statement
}
// Resource delimiter
const (
AwsResource = "arn:aws:s3:::"
MinioResource = "minio:::"
)
// TODO support canonical user
// Principal delimiter
const (
AwsPrincipal = "arn:aws:iam::"
MinioPrincipal = "minio::"
)
// Action map
var SupportedActionMap = map[string]bool{
"*": true,
"s3:GetObject": true,
@ -47,22 +53,19 @@ var SupportedActionMap = map[string]bool{
"s3:PutBucketPolicy": true,
}
// Effect map
var SupportedEffectMap = map[string]bool{
"Allow": true,
"Deny": true,
}
func isValidAction(action []string) bool {
var ok bool = false
for _, a := range action {
if !SupportedActionMap[a] {
goto error
return false
}
}
ok = true
error:
return ok
return true
}
func isValidEffect(effect string) bool {
@ -73,7 +76,7 @@ func isValidEffect(effect string) bool {
}
func isValidResource(resources []string) bool {
var ok bool = false
var ok bool
for _, resource := range resources {
switch true {
case strings.HasPrefix(resource, AwsResource):
@ -96,7 +99,7 @@ func isValidResource(resources []string) bool {
}
func isValidPrincipal(principal string) bool {
var ok bool = false
var ok bool
if principal == "*" {
return true
}
@ -120,7 +123,7 @@ func isValidPrincipal(principal string) bool {
return ok
}
// validate request body is proper JSON
// Parsepolicy - validate request body is proper JSON and in accordance with policy standards
func Parsepolicy(data io.Reader) (BucketPolicy, bool) {
var policy BucketPolicy
decoder := json.NewDecoder(data)