package storage // Copyright 2017 Microsoft Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import ( "net/http" "net/url" "strconv" ) // ServiceProperties represents the storage account service properties type ServiceProperties struct { Logging *Logging HourMetrics *Metrics MinuteMetrics *Metrics Cors *Cors } // Logging represents the Azure Analytics Logging settings type Logging struct { Version string Delete bool Read bool Write bool RetentionPolicy *RetentionPolicy } // RetentionPolicy indicates if retention is enabled and for how many days type RetentionPolicy struct { Enabled bool Days *int } // Metrics provide request statistics. type Metrics struct { Version string Enabled bool IncludeAPIs *bool RetentionPolicy *RetentionPolicy } // Cors includes all the CORS rules type Cors struct { CorsRule []CorsRule } // CorsRule includes all settings for a Cors rule type CorsRule struct { AllowedOrigins string AllowedMethods string MaxAgeInSeconds int ExposedHeaders string AllowedHeaders string } func (c Client) getServiceProperties(service string, auth authentication) (*ServiceProperties, error) { query := url.Values{ "restype": {"service"}, "comp": {"properties"}, } uri := c.getEndpoint(service, "", query) headers := c.getStandardHeaders() resp, err := c.exec(http.MethodGet, uri, headers, nil, auth) if err != nil { return nil, err } defer resp.Body.Close() if err := checkRespCode(resp, []int{http.StatusOK}); err != nil { return nil, err } var out ServiceProperties err = xmlUnmarshal(resp.Body, &out) if err != nil { return nil, err } return &out, nil } func (c Client) setServiceProperties(props ServiceProperties, service string, auth authentication) error { query := url.Values{ "restype": {"service"}, "comp": {"properties"}, } uri := c.getEndpoint(service, "", query) // Ideally, StorageServiceProperties would be the output struct // This is to avoid golint stuttering, while generating the correct XML type StorageServiceProperties struct { Logging *Logging HourMetrics *Metrics MinuteMetrics *Metrics Cors *Cors } input := StorageServiceProperties{ Logging: props.Logging, HourMetrics: props.HourMetrics, MinuteMetrics: props.MinuteMetrics, Cors: props.Cors, } body, length, err := xmlMarshal(input) if err != nil { return err } headers := c.getStandardHeaders() headers["Content-Length"] = strconv.Itoa(length) resp, err := c.exec(http.MethodPut, uri, headers, body, auth) if err != nil { return err } defer drainRespBody(resp) return checkRespCode(resp, []int{http.StatusAccepted}) }