-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathacl_set.go
89 lines (73 loc) · 2.02 KB
/
acl_set.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package shares
import (
"bytes"
"context"
"encoding/xml"
"fmt"
"io"
"net/http"
"strconv"
"strings"
"github.com/hashicorp/go-azure-sdk/sdk/client"
"github.com/hashicorp/go-azure-sdk/sdk/odata"
)
type SetAclResponse struct {
HttpResponse *client.Response
}
type SetAclInput struct {
SignedIdentifiers []SignedIdentifier `xml:"SignedIdentifier"`
XMLName xml.Name `xml:"SignedIdentifiers"`
}
// SetACL sets the specified Access Control List on the specified Storage Share
func (c Client) SetACL(ctx context.Context, shareName string, input SetAclInput) (resp SetAclResponse, err error) {
if shareName == "" {
return resp, fmt.Errorf("`shareName` cannot be an empty string")
}
if strings.ToLower(shareName) != shareName {
return resp, fmt.Errorf("`shareName` must be a lower-cased string")
}
opts := client.RequestOptions{
ContentType: "application/xml; charset=utf-8",
ExpectedStatusCodes: []int{
http.StatusOK,
},
HttpMethod: http.MethodPut,
OptionsObject: setAclOptions{},
Path: fmt.Sprintf("/%s", shareName),
}
req, err := c.Client.NewRequest(ctx, opts)
if err != nil {
err = fmt.Errorf("building request: %+v", err)
return
}
b, err := xml.Marshal(&input)
if err != nil {
return resp, fmt.Errorf("marshalling input: %v", err)
}
withHeader := xml.Header + string(b)
bytesWithHeader := []byte(withHeader)
req.ContentLength = int64(len(bytesWithHeader))
req.Header.Set("Content-Length", strconv.Itoa(len(bytesWithHeader)))
req.Body = io.NopCloser(bytes.NewReader(bytesWithHeader))
resp.HttpResponse, err = req.Execute(ctx)
if err != nil {
err = fmt.Errorf("executing request: %+v", err)
return
}
return
}
type setAclOptions struct {
SignedIdentifiers []SignedIdentifier `xml:"SignedIdentifier"`
}
func (s setAclOptions) ToHeaders() *client.Headers {
return nil
}
func (s setAclOptions) ToOData() *odata.Query {
return nil
}
func (s setAclOptions) ToQuery() *client.QueryParams {
out := &client.QueryParams{}
out.Append("restype", "share")
out.Append("comp", "acl")
return out
}