| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 | 
							- package azure
 
- import (
 
- 	"context"
 
- 	"fmt"
 
- 	"io"
 
- 	"strconv"
 
- 	"strings"
 
- 	"github.com/Azure/azure-sdk-for-go/services/containerinstance/mgmt/2018-10-01/containerinstance"
 
- 	"github.com/Azure/go-autorest/autorest/azure/auth"
 
- 	"github.com/compose-spec/compose-go/types"
 
- 	"github.com/pkg/errors"
 
- 	"github.com/sirupsen/logrus"
 
- 	"github.com/docker/api/azure/convert"
 
- 	"github.com/docker/api/backend"
 
- 	"github.com/docker/api/compose"
 
- 	"github.com/docker/api/containers"
 
- 	apicontext "github.com/docker/api/context"
 
- 	"github.com/docker/api/context/store"
 
- )
 
- const singleContainerName = "single--container--aci"
 
- func init() {
 
- 	backend.Register("aci", "aci", func(ctx context.Context) (backend.Service, error) {
 
- 		return New(ctx)
 
- 	})
 
- }
 
- func getter() interface{} {
 
- 	return &store.AciContext{}
 
- }
 
- // New creates a backend that can manage containers
 
- func New(ctx context.Context) (backend.Service, error) {
 
- 	currentContext := apicontext.CurrentContext(ctx)
 
- 	contextStore, err := store.New()
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	metadata, err := contextStore.Get(currentContext, getter)
 
- 	if err != nil {
 
- 		return nil, errors.Wrap(err, "wrong context type")
 
- 	}
 
- 	aciContext, _ := metadata.Metadata.Data.(store.AciContext)
 
- 	auth, _ := auth.NewAuthorizerFromCLI()
 
- 	containerGroupsClient := containerinstance.NewContainerGroupsClient(aciContext.SubscriptionID)
 
- 	containerGroupsClient.Authorizer = auth
 
- 	return getAciAPIService(containerGroupsClient, aciContext), nil
 
- }
 
- func getAciAPIService(cgc containerinstance.ContainerGroupsClient, aciCtx store.AciContext) *aciAPIService {
 
- 	return &aciAPIService{
 
- 		aciContainerService: aciContainerService{
 
- 			containerGroupsClient: cgc,
 
- 			ctx:                   aciCtx,
 
- 		},
 
- 		aciComposeService: aciComposeService{
 
- 			containerGroupsClient: cgc,
 
- 			ctx:                   aciCtx,
 
- 		},
 
- 	}
 
- }
 
- type aciAPIService struct {
 
- 	aciContainerService
 
- 	aciComposeService
 
- }
 
- func (a *aciAPIService) ContainerService() containers.Service {
 
- 	return &aciContainerService{
 
- 		containerGroupsClient: a.aciContainerService.containerGroupsClient,
 
- 		ctx:                   a.aciContainerService.ctx,
 
- 	}
 
- }
 
- func (a *aciAPIService) ComposeService() compose.Service {
 
- 	return &aciComposeService{
 
- 		containerGroupsClient: a.aciComposeService.containerGroupsClient,
 
- 		ctx:                   a.aciComposeService.ctx,
 
- 	}
 
- }
 
- type aciContainerService struct {
 
- 	containerGroupsClient containerinstance.ContainerGroupsClient
 
- 	ctx                   store.AciContext
 
- }
 
- func (cs *aciContainerService) List(ctx context.Context) ([]containers.Container, error) {
 
- 	var containerGroups []containerinstance.ContainerGroup
 
- 	result, err := cs.containerGroupsClient.ListByResourceGroup(ctx, cs.ctx.ResourceGroup)
 
- 	if err != nil {
 
- 		return []containers.Container{}, err
 
- 	}
 
- 	for result.NotDone() {
 
- 		containerGroups = append(containerGroups, result.Values()...)
 
- 		if err := result.NextWithContext(ctx); err != nil {
 
- 			return []containers.Container{}, err
 
- 		}
 
- 	}
 
- 	var res []containers.Container
 
- 	for _, containerGroup := range containerGroups {
 
- 		group, err := cs.containerGroupsClient.Get(ctx, cs.ctx.ResourceGroup, *containerGroup.Name)
 
- 		if err != nil {
 
- 			return []containers.Container{}, err
 
- 		}
 
- 		for _, container := range *group.Containers {
 
- 			var containerID string
 
- 			if *container.Name == singleContainerName {
 
- 				containerID = *containerGroup.Name
 
- 			} else {
 
- 				containerID = *containerGroup.Name + "_" + *container.Name
 
- 			}
 
- 			status := "Unknown"
 
- 			if container.InstanceView != nil && container.InstanceView.CurrentState != nil {
 
- 				status = *container.InstanceView.CurrentState.State
 
- 			}
 
- 			res = append(res, containers.Container{
 
- 				ID:     containerID,
 
- 				Image:  *container.Image,
 
- 				Status: status,
 
- 			})
 
- 		}
 
- 	}
 
- 	return res, nil
 
- }
 
