diff --git a/bucket_acl.go b/bucket_acl.go index 285b906..ecf2d2c 100644 --- a/bucket_acl.go +++ b/bucket_acl.go @@ -6,7 +6,7 @@ import ( ) // BucketGetACLResult is same to the ACLXml -type BucketGetACLResult ACLXml +type BucketGetACLResult = ACLXml // GetACL 使用API读取Bucket的ACL表,只有所有者有权操作。 // @@ -20,6 +20,9 @@ func (s *BucketService) GetACL(ctx context.Context) (*BucketGetACLResult, *Respo result: &res, } resp, err := s.client.send(ctx, &sendOpt) + if err == nil { + decodeACL(resp, &res) + } return &res, resp, err } diff --git a/cos.go b/cos.go index bdca0c9..665084f 100644 --- a/cos.go +++ b/cos.go @@ -11,6 +11,7 @@ import ( "net/http" "net/url" "reflect" + "strings" "text/template" "strconv" @@ -21,7 +22,7 @@ import ( const ( // Version current go sdk version - Version = "0.7.8" + Version = "0.7.10" userAgent = "cos-go-sdk-v5/" + Version contentTypeXML = "application/xml" defaultServiceBaseURL = "http://service.cos.myqcloud.com" @@ -355,3 +356,53 @@ type ACLXml struct { Owner *Owner AccessControlList []ACLGrant `xml:"AccessControlList>Grant,omitempty"` } + +func decodeACL(resp *Response, res *ACLXml) { + ItemMap := map[string]string{ + "ACL": "x-cos-acl", + "READ": "x-cos-grant-read", + "WRITE": "x-cos-grant-write", + "READ_ACP": "x-cos-grant-read-acp", + "WRITE_ACP": "x-cos-grant-write-acp", + "FULL_CONTROL": "x-cos-grant-full-control", + } + publicACL := make(map[string]int) + resACL := make(map[string][]string) + for _, item := range res.AccessControlList { + if item.Grantee == nil { + continue + } + if item.Grantee.ID == "qcs::cam::anyone:anyone" || item.Grantee.URI == "http://cam.qcloud.com/groups/global/AllUsers" { + publicACL[item.Permission] = 1 + } else if item.Grantee.ID != res.Owner.ID { + resACL[item.Permission] = append(resACL[item.Permission], "id=\""+item.Grantee.ID+"\"") + } + } + if publicACL["FULL_CONTROL"] == 1 || (publicACL["READ"] == 1 && publicACL["WRITE"] == 1) { + resACL["ACL"] = []string{"public-read-write"} + } else if publicACL["READ"] == 1 { + resACL["ACL"] = []string{"public-read"} + } else { + resACL["ACL"] = []string{"private"} + } + + for item, header := range ItemMap { + if len(resp.Header.Get(header)) > 0 || len(resACL[item]) == 0 { + continue + } + resp.Header.Set(header, uniqueGrantID(resACL[item])) + } +} + +func uniqueGrantID(grantIDs []string) string { + res := []string{} + filter := make(map[string]int) + for _, id := range grantIDs { + if filter[id] != 0 { + continue + } + filter[id] = 1 + res = append(res, id) + } + return strings.Join(res, ",") +} diff --git a/object_acl.go b/object_acl.go index 2dc5935..addabe1 100644 --- a/object_acl.go +++ b/object_acl.go @@ -6,7 +6,7 @@ import ( ) // ObjectGetACLResult is the result of GetObjectACL -type ObjectGetACLResult ACLXml +type ObjectGetACLResult = ACLXml // GetACL Get Object ACL接口实现使用API读取Object的ACL表,只有所有者有权操作。 // @@ -20,6 +20,9 @@ func (s *ObjectService) GetACL(ctx context.Context, name string) (*ObjectGetACLR result: &res, } resp, err := s.client.send(ctx, &sendOpt) + if err == nil { + decodeACL(resp, &res) + } return &res, resp, err }