| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 | /*	Copyright (c) 2020 Docker Inc.	Permission is hereby granted, free of charge, to any person	obtaining a copy of this software and associated documentation	files (the "Software"), to deal in the Software without	restriction, including without limitation the rights to use, copy,	modify, merge, publish, distribute, sublicense, and/or sell copies	of the Software, and to permit persons to whom the Software is	furnished to do so, subject to the following conditions:	The above copyright notice and this permission notice shall be	included in all copies or substantial portions of the Software.	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,	EXPRESS OR IMPLIED,	INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,	FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.	IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT	HOLDERS BE LIABLE FOR ANY CLAIM,	DAMAGES OR OTHER LIABILITY,	WHETHER IN AN ACTION OF CONTRACT,	TORT OR OTHERWISE,	ARISING FROM, OUT OF OR IN CONNECTION WITH	THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/package azureimport (	"context"	"fmt"	"os"	"github.com/AlecAivazis/survey/v2"	"github.com/Azure/azure-sdk-for-go/profiles/preview/preview/subscription/mgmt/subscription"	"github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2018-05-01/resources"	"github.com/google/uuid"	"github.com/pkg/errors"	"github.com/tj/survey/terminal"	"github.com/docker/api/context/store")type contextCreateACIHelper struct {	selector            userSelector	resourceGroupHelper ACIResourceGroupHelper}func newContextCreateHelper() contextCreateACIHelper {	return contextCreateACIHelper{		selector:            cliUserSelector{},		resourceGroupHelper: aciResourceGroupHelperImpl{},	}}func (helper contextCreateACIHelper) createContextData(ctx context.Context, opts map[string]string) (interface{}, string, error) {	var subscriptionID string	if opts["aciSubscriptionID"] != "" {		subscriptionID = opts["aciSubscriptionID"]	} else {		subs, err := helper.resourceGroupHelper.GetSubscriptionIDs(ctx)		if err != nil {			return nil, "", err		}		subscriptionID, err = helper.chooseSub(subs)		if err != nil {			return nil, "", err		}	}	var group resources.Group	var err error	if opts["aciResourceGroup"] != "" {		group, err = helper.resourceGroupHelper.GetGroup(ctx, subscriptionID, opts["aciResourceGroup"])		if err != nil {			return nil, "", errors.Wrapf(err, "Could not find resource group %q", opts["aciResourceGroup"])		}	} else {		groups, err := helper.resourceGroupHelper.ListGroups(ctx, subscriptionID)		if err != nil {			return nil, "", err		}		group, err = helper.chooseGroup(ctx, subscriptionID, opts, groups)		if err != nil {			return nil, "", err		}	}	location := opts["aciLocation"]	if location == "" {		location = *group.Location	}	description := fmt.Sprintf("%s@%s", *group.Name, location)	if opts["description"] != "" {		description = fmt.Sprintf("%s (%s)", opts["description"], description)	}	return store.AciContext{		SubscriptionID: subscriptionID,		Location:       location,		ResourceGroup:  *group.Name,	}, description, nil}func (helper contextCreateACIHelper) createGroup(ctx context.Context, subscriptionID, location string) (resources.Group, error) {	if location == "" {		location = "eastus"	}	gid := uuid.New().String()	g, err := helper.resourceGroupHelper.CreateOrUpdate(ctx, subscriptionID, gid, resources.Group{		Location: &location,	})	if err != nil {		return resources.Group{}, err	}	fmt.Printf("Resource group %q (%s) created\n", *g.Name, *g.Location)	return g, nil}func (helper contextCreateACIHelper) chooseGroup(ctx context.Context, subscriptionID string, opts map[string]string, groups []resources.Group) (resources.Group, error) {	groupNames := []string{"create a new resource group"}	for _, g := range groups {		groupNames = append(groupNames, fmt.Sprintf("%s (%s)", *g.Name, *g.Location))	}	group, err := helper.selector.userSelect("Select a resource group", groupNames)	if err != nil {		if err == terminal.InterruptErr {			os.Exit(0)		}		return resources.Group{}, err	}	if group == 0 {		return helper.createGroup(ctx, subscriptionID, opts["aciLocation"])	}	return groups[group-1], nil}func (helper contextCreateACIHelper) chooseSub(subs []subscription.Model) (string, error) {	if len(subs) == 1 {		sub := subs[0]		fmt.Println("Using only available subscription : " + display(sub))		return *sub.SubscriptionID, nil	}	var options []string	for _, sub := range subs {		options = append(options, display(sub))	}	selected, err := helper.selector.userSelect("Select a subscription ID", options)	if err != nil {		if err == terminal.InterruptErr {			os.Exit(0)		}		return "", err	}	return *subs[selected].SubscriptionID, nil}func display(sub subscription.Model) string {	return fmt.Sprintf("%s (%s)", *sub.DisplayName, *sub.SubscriptionID)}type userSelector interface {	userSelect(message string, options []string) (int, error)}type cliUserSelector struct{}func (us cliUserSelector) userSelect(message string, options []string) (int, error) {	qs := &survey.Select{		Message: message,		Options: options,	}	var selected int	err := survey.AskOne(qs, &selected, nil)	return selected, err}
 |