2020-08-18 11:38:23 +02:00
|
|
|
/*
|
2020-09-22 12:13:00 +02:00
|
|
|
Copyright 2020 Docker Compose CLI authors
|
2020-08-18 11:38:23 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-08-17 17:48:52 +02:00
|
|
|
package ecs
|
2020-06-11 19:22:12 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-10-02 14:08:23 +02:00
|
|
|
|
2020-12-16 16:16:39 +01:00
|
|
|
"github.com/docker/compose-cli/api/compose"
|
|
|
|
|
2021-01-15 15:57:24 +01:00
|
|
|
"github.com/docker/compose-cli/api/progress"
|
2020-06-11 19:22:12 +02:00
|
|
|
)
|
|
|
|
|
2020-12-16 16:16:39 +01:00
|
|
|
func (b *ecsAPIService) Down(ctx context.Context, projectName string, options compose.DownOptions) error {
|
2020-12-16 10:14:31 +01:00
|
|
|
resources, err := b.aws.ListStackResources(ctx, projectName)
|
2020-10-02 14:08:23 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-10-14 08:47:03 +02:00
|
|
|
err = resources.apply(awsTypeCapacityProvider, doDelete(ctx, b.aws.DeleteCapacityProvider))
|
2020-10-02 14:08:23 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-10-14 08:47:03 +02:00
|
|
|
err = resources.apply(awsTypeAutoscalingGroup, doDelete(ctx, b.aws.DeleteAutoscalingGroup))
|
2020-10-02 14:08:23 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-12-16 10:14:31 +01:00
|
|
|
previousEvents, err := b.previousStackEvents(ctx, projectName)
|
2020-06-11 19:22:12 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-10-02 14:08:23 +02:00
|
|
|
|
2020-12-16 10:14:31 +01:00
|
|
|
err = b.aws.DeleteStack(ctx, projectName)
|
2020-10-02 14:08:23 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-12-16 10:14:31 +01:00
|
|
|
return b.WaitStackCompletion(ctx, projectName, stackDelete, previousEvents...)
|
2020-10-02 14:08:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *ecsAPIService) previousStackEvents(ctx context.Context, project string) ([]string, error) {
|
2020-10-12 16:21:48 +02:00
|
|
|
events, err := b.aws.DescribeStackEvents(ctx, project)
|
2020-10-02 14:08:23 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var previousEvents []string
|
|
|
|
for _, e := range events {
|
|
|
|
previousEvents = append(previousEvents, *e.EventId)
|
|
|
|
}
|
|
|
|
return previousEvents, nil
|
|
|
|
}
|
|
|
|
|
2020-10-14 08:47:03 +02:00
|
|
|
func doDelete(ctx context.Context, delete func(ctx context.Context, arn string) error) func(r stackResource) error {
|
2020-10-02 14:08:23 +02:00
|
|
|
return func(r stackResource) error {
|
|
|
|
w := progress.ContextWriter(ctx)
|
2020-11-27 17:39:22 +01:00
|
|
|
w.Event(progress.RemovingEvent(r.LogicalID))
|
|
|
|
err := delete(ctx, r.ARN)
|
|
|
|
if err != nil {
|
2020-11-27 18:18:14 +01:00
|
|
|
w.Event(progress.ErrorEvent(r.LogicalID))
|
2020-11-27 17:39:22 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
w.Event(progress.RemovedEvent(r.LogicalID))
|
|
|
|
return nil
|
2020-10-02 14:08:23 +02:00
|
|
|
}
|
2020-07-15 16:27:24 +02:00
|
|
|
}
|