mirror of https://github.com/docker/compose.git
127 lines
3.5 KiB
Go
127 lines
3.5 KiB
Go
|
/*
|
||
|
Copyright 2020 Docker, Inc.
|
||
|
|
||
|
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"
|
||
|
"io"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/compose-spec/compose-go/types"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
|
||
|
"github.com/docker/compose-cli/aci/convert"
|
||
|
"github.com/docker/compose-cli/aci/login"
|
||
|
"github.com/docker/compose-cli/api/compose"
|
||
|
"github.com/docker/compose-cli/context/store"
|
||
|
"github.com/docker/compose-cli/errdefs"
|
||
|
)
|
||
|
|
||
|
type aciComposeService struct {
|
||
|
ctx store.AciContext
|
||
|
}
|
||
|
|
||
|
func (cs *aciComposeService) Up(ctx context.Context, project *types.Project) error {
|
||
|
logrus.Debugf("Up on project with name %q\n", project.Name)
|
||
|
groupDefinition, err := convert.ToContainerGroup(ctx, cs.ctx, *project)
|
||
|
addTag(&groupDefinition, composeContainerTag)
|
||
|
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return createOrUpdateACIContainers(ctx, cs.ctx, groupDefinition)
|
||
|
}
|
||
|
|
||
|
func (cs *aciComposeService) Down(ctx context.Context, project string) error {
|
||
|
logrus.Debugf("Down on project with name %q\n", project)
|
||
|
|
||
|
cg, err := deleteACIContainerGroup(ctx, cs.ctx, project)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if cg.StatusCode == http.StatusNoContent {
|
||
|
return errdefs.ErrNotFound
|
||
|
}
|
||
|
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
func (cs *aciComposeService) Ps(ctx context.Context, project string) ([]compose.ServiceStatus, error) {
|
||
|
groupsClient, err := login.NewContainerGroupsClient(cs.ctx.SubscriptionID)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
group, err := groupsClient.Get(ctx, cs.ctx.ResourceGroup, project)
|
||
|
if err != nil {
|
||
|
return []compose.ServiceStatus{}, err
|
||
|
}
|
||
|
|
||
|
if group.Containers == nil || len(*group.Containers) < 1 {
|
||
|
return []compose.ServiceStatus{}, fmt.Errorf("no containers found in ACI container group %s", project)
|
||
|
}
|
||
|
|
||
|
res := []compose.ServiceStatus{}
|
||
|
for _, container := range *group.Containers {
|
||
|
if isContainerVisible(container, group, false) {
|
||
|
continue
|
||
|
}
|
||
|
res = append(res, convert.ContainerGroupToServiceStatus(getContainerID(group, container), group, container))
|
||
|
}
|
||
|
return res, nil
|
||
|
}
|
||
|
|
||
|
func (cs *aciComposeService) List(ctx context.Context, project string) ([]compose.Stack, error) {
|
||
|
containerGroups, err := getACIContainerGroups(ctx, cs.ctx.SubscriptionID, cs.ctx.ResourceGroup)
|
||
|
if err != nil {
|
||
|
return []compose.Stack{}, err
|
||
|
}
|
||
|
|
||
|
stacks := []compose.Stack{}
|
||
|
for _, group := range containerGroups {
|
||
|
if _, found := group.Tags[composeContainerTag]; !found {
|
||
|
continue
|
||
|
}
|
||
|
if project != "" && *group.Name != project {
|
||
|
continue
|
||
|
}
|
||
|
state := compose.RUNNING
|
||
|
for _, container := range *group.ContainerGroupProperties.Containers {
|
||
|
containerState := convert.GetStatus(container, group)
|
||
|
if containerState != compose.RUNNING {
|
||
|
state = containerState
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
stacks = append(stacks, compose.Stack{
|
||
|
ID: *group.ID,
|
||
|
Name: *group.Name,
|
||
|
Status: state,
|
||
|
})
|
||
|
}
|
||
|
return stacks, nil
|
||
|
}
|
||
|
|
||
|
func (cs *aciComposeService) Logs(ctx context.Context, project string, w io.Writer) error {
|
||
|
return errdefs.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
func (cs *aciComposeService) Convert(ctx context.Context, project *types.Project) ([]byte, error) {
|
||
|
return nil, errdefs.ErrNotImplemented
|
||
|
}
|