2016-04-21 19:50:03 -04:00
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
2016-05-06 23:32:18 -04:00
|
|
|
// Licensed under the MIT License. See the LICENSE file in builder/azure for license information.
|
2016-04-21 19:50:03 -04:00
|
|
|
|
|
|
|
// NOTE: vault APIs do not yet exist in the SDK, but once they do this code
|
|
|
|
// should be removed.
|
|
|
|
|
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2016-06-28 20:20:15 -04:00
|
|
|
"fmt"
|
2016-04-21 19:50:03 -04:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/Azure/go-autorest/autorest"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
AzureVaultApiVersion = "2015-06-01"
|
|
|
|
AzureVaultScope = "https://vault.azure.net"
|
|
|
|
AzureVaultSecretTemplate = "https://{vault-name}.vault.azure.net/secrets/{secret-name}"
|
|
|
|
)
|
|
|
|
|
|
|
|
type VaultClient struct {
|
|
|
|
autorest.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
type Secret struct {
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
Attributes SecretAttributes `json:"attributes"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SecretAttributes struct {
|
|
|
|
Enabled bool `json:"enabled"`
|
|
|
|
Created *string `json:"created"`
|
|
|
|
Updated *string `json:"updated"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (client *VaultClient) GetSecret(vaultName, secretName string) (*Secret, error) {
|
|
|
|
p := map[string]interface{}{
|
|
|
|
"secret-name": secretName,
|
|
|
|
}
|
|
|
|
q := map[string]interface{}{
|
|
|
|
"api-version": AzureVaultApiVersion,
|
|
|
|
}
|
|
|
|
|
|
|
|
secretURL := strings.Replace(AzureVaultSecretTemplate, "{vault-name}", vaultName, -1)
|
|
|
|
|
|
|
|
req, err := autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(secretURL),
|
|
|
|
autorest.WithPathParameters(p),
|
|
|
|
autorest.WithQueryParameters(q))
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := autorest.SendWithSender(client, req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-06-28 20:20:15 -04:00
|
|
|
if resp.StatusCode != 200 {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Failed to fetch secret from %s/%s, HTTP status code=%d (%s)",
|
|
|
|
vaultName,
|
|
|
|
secretName,
|
|
|
|
resp.StatusCode,
|
|
|
|
http.StatusText(resp.StatusCode))
|
|
|
|
}
|
|
|
|
|
2016-04-21 19:50:03 -04:00
|
|
|
var secret Secret
|
|
|
|
|
|
|
|
err = autorest.Respond(
|
|
|
|
resp,
|
|
|
|
autorest.ByUnmarshallingJSON(&secret))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &secret, nil
|
|
|
|
}
|