| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | /*   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 composeimport (	"context"	"fmt"	"os"	"github.com/morikuni/aec"	"github.com/spf13/cobra"	"github.com/docker/compose-cli/api/compose"	"github.com/docker/compose-cli/api/progress"	"github.com/docker/compose-cli/utils")type pullOptions struct {	*projectOptions	composeOptions	quiet              bool	parallel           bool	noParallel         bool	includeDeps        bool	ignorePullFailures bool}func pullCommand(p *projectOptions, backend compose.Service) *cobra.Command {	opts := pullOptions{		projectOptions: p,	}	cmd := &cobra.Command{		Use:   "pull [SERVICE...]",		Short: "Pull service images",		RunE: func(cmd *cobra.Command, args []string) error {			if opts.noParallel {				fmt.Fprint(os.Stderr, aec.Apply("option '--no-parallel' is DEPRECATED and will be ignored.\n", aec.RedF))			}			return runPull(cmd.Context(), backend, opts, args)		},	}	flags := cmd.Flags()	flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Pull without printing progress information")	cmd.Flags().BoolVar(&opts.includeDeps, "include-deps", false, "Also pull services declared as dependencies")	cmd.Flags().BoolVar(&opts.parallel, "parallel", true, "DEPRECATED pull multiple images in parallel.")	flags.MarkHidden("parallel") //nolint:errcheck	cmd.Flags().BoolVar(&opts.parallel, "no-parallel", true, "DEPRECATED disable parallel pulling.")	flags.MarkHidden("no-parallel") //nolint:errcheck	cmd.Flags().BoolVar(&opts.ignorePullFailures, "ignore-pull-failures", false, "Pull what it can and ignores images with pull failures")	return cmd}func runPull(ctx context.Context, backend compose.Service, opts pullOptions, services []string) error {	project, err := opts.toProject(services)	if err != nil {		return err	}	if !opts.includeDeps {		enabled, err := project.GetServices(services...)		if err != nil {			return err		}		for _, s := range project.Services {			if !utils.StringContains(services, s.Name) {				project.DisabledServices = append(project.DisabledServices, s)			}		}		project.Services = enabled	}	apiOpts := compose.PullOptions{		IgnoreFailures: opts.ignorePullFailures,	}	if opts.quiet {		return backend.Pull(ctx, project, apiOpts)	}	_, err = progress.Run(ctx, func(ctx context.Context) (string, error) {		return "", backend.Pull(ctx, project, apiOpts)	})	return err}
 |