mirror of https://github.com/docker/compose.git
296 lines
7.8 KiB
Go
296 lines
7.8 KiB
Go
package azure
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/resources/mgmt/resources"
|
|
"github.com/Azure/azure-sdk-for-go/profiles/preview/preview/subscription/mgmt/subscription"
|
|
"github.com/Azure/azure-sdk-for-go/services/containerinstance/mgmt/2018-10-01/containerinstance"
|
|
"github.com/Azure/go-autorest/autorest"
|
|
"github.com/Azure/go-autorest/autorest/to"
|
|
tm "github.com/buger/goterm"
|
|
"github.com/gobwas/ws"
|
|
"github.com/gobwas/ws/wsutil"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/docker/api/azure/login"
|
|
"github.com/docker/api/errdefs"
|
|
|
|
"github.com/docker/api/context/store"
|
|
)
|
|
|
|
func createACIContainers(ctx context.Context, aciContext store.AciContext, groupDefinition containerinstance.ContainerGroup) error {
|
|
containerGroupsClient, err := getContainerGroupsClient(aciContext.SubscriptionID)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "cannot get container group client")
|
|
}
|
|
|
|
// Check if the container group already exists
|
|
_, err = containerGroupsClient.Get(ctx, aciContext.ResourceGroup, *groupDefinition.Name)
|
|
if err != nil {
|
|
if err, ok := err.(autorest.DetailedError); ok {
|
|
if err.StatusCode != http.StatusNotFound {
|
|
return err
|
|
}
|
|
} else {
|
|
return err
|
|
}
|
|
} else {
|
|
return fmt.Errorf("container group %q already exists", *groupDefinition.Name)
|
|
}
|
|
|
|
future, err := containerGroupsClient.CreateOrUpdate(
|
|
ctx,
|
|
aciContext.ResourceGroup,
|
|
*groupDefinition.Name,
|
|
groupDefinition,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = future.WaitForCompletionRef(ctx, containerGroupsClient.Client)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
containerGroup, err := future.Result(containerGroupsClient)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(*containerGroup.Containers) > 1 {
|
|
var commands []string
|
|
for _, container := range *containerGroup.Containers {
|
|
commands = append(commands, fmt.Sprintf("echo 127.0.0.1 %s >> /etc/hosts", *container.Name))
|
|
}
|
|
commands = append(commands, "exit")
|
|
|
|
containers := *containerGroup.Containers
|
|
container := containers[0]
|
|
response, err := execACIContainer(ctx, aciContext, "/bin/sh", *containerGroup.Name, *container.Name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = execCommands(
|
|
ctx,
|
|
*response.WebSocketURI,
|
|
*response.Password,
|
|
commands,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func deleteACIContainerGroup(ctx context.Context, aciContext store.AciContext, containerGroupName string) (containerinstance.ContainerGroup, error) {
|
|
containerGroupsClient, err := getContainerGroupsClient(aciContext.SubscriptionID)
|
|
if err != nil {
|
|
return containerinstance.ContainerGroup{}, fmt.Errorf("cannot get container group client: %v", err)
|
|
}
|
|
|
|
return containerGroupsClient.Delete(ctx, aciContext.ResourceGroup, containerGroupName)
|
|
}
|
|
|
|
func execACIContainer(ctx context.Context, aciContext store.AciContext, command, containerGroup string, containerName string) (c containerinstance.ContainerExecResponse, err error) {
|
|
containerClient, err := getContainerClient(aciContext.SubscriptionID)
|
|
if err != nil {
|
|
return c, errors.Wrapf(err, "cannot get container client")
|
|
}
|
|
rows, cols := getTermSize()
|
|
containerExecRequest := containerinstance.ContainerExecRequest{
|
|
Command: to.StringPtr(command),
|
|
TerminalSize: &containerinstance.ContainerExecRequestTerminalSize{
|
|
Rows: rows,
|
|
Cols: cols,
|
|
},
|
|
}
|
|
|
|
return containerClient.ExecuteCommand(
|
|
ctx,
|
|
aciContext.ResourceGroup,
|
|
containerGroup,
|
|
containerName,
|
|
containerExecRequest)
|
|
}
|
|
|
|
func getTermSize() (*int32, *int32) {
|
|
rows := tm.Height()
|
|
cols := tm.Width()
|
|
return to.Int32Ptr(int32(rows)), to.Int32Ptr(int32(cols))
|
|
}
|
|
|
|
type commandSender struct {
|
|
commands string
|
|
}
|
|
|
|
func (cs *commandSender) Read(p []byte) (int, error) {
|
|
if len(cs.commands) == 0 {
|
|
return 0, io.EOF
|
|
}
|
|
|
|
var command string
|
|
if len(p) >= len(cs.commands) {
|
|
command = cs.commands
|
|
cs.commands = ""
|
|
} else {
|
|
command = cs.commands[:len(p)]
|
|
cs.commands = cs.commands[len(p):]
|
|
}
|
|
|
|
copy(p, command)
|
|
|
|
return len(command), nil
|
|
}
|
|
|
|
func execCommands(ctx context.Context, address string, password string, commands []string) error {
|
|
writer := ioutil.Discard
|
|
reader := &commandSender{
|
|
commands: strings.Join(commands, "\n"),
|
|
}
|
|
return exec(ctx, address, password, reader, writer)
|
|
}
|
|
|
|
func exec(ctx context.Context, address string, password string, reader io.Reader, writer io.Writer) error {
|
|
conn, _, _, err := ws.DefaultDialer.Dial(ctx, address)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = wsutil.WriteClientMessage(conn, ws.OpText, []byte(password))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
downstreamChannel := make(chan error, 10)
|
|
upstreamChannel := make(chan error, 10)
|
|
|
|
go func() {
|
|
for {
|
|
msg, _, err := wsutil.ReadServerData(conn)
|
|
if err != nil {
|
|
if err == io.EOF {
|
|
downstreamChannel <- nil
|
|
return
|
|
}
|
|
downstreamChannel <- err
|
|
return
|
|
}
|
|
fmt.Fprint(writer, string(msg))
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
for {
|
|
// We send each byte, byte-per-byte over the
|
|
// websocket because the console is in raw mode
|
|
buffer := make([]byte, 1)
|
|
n, err := reader.Read(buffer)
|
|
if err != nil {
|
|
if err == io.EOF {
|
|
upstreamChannel <- nil
|
|
return
|
|
}
|
|
upstreamChannel <- err
|
|
return
|
|
}
|
|
|
|
if n > 0 {
|
|
err := wsutil.WriteClientMessage(conn, ws.OpText, buffer)
|
|
if err != nil {
|
|
upstreamChannel <- err
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
|
|
for {
|
|
select {
|
|
case err := <-downstreamChannel:
|
|
return errors.Wrap(err, "failed to read input from container")
|
|
case err := <-upstreamChannel:
|
|
return errors.Wrap(err, "failed to send input to container")
|
|
}
|
|
}
|
|
}
|
|
|
|
func getACIContainerLogs(ctx context.Context, aciContext store.AciContext, containerGroupName, containerName string) (string, error) {
|
|
containerClient, err := getContainerClient(aciContext.SubscriptionID)
|
|
if err != nil {
|
|
return "", errors.Wrapf(err, "cannot get container client")
|
|
}
|
|
|
|
logs, err := containerClient.ListLogs(ctx, aciContext.ResourceGroup, containerGroupName, containerName, nil)
|
|
if err != nil {
|
|
return "", fmt.Errorf("cannot get container logs: %v", err)
|
|
}
|
|
return *logs.Content, err
|
|
}
|
|
|
|
func getContainerGroupsClient(subscriptionID string) (containerinstance.ContainerGroupsClient, error) {
|
|
auth, err := login.NewAuthorizerFromLogin()
|
|
if err != nil {
|
|
return containerinstance.ContainerGroupsClient{}, err
|
|
}
|
|
containerGroupsClient := containerinstance.NewContainerGroupsClient(subscriptionID)
|
|
containerGroupsClient.Authorizer = auth
|
|
containerGroupsClient.PollingDelay = 5 * time.Second
|
|
containerGroupsClient.RetryAttempts = 30
|
|
containerGroupsClient.RetryDuration = 1 * time.Second
|
|
return containerGroupsClient, nil
|
|
}
|
|
|
|
func getContainerClient(subscriptionID string) (containerinstance.ContainerClient, error) {
|
|
auth, err := login.NewAuthorizerFromLogin()
|
|
if err != nil {
|
|
return containerinstance.ContainerClient{}, err
|
|
}
|
|
containerClient := containerinstance.NewContainerClient(subscriptionID)
|
|
containerClient.Authorizer = auth
|
|
return containerClient, nil
|
|
}
|
|
|
|
func getSubscriptionsClient() (subscription.SubscriptionsClient, error) {
|
|
subc := subscription.NewSubscriptionsClient()
|
|
authorizer, err := login.NewAuthorizerFromLogin()
|
|
if err != nil {
|
|
return subscription.SubscriptionsClient{}, errors.Wrap(errdefs.ErrLoginFailed, err.Error())
|
|
}
|
|
subc.Authorizer = authorizer
|
|
return subc, nil
|
|
}
|
|
|
|
// GetGroupsClient ...
|
|
func GetGroupsClient(subscriptionID string) resources.GroupsClient {
|
|
groupsClient := resources.NewGroupsClient(subscriptionID)
|
|
authorizer, _ := login.NewAuthorizerFromLogin()
|
|
groupsClient.Authorizer = authorizer
|
|
return groupsClient
|
|
}
|
|
|
|
// GetSubscriptionID ...
|
|
func GetSubscriptionID(ctx context.Context) (string, error) {
|
|
c, err := getSubscriptionsClient()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
res, err := c.List(ctx)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
subs := res.Values()
|
|
if len(subs) == 0 {
|
|
return "", errors.New("no subscriptions found")
|
|
}
|
|
sub := subs[0]
|
|
return *sub.SubscriptionID, nil
|
|
}
|