| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 | 
							- /*
 
-    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 context
 
- import (
 
- 	"fmt"
 
- 	"io"
 
- 	"os"
 
- 	"sort"
 
- 	"strings"
 
- 	"github.com/pkg/errors"
 
- 	"github.com/spf13/cobra"
 
- 	apicontext "github.com/docker/compose-cli/api/context"
 
- 	"github.com/docker/compose-cli/api/context/store"
 
- 	"github.com/docker/compose-cli/cli/formatter"
 
- 	"github.com/docker/compose-cli/cli/mobycli"
 
- )
 
- type lsOpts struct {
 
- 	quiet  bool
 
- 	json   bool
 
- 	format string
 
- }
 
- func (o lsOpts) validate() error {
 
- 	if o.quiet && o.json {
 
- 		return errors.New(`cannot combine "quiet" and "json" options`)
 
- 	}
 
- 	return nil
 
- }
 
- func listCommand() *cobra.Command {
 
- 	var opts lsOpts
 
- 	cmd := &cobra.Command{
 
- 		Use:     "list",
 
- 		Short:   "List available contexts",
 
- 		Aliases: []string{"ls"},
 
- 		Args:    cobra.NoArgs,
 
- 		RunE: func(cmd *cobra.Command, args []string) error {
 
- 			return runList(cmd, opts)
 
- 		},
 
- 	}
 
- 	cmd.Flags().BoolVarP(&opts.quiet, "quiet", "q", false, "Only show context names")
 
- 	cmd.Flags().StringVar(&opts.format, "format", "", "Format the output. Values: [pretty | json]. (Default: pretty)")
 
- 	return cmd
 
- }
 
- func runList(cmd *cobra.Command, opts lsOpts) error {
 
- 	err := opts.validate()
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	format := strings.ToLower(strings.ReplaceAll(opts.format, " ", ""))
 
- 	if format != "" && format != formatter.JSON && format != formatter.PRETTY && format != formatter.TemplateLegacyJSON {
 
- 		mobycli.Exec(cmd.Root())
 
- 		return nil
 
- 	}
 
- 	currentContext := apicontext.Current()
 
- 	s := store.Instance()
 
- 	contexts, err := s.List()
 
- 	if err != nil {
 
- 		return err
 
- 	}
 
- 	sort.Slice(contexts, func(i, j int) bool {
 
- 		return strings.Compare(contexts[i].Name, contexts[j].Name) == -1
 
- 	})
 
- 	if opts.quiet {
 
- 		for _, c := range contexts {
 
- 			fmt.Println(c.Name)
 
- 		}
 
- 		return nil
 
- 	}
 
- 	if opts.json || format == formatter.JSON {
 
- 		opts.format = formatter.JSON
 
- 	}
 
- 	if format == formatter.TemplateLegacyJSON {
 
- 		opts.format = formatter.TemplateLegacyJSON
 
- 	}
 
- 	view := viewFromContextList(contexts, currentContext)
 
- 	return formatter.Print(view, opts.format, os.Stdout,
 
- 		func(w io.Writer) {
 
- 			for _, c := range view {
 
- 				contextName := c.Name
 
- 				if c.Current {
 
- 					contextName += " *"
 
- 				}
 
- 				_, _ = fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\t%s\n",
 
- 					contextName,
 
- 					c.ContextType,
 
- 					c.Description,
 
- 					c.DockerEndpoint,
 
- 					c.KubernetesEndpoint,
 
- 					c.StackOrchestrator)
 
- 			}
 
- 		},
 
- 		"NAME", "TYPE", "DESCRIPTION", "DOCKER ENDPOINT", "KUBERNETES ENDPOINT", "ORCHESTRATOR")
 
- }
 
- func getEndpoint(name string, meta map[string]interface{}) string {
 
- 	endpoints, ok := meta[name]
 
- 	if !ok {
 
- 		return ""
 
- 	}
 
- 	data, ok := endpoints.(*store.Endpoint)
 
- 	if !ok {
 
- 		return ""
 
- 	}
 
- 	result := data.Host
 
- 	if data.DefaultNamespace != "" {
 
- 		result += fmt.Sprintf(" (%s)", data.DefaultNamespace)
 
- 	}
 
- 	return result
 
- }
 
- type contextView struct {
 
- 	Current            bool
 
- 	Description        string
 
- 	DockerEndpoint     string
 
- 	KubernetesEndpoint string
 
- 	ContextType        string
 
- 	Name               string
 
- 	StackOrchestrator  string
 
- }
 
- func viewFromContextList(contextList []*store.DockerContext, currentContext string) []contextView {
 
- 	retList := make([]contextView, len(contextList))
 
- 	for i, c := range contextList {
 
- 		retList[i] = contextView{
 
- 			Current:            c.Name == currentContext,
 
- 			Description:        c.Metadata.Description,
 
- 			DockerEndpoint:     getEndpoint("docker", c.Endpoints),
 
- 			KubernetesEndpoint: getEndpoint("kubernetes", c.Endpoints),
 
- 			Name:               c.Name,
 
- 			ContextType:        c.Type(),
 
- 			StackOrchestrator:  c.Metadata.StackOrchestrator,
 
- 		}
 
- 	}
 
- 	return retList
 
- }
 
 
  |