- func (cs *aciContainerService) Run(ctx context.Context, r containers.ContainerConfig) error {
 
- 	var ports []types.ServicePortConfig
 
- 	for _, p := range r.Ports {
 
- 		ports = append(ports, types.ServicePortConfig{
 
- 			Target:    p.Destination,
 
- 			Published: p.Source,
 
- 		})
 
- 	}
 
- 	project := compose.Project{
 
- 		Name: r.ID,
 
- 		Config: types.Config{
 
- 			Services: []types.ServiceConfig{
 
- 				{
 
- 					Name:  singleContainerName,
 
- 					Image: r.Image,
 
- 					Ports: ports,
 
- 				},
 
- 			},
 
- 		},
 
- 	}
 
- 	logrus.Debugf("Running container %q with name %q\n", r.Image, r.ID)
 
- 	groupDefinition, err := convert.ToContainerGroup(cs.ctx, project)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	return createACIContainers(ctx, cs.ctx, groupDefinition)
 
- }
 
- func getGrouNameContainername(containerID string) (groupName string, containerName string) {
 
- 	tokens := strings.Split(containerID, "_")
 
- 	groupName = tokens[0]
 
- 	if len(tokens) > 1 {
 
- 		containerName = tokens[len(tokens)-1]
 
- 		groupName = containerID[:len(containerID)-(len(containerName)+1)]
 
- 	} else {
 
- 		containerName = singleContainerName
 
- 	}
 
- 	return groupName, containerName
 
- }
 
- func (cs *aciContainerService) Exec(ctx context.Context, name string, command string, reader io.Reader, writer io.Writer) error {
 
- 	groupName, containerAciName := getGrouNameContainername(name)
 
- 	containerExecResponse, err := execACIContainer(ctx, cs.ctx, command, groupName, containerAciName)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	return exec(
 
- 		context.Background(),
 
- 		*containerExecResponse.WebSocketURI,
 
- 		*containerExecResponse.Password,
 
- 		reader,
 
- 		writer,
 
- 	)
 
- }
 
- func (cs *aciContainerService) Logs(ctx context.Context, containerName string, req containers.LogsRequest) error {
 
- 	groupName, containerAciName := getGrouNameContainername(containerName)
 
- 	logs, err := getACIContainerLogs(ctx, cs.ctx, groupName, containerAciName)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	if req.Tail != "all" {
 
- 		tail, err := strconv.Atoi(req.Tail)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 		lines := strings.Split(logs, "\n")
 
- 		// If asked for less lines than exist, take only those lines
 
- 		if tail <= len(lines) {
 
- 			logs = strings.Join(lines[len(lines)-tail:], "\n")
 
- 		}
 
- 	}
 
- 	_, err = fmt.Fprint(req.Writer, logs)
 
- 	return err
 
- }
 
- type aciComposeService struct {
 
- 	containerGroupsClient containerinstance.ContainerGroupsClient
 
- 	ctx                   store.AciContext
 
- }
 
- func (cs *aciComposeService) Up(ctx context.Context, opts compose.ProjectOptions) error {
 
- 	project, err := compose.ProjectFromOptions(&opts)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	logrus.Debugf("Up on project with name %q\n", project.Name)
 
- 	groupDefinition, err := convert.ToContainerGroup(cs.ctx, *project)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	return createACIContainers(ctx, cs.ctx, groupDefinition)
 
- }
 
- func (cs *aciComposeService) Down(ctx context.Context, opts compose.ProjectOptions) error {
 
- 	project, err := compose.ProjectFromOptions(&opts)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	logrus.Debugf("Down on project with name %q\n", project.Name)
 
- 	_, err = deleteACIContainerGroup(ctx, cs.ctx, project.Name)
 
- 	return err
 
- }
 
 
  |