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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
package management
import (
"bytes"
"fmt"
"github.com/Azure/azure-sdk-for-go/core/http"
"github.com/Azure/azure-sdk-for-go/core/tls"
)
const (
msVersionHeader = "x-ms-version"
requestIDHeader = "x-ms-request-id"
uaHeader = "User-Agent"
contentHeader = "Content-Type"
defaultContentHeaderValue = "application/xml"
)
func (client client) SendAzureGetRequest(url string) ([]byte, error) {
resp, err := client.sendAzureRequest("GET", url, "", nil)
if err != nil {
return nil, err
}
return getResponseBody(resp)
}
func (client client) SendAzurePostRequest(url string, data []byte) (OperationID, error) {
return client.doAzureOperation("POST", url, "", data)
}
func (client client) SendAzurePostRequestWithReturnedResponse(url string, data []byte) ([]byte, error) {
resp, err := client.sendAzureRequest("POST", url, "", data)
if err != nil {
return nil, err
}
return getResponseBody(resp)
}
func (client client) SendAzurePutRequest(url, contentType string, data []byte) (OperationID, error) {
return client.doAzureOperation("PUT", url, contentType, data)
}
func (client client) SendAzureDeleteRequest(url string) (OperationID, error) {
return client.doAzureOperation("DELETE", url, "", nil)
}
func (client client) doAzureOperation(method, url, contentType string, data []byte) (OperationID, error) {
response, err := client.sendAzureRequest(method, url, contentType, data)
if err != nil {
return "", err
}
return getOperationID(response)
}
func getOperationID(response *http.Response) (OperationID, error) {
requestID := response.Header.Get(requestIDHeader)
if requestID == "" {
return "", fmt.Errorf("Could not retrieve operation id from %q header", requestIDHeader)
}
return OperationID(requestID), nil
}
// sendAzureRequest constructs an HTTP client for the request, sends it to the
// management API and returns the response or an error.
func (client client) sendAzureRequest(method, url, contentType string, data []byte) (*http.Response, error) {
if method == "" {
return nil, fmt.Errorf(errParamNotSpecified, "method")
}
if url == "" {
return nil, fmt.Errorf(errParamNotSpecified, "url")
}
httpClient := client.createHTTPClient()
response, err := client.sendRequest(httpClient, url, method, contentType, data, 5)
if err != nil {
return nil, err
}
return response, nil
}
// createHTTPClient creates an HTTP Client configured with the key pair for
// the subscription for this client.
func (client client) createHTTPClient() *http.Client {
cert, _ := tls.X509KeyPair(client.publishSettings.SubscriptionCert, client.publishSettings.SubscriptionKey)
ssl := &tls.Config{}
ssl.Certificates = []tls.Certificate{cert}
httpClient := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: ssl,
},
}
return httpClient
}
// sendRequest sends a request to the Azure management API using the given
// HTTP client and parameters. It returns the response from the call or an
// error.
func (client client) sendRequest(httpClient *http.Client, url, requestType, contentType string, data []byte, numberOfRetries int) (*http.Response, error) {
absURI := client.createAzureRequestURI(url)
for {
request, reqErr := client.createAzureRequest(absURI, requestType, contentType, data)
if reqErr != nil {
return nil, reqErr
}
response, err := httpClient.Do(request)
if err != nil {
if numberOfRetries == 0 {
return nil, err
}
return client.sendRequest(httpClient, url, requestType, contentType, data, numberOfRetries-1)
}
if response.StatusCode == http.StatusTemporaryRedirect {
// ASM's way of moving traffic around, see https://msdn.microsoft.com/en-us/library/azure/ee460801.aspx
// Only handled automatically for GET/HEAD requests. This is for the rest of the http verbs.
u, err := response.Location()
if err != nil {
return response, fmt.Errorf("Redirect requested but location header could not be retrieved: %v", err)
}
absURI = u.String()
continue // re-issue request
}
if response.StatusCode >= http.StatusBadRequest {
body, err := getResponseBody(response)
if err != nil {
// Failed to read the response body
return nil, err
}
azureErr := getAzureError(body)
if azureErr != nil {
if numberOfRetries == 0 {
return nil, azureErr
}
return client.sendRequest(httpClient, url, requestType, contentType, data, numberOfRetries-1)
}
}
return response, nil
}
}
// createAzureRequestURI constructs the request uri using the management API endpoint and
// subscription ID associated with the client.
func (client client) createAzureRequestURI(url string) string {
return fmt.Sprintf("%s/%s/%s", client.config.ManagementURL, client.publishSettings.SubscriptionID, url)
}
// createAzureRequest packages up the request with the correct set of headers and returns
// the request object or an error.
func (client client) createAzureRequest(url string, requestType string, contentType string, data []byte) (*http.Request, error) {
var request *http.Request
var err error
if data != nil {
body := bytes.NewBuffer(data)
request, err = http.NewRequest(requestType, url, body)
} else {
request, err = http.NewRequest(requestType, url, nil)
}
if err != nil {
return nil, err
}
request.Header.Set(msVersionHeader, client.config.APIVersion)
request.Header.Set(uaHeader, client.config.UserAgent)
if contentType != "" {
request.Header.Set(contentHeader, contentType)
} else {
request.Header.Set(contentHeader, defaultContentHeaderValue)
}
return request, nil
}
|