| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /*
- Copyright 2020 Docker Compose CLI authors
- 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.
- */
- package aci
- import (
- "context"
- "fmt"
- "net/http"
- "strings"
- "github.com/pkg/errors"
- "github.com/Azure/azure-sdk-for-go/services/containerinstance/mgmt/2019-12-01/containerinstance"
- "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-06-01/storage"
- "github.com/Azure/go-autorest/autorest/to"
- "github.com/docker/compose-cli/aci/login"
- "github.com/docker/compose-cli/api/context/store"
- "github.com/docker/compose-cli/api/progress"
- "github.com/docker/compose-cli/api/volumes"
- "github.com/docker/compose-cli/pkg/api"
- )
- type aciVolumeService struct {
- aciContext store.AciContext
- }
- func (cs *aciVolumeService) List(ctx context.Context) ([]volumes.Volume, error) {
- accountClient, err := login.NewStorageAccountsClient(cs.aciContext.SubscriptionID)
- if err != nil {
- return nil, err
- }
- result, err := accountClient.ListByResourceGroup(ctx, cs.aciContext.ResourceGroup)
- if err != nil {
- return nil, err
- }
- accounts := result.Value
- fileShareClient, err := login.NewFileShareClient(cs.aciContext.SubscriptionID)
- if err != nil {
- return nil, err
- }
- fileShares := []volumes.Volume{}
- for _, account := range *accounts {
- fileSharePage, err := fileShareClient.List(ctx, cs.aciContext.ResourceGroup, *account.Name, "", "", "")
- if err != nil {
- return nil, err
- }
- for fileSharePage.NotDone() {
- values := fileSharePage.Values()
- for _, fileShare := range values {
- fileShares = append(fileShares, toVolume(*account.Name, *fileShare.Name))
- }
- if err := fileSharePage.NextWithContext(ctx); err != nil {
- return nil, err
- }
- }
- }
- return fileShares, nil
- }
- // VolumeCreateOptions options to create a new ACI volume
- type VolumeCreateOptions struct {
- Account string
- }
- func (cs *aciVolumeService) Create(ctx context.Context, name string, options interface{}) (volumes.Volume, error) {
- opts, ok := options.(*VolumeCreateOptions)
- if !ok || opts == nil {
- return volumes.Volume{}, errors.New("could not read Azure VolumeCreateOptions struct from generic parameter")
- }
- w := progress.ContextWriter(ctx)
- w.Event(progress.NewEvent(opts.Account, progress.Working, "Validating"))
- accountClient, err := login.NewStorageAccountsClient(cs.aciContext.SubscriptionID)
- if err != nil {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, err
- }
- account, err := accountClient.GetProperties(ctx, cs.aciContext.ResourceGroup, opts.Account, "")
- if err == nil {
- w.Event(progress.NewEvent(opts.Account, progress.Done, "Use existing"))
- } else if !account.HasHTTPStatus(http.StatusNotFound) {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, err
- } else {
- result, err := accountClient.CheckNameAvailability(ctx, storage.AccountCheckNameAvailabilityParameters{
- Name: to.StringPtr(opts.Account),
- Type: to.StringPtr("Microsoft.Storage/storageAccounts"),
- })
- if err != nil {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, err
- }
- if !*result.NameAvailable {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, errors.New("error: " + *result.Message)
- }
- parameters := defaultStorageAccountParams(cs.aciContext)
- w.Event(progress.CreatingEvent(opts.Account))
- future, err := accountClient.Create(ctx, cs.aciContext.ResourceGroup, opts.Account, parameters)
- if err != nil {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, err
- }
- if err := future.WaitForCompletionRef(ctx, accountClient.Client); err != nil {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, err
- }
- account, err = future.Result(accountClient)
- if err != nil {
- w.Event(progress.ErrorEvent(opts.Account))
- return volumes.Volume{}, err
- }
- w.Event(progress.CreatedEvent(opts.Account))
- }
- w.Event(progress.CreatingEvent(name))
- fileShareClient, err := login.NewFileShareClient(cs.aciContext.SubscriptionID)
- if err != nil {
- return volumes.Volume{}, err
- }
- fileShare, err := fileShareClient.Get(ctx, cs.aciContext.ResourceGroup, *account.Name, name, "")
- if err == nil {
- w.Event(progress.ErrorEvent(name))
- return volumes.Volume{}, errors.Wrapf(api.ErrAlreadyExists, "Azure fileshare %q already exists", name)
- }
- if !fileShare.HasHTTPStatus(http.StatusNotFound) {
- w.Event(progress.ErrorEvent(name))
- return volumes.Volume{}, err
- }
- fileShare, err = fileShareClient.Create(ctx, cs.aciContext.ResourceGroup, *account.Name, name, storage.FileShare{})
- if err != nil {
- w.Event(progress.ErrorEvent(name))
- return volumes.Volume{}, err
- }
- w.Event(progress.CreatedEvent(name))
- return toVolume(*account.Name, *fileShare.Name), nil
- }
- func checkVolumeUsage(ctx context.Context, aciContext store.AciContext, id string) error {
- containerGroups, err := getACIContainerGroups(ctx, aciContext.SubscriptionID, aciContext.ResourceGroup)
- if err != nil {
- return err
- }
- for _, cg := range containerGroups {
- if hasVolume(cg.Volumes, id) {
- return errors.Errorf("volume %q is used in container group %q",
- id, *cg.Name)
- }
- }
- return nil
- }
- func hasVolume(volumes *[]containerinstance.Volume, id string) bool {
- if volumes == nil {
- return false
- }
- for _, v := range *volumes {
- if v.AzureFile != nil && v.AzureFile.StorageAccountName != nil && v.AzureFile.ShareName != nil &&
- (*v.AzureFile.StorageAccountName+"/"+*v.AzureFile.ShareName) == id {
- return true
- }
- }
- return false
- }
- func (cs *aciVolumeService) Delete(ctx context.Context, id string, options interface{}) error {
- err := checkVolumeUsage(ctx, cs.aciContext, id)
- if err != nil {
- return err
- }
- storageAccount, fileshare, err := getStorageAccountAndFileshare(id)
- if err != nil {
- return err
- }
- fileShareClient, err := login.NewFileShareClient(cs.aciContext.SubscriptionID)
- if err != nil {
- return err
- }
- fileShareItemsPage, err := fileShareClient.List(ctx, cs.aciContext.ResourceGroup, storageAccount, "", "", "")
- if err != nil {
- return err
- }
- fileshares := fileShareItemsPage.Values()
- if len(fileshares) == 1 && *fileshares[0].Name == fileshare {
- storageAccountsClient, err := login.NewStorageAccountsClient(cs.aciContext.SubscriptionID)
- if err != nil {
- return err
- }
- account, err := storageAccountsClient.GetProperties(ctx, cs.aciContext.ResourceGroup, storageAccount, "")
- if err != nil {
- return err
- }
- if err == nil {
- if _, ok := account.Tags[dockerVolumeTag]; ok {
- result, err := storageAccountsClient.Delete(ctx, cs.aciContext.ResourceGroup, storageAccount)
- if result.IsHTTPStatus(http.StatusNoContent) {
- return errors.Wrapf(api.ErrNotFound, "storage account %s does not exist", storageAccount)
- }
- return err
- }
- }
- }
- result, err := fileShareClient.Delete(ctx, cs.aciContext.ResourceGroup, storageAccount, fileshare)
- if result.HasHTTPStatus(http.StatusNoContent) {
- return errors.Wrapf(api.ErrNotFound, "fileshare %q", fileshare)
- }
- return err
- }
- func (cs *aciVolumeService) Inspect(ctx context.Context, id string) (volumes.Volume, error) {
- storageAccount, fileshareName, err := getStorageAccountAndFileshare(id)
- if err != nil {
- return volumes.Volume{}, err
- }
- fileShareClient, err := login.NewFileShareClient(cs.aciContext.SubscriptionID)
- if err != nil {
- return volumes.Volume{}, err
- }
- res, err := fileShareClient.Get(ctx, cs.aciContext.ResourceGroup, storageAccount, fileshareName, "")
- if err != nil { // Just checks if it exists
- if res.HasHTTPStatus(http.StatusNotFound) {
- return volumes.Volume{}, errors.Wrapf(api.ErrNotFound, "account %q, file share %q. Original message %s", storageAccount, fileshareName, err.Error())
- }
- return volumes.Volume{}, err
- }
- return toVolume(storageAccount, fileshareName), nil
- }
- func toVolume(storageAccountName string, fileShareName string) volumes.Volume {
- return volumes.Volume{
- ID: volumeID(storageAccountName, fileShareName),
- Description: fmt.Sprintf("Fileshare %s in %s storage account", fileShareName, storageAccountName),
- }
- }
- func volumeID(storageAccount string, fileShareName string) string {
- return fmt.Sprintf("%s/%s", storageAccount, fileShareName)
- }
- func defaultStorageAccountParams(aciContext store.AciContext) storage.AccountCreateParameters {
- tags := map[string]*string{dockerVolumeTag: to.StringPtr(dockerVolumeTag)}
- return storage.AccountCreateParameters{
- Location: to.StringPtr(aciContext.Location),
- Sku: &storage.Sku{
- Name: storage.StandardLRS,
- },
- Tags: tags,
- }
- }
- func getStorageAccountAndFileshare(volumeID string) (string, string, error) {
- tokens := strings.Split(volumeID, "/")
- if len(tokens) != 2 {
- return "", "", errors.New("invalid format for volume ID, expected storageaccount/fileshare")
- }
- return tokens[0], tokens[1], nil
- }
|