| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 | 
							- /*
 
-    Copyright 2020 Docker Compose CLI authors
 
-    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 compose
 
- import (
 
- 	"context"
 
- 	"fmt"
 
- 	"strings"
 
- 	"time"
 
- 	"github.com/compose-spec/compose-go/types"
 
- 	"github.com/docker/cli/cli/registry/client"
 
- 	moby "github.com/docker/docker/api/types"
 
- 	"github.com/docker/docker/errdefs"
 
- 	"golang.org/x/sync/errgroup"
 
- 	"github.com/docker/compose/v2/pkg/api"
 
- 	"github.com/docker/compose/v2/pkg/progress"
 
- )
 
- type downOp func() error
 
- func (s *composeService) Down(ctx context.Context, projectName string, options api.DownOptions) error {
 
- 	return progress.Run(ctx, func(ctx context.Context) error {
 
- 		return s.down(ctx, strings.ToLower(projectName), options)
 
- 	})
 
- }
 
- func (s *composeService) down(ctx context.Context, projectName string, options api.DownOptions) error {
 
- 	w := progress.ContextWriter(ctx)
 
- 	resourceToRemove := false
 
- 	var containers Containers
 
- 	containers, err := s.getContainers(ctx, projectName, oneOffInclude, true)
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	project := options.Project
 
- 	if project == nil {
 
- 		project, err = s.getProjectWithResources(ctx, containers, projectName)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 	}
 
- 	if len(containers) > 0 {
 
- 		resourceToRemove = true
 
- 	}
 
- 	err = InReverseDependencyOrder(ctx, project, func(c context.Context, service string) error {
 
- 		serviceContainers := containers.filter(isService(service))
 
- 		err := s.removeContainers(ctx, w, serviceContainers, options.Timeout, options.Volumes)
 
- 		return err
 
- 	})
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	orphans := containers.filter(isNotService(project.ServiceNames()...))
 
- 	if options.RemoveOrphans && len(orphans) > 0 {
 
- 		err := s.removeContainers(ctx, w, orphans, options.Timeout, false)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 	}
 
- 	ops := s.ensureNetworksDown(ctx, project, w)
 
- 	if options.Images != "" {
 
- 		ops = append(ops, s.ensureImagesDown(ctx, project, options, w)...)
 
- 	}
 
- 	if options.Volumes {
 
- 		ops = append(ops, s.ensureVolumesDown(ctx, project, w)...)
 
- 	}
 
- 	if !resourceToRemove && len(ops) == 0 {
 
- 		w.Event(progress.NewEvent(projectName, progress.Done, "Warning: No resource found to remove"))
 
- 	}
 
- 	eg, _ := errgroup.WithContext(ctx)
 
- 	for _, op := range ops {
 
- 		eg.Go(op)
 
- 	}
 
- 	return eg.Wait()
 
- }
 
- func (s *composeService) ensureVolumesDown(ctx context.Context, project *types.Project, w progress.Writer) []downOp {
 
- 	var ops []downOp
 
- 	for _, vol := range project.Volumes {
 
- 		if vol.External.External {
 
- 			continue
 
- 		}
 
- 		volumeName := vol.Name
 
- 		ops = append(ops, func() error {
 
- 			return s.removeVolume(ctx, volumeName, w)
 
- 		})
 
- 	}
 
- 	return ops
 
- }
 
- func (s *composeService) ensureImagesDown(ctx context.Context, project *types.Project, options api.DownOptions, w progress.Writer) []downOp {
 
- 	var ops []downOp
 
- 	for image := range s.getServiceImages(options, project) {
 
- 		image := image
 
- 		ops = append(ops, func() error {
 
- 			return s.removeImage(ctx, image, w)
 
- 		})
 
- 	}
 
- 	return ops
 
- }
 
- func (s *composeService) ensureNetworksDown(ctx context.Context, project *types.Project, w progress.Writer) []downOp {
 
- 	var ops []downOp
 
- 	for _, n := range project.Networks {
 
- 		if n.External.External {
 
- 			continue
 
- 		}
 
- 		networkName := n.Name
 
- 		_, err := s.apiClient().NetworkInspect(ctx, networkName, moby.NetworkInspectOptions{})
 
- 		if client.IsNotFound(err) {
 
- 			return nil
 
- 		}
 
- 		ops = append(ops, func() error {
 
- 			return s.removeNetwork(ctx, networkName, w)
 
- 		})
 
- 	}
 
- 	return ops
 
- }
 
- func (s *composeService) getServiceImages(options api.DownOptions, project *types.Project) map[string]struct{} {
 
- 	images := map[string]struct{}{}
 
- 	for _, service := range project.Services {
 
- 		image := service.Image
 
- 		if options.Images == "local" && image != "" {
 
- 			continue
 
- 		}
 
- 		if image == "" {
 
- 			image = getImageName(service, project.Name)
 
- 		}
 
- 		images[image] = struct{}{}
 
- 	}
 
- 	return images
 
- }
 
- func (s *composeService) removeImage(ctx context.Context, image string, w progress.Writer) error {
 
- 	id := fmt.Sprintf("Image %s", image)
 
- 	w.Event(progress.NewEvent(id, progress.Working, "Removing"))
 
- 	_, err := s.apiClient().ImageRemove(ctx, image, moby.ImageRemoveOptions{})
 
- 	if err == nil {
 
- 		w.Event(progress.NewEvent(id, progress.Done, "Removed"))
 
- 		return nil
 
- 	}
 
- 	if errdefs.IsNotFound(err) {
 
- 		w.Event(progress.NewEvent(id, progress.Done, "Warning: No resource found to remove"))
 
- 		return nil
 
- 	}
 
- 	return err
 
- }
 
- func (s *composeService) removeVolume(ctx context.Context, id string, w progress.Writer) error {
 
- 	resource := fmt.Sprintf("Volume %s", id)
 
- 	w.Event(progress.NewEvent(resource, progress.Working, "Removing"))
 
- 	err := s.apiClient().VolumeRemove(ctx, id, true)
 
- 	if err == nil {
 
- 		w.Event(progress.NewEvent(resource, progress.Done, "Removed"))
 
- 		return nil
 
- 	}
 
- 	if errdefs.IsNotFound(err) {
 
- 		w.Event(progress.NewEvent(resource, progress.Done, "Warning: No resource found to remove"))
 
- 		return nil
 
- 	}
 
- 	return err
 
- }
 
- func (s *composeService) stopContainers(ctx context.Context, w progress.Writer, containers []moby.Container, timeout *time.Duration) error {
 
- 	eg, ctx := errgroup.WithContext(ctx)
 
- 	for _, container := range containers {
 
- 		container := container
 
- 		eg.Go(func() error {
 
- 			eventName := getContainerProgressName(container)
 
- 			w.Event(progress.StoppingEvent(eventName))
 
- 			err := s.apiClient().ContainerStop(ctx, container.ID, timeout)
 
- 			if err != nil {
 
- 				w.Event(progress.ErrorMessageEvent(eventName, "Error while Stopping"))
 
- 				return err
 
- 			}
 
- 			w.Event(progress.StoppedEvent(eventName))
 
- 			return nil
 
- 		})
 
- 	}
 
- 	return eg.Wait()
 
- }
 
- func (s *composeService) removeContainers(ctx context.Context, w progress.Writer, containers []moby.Container, timeout *time.Duration, volumes bool) error {
 
- 	eg, _ := errgroup.WithContext(ctx)
 
- 	for _, container := range containers {
 
- 		container := container
 
- 		eg.Go(func() error {
 
- 			eventName := getContainerProgressName(container)
 
- 			w.Event(progress.StoppingEvent(eventName))
 
- 			err := s.stopContainers(ctx, w, []moby.Container{container}, timeout)
 
- 			if err != nil {
 
- 				w.Event(progress.ErrorMessageEvent(eventName, "Error while Stopping"))
 
- 				return err
 
- 			}
 
- 			w.Event(progress.RemovingEvent(eventName))
 
- 			err = s.apiClient().ContainerRemove(ctx, container.ID, moby.ContainerRemoveOptions{
 
- 				Force:         true,
 
- 				RemoveVolumes: volumes,
 
- 			})
 
- 			if err != nil {
 
- 				w.Event(progress.ErrorMessageEvent(eventName, "Error while Removing"))
 
- 				return err
 
- 			}
 
- 			w.Event(progress.RemovedEvent(eventName))
 
- 			return nil
 
- 		})
 
- 	}
 
- 	return eg.Wait()
 
- }
 
- func (s *composeService) getProjectWithResources(ctx context.Context, containers Containers, projectName string) (*types.Project, error) {
 
- 	containers = containers.filter(isNotOneOff)
 
- 	project, err := s.projectFromName(containers, projectName)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	volumes, err := s.actualVolumes(ctx, projectName)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	project.Volumes = volumes
 
- 	networks, err := s.actualNetworks(ctx, projectName)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	project.Networks = networks
 
- 	return project, nil
 
- }
 
 
  |