mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package s3_constants
|
|
|
|
import (
|
|
"github.com/aws/aws-sdk-go/service/s3"
|
|
)
|
|
|
|
const (
|
|
CannedAclPrivate = "private"
|
|
CannedAclPublicRead = "public-read"
|
|
CannedAclPublicReadWrite = "public-read-write"
|
|
CannedAclAuthenticatedRead = "authenticated-read"
|
|
CannedAclLogDeliveryWrite = "log-delivery-write"
|
|
CannedAclBucketOwnerRead = "bucket-owner-read"
|
|
CannedAclBucketOwnerFullControl = "bucket-owner-full-control"
|
|
CannedAclAwsExecRead = "aws-exec-read"
|
|
)
|
|
|
|
var (
|
|
PublicRead = []*s3.Grant{
|
|
{
|
|
Grantee: &s3.Grantee{
|
|
Type: &GrantTypeGroup,
|
|
URI: &GranteeGroupAllUsers,
|
|
},
|
|
Permission: &PermissionRead,
|
|
},
|
|
}
|
|
|
|
PublicReadWrite = []*s3.Grant{
|
|
{
|
|
Grantee: &s3.Grantee{
|
|
Type: &GrantTypeGroup,
|
|
URI: &GranteeGroupAllUsers,
|
|
},
|
|
Permission: &PermissionRead,
|
|
},
|
|
{
|
|
Grantee: &s3.Grantee{
|
|
Type: &GrantTypeGroup,
|
|
URI: &GranteeGroupAllUsers,
|
|
},
|
|
Permission: &PermissionWrite,
|
|
},
|
|
}
|
|
|
|
AuthenticatedRead = []*s3.Grant{
|
|
{
|
|
Grantee: &s3.Grantee{
|
|
Type: &GrantTypeGroup,
|
|
URI: &GranteeGroupAuthenticatedUsers,
|
|
},
|
|
Permission: &PermissionRead,
|
|
},
|
|
}
|
|
|
|
LogDeliveryWrite = []*s3.Grant{
|
|
{
|
|
Grantee: &s3.Grantee{
|
|
Type: &GrantTypeGroup,
|
|
URI: &GranteeGroupLogDelivery,
|
|
},
|
|
Permission: &PermissionWrite,
|
|
},
|
|
}
|
|
)
|