ls.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package context
  14. import (
  15. "fmt"
  16. "io"
  17. "os"
  18. "sort"
  19. "strings"
  20. "github.com/pkg/errors"
  21. "github.com/spf13/cobra"
  22. "github.com/docker/compose-cli/cli/mobycli"
  23. apicontext "github.com/docker/compose-cli/context"
  24. "github.com/docker/compose-cli/context/store"
  25. "github.com/docker/compose-cli/formatter"
  26. )
  27. type lsOpts struct {
  28. quiet bool
  29. json bool
  30. format string
  31. }
  32. func (o lsOpts) validate() error {
  33. if o.quiet && o.json {
  34. return errors.New(`cannot combine "quiet" and "json" options`)
  35. }
  36. return nil
  37. }
  38. func listCommand() *cobra.Command {
  39. var opts lsOpts
  40. cmd := &cobra.Command{
  41. Use: "list",
  42. Short: "List available contexts",
  43. Aliases: []string{"ls"},
  44. Args: cobra.NoArgs,
  45. RunE: func(cmd *cobra.Command, args []string) error {
  46. return runList(cmd, opts)
  47. },
  48. }
  49. cmd.Flags().BoolVarP(&opts.quiet, "quiet", "q", false, "Only show context names")
  50. cmd.Flags().BoolVar(&opts.json, "json", false, "Format output as JSON")
  51. cmd.Flags().StringVar(&opts.format, "format", "", "Format the output. Values: [pretty | json]. (Default: pretty)")
  52. _ = cmd.Flags().MarkHidden("json")
  53. return cmd
  54. }
  55. func runList(cmd *cobra.Command, opts lsOpts) error {
  56. err := opts.validate()
  57. if err != nil {
  58. return err
  59. }
  60. if opts.format != "" && opts.format != formatter.JSON && opts.format != formatter.PRETTY {
  61. mobycli.Exec(cmd.Root())
  62. return nil
  63. }
  64. ctx := cmd.Context()
  65. currentContext := apicontext.CurrentContext(ctx)
  66. s := store.ContextStore(ctx)
  67. contexts, err := s.List()
  68. if err != nil {
  69. return err
  70. }
  71. sort.Slice(contexts, func(i, j int) bool {
  72. return strings.Compare(contexts[i].Name, contexts[j].Name) == -1
  73. })
  74. if opts.quiet {
  75. for _, c := range contexts {
  76. fmt.Println(c.Name)
  77. }
  78. return nil
  79. }
  80. if opts.json {
  81. opts.format = formatter.JSON
  82. }
  83. view := viewFromContextList(contexts, currentContext)
  84. return formatter.Print(view, opts.format, os.Stdout,
  85. func(w io.Writer) {
  86. for _, c := range view {
  87. contextName := c.Name
  88. if c.Current {
  89. contextName += " *"
  90. }
  91. _, _ = fmt.Fprintf(w, "%s\t%s\t%s\t%s\t%s\t%s\n",
  92. contextName,
  93. c.Type,
  94. c.Description,
  95. c.DockerEndpoint,
  96. c.KubernetesEndpoint,
  97. c.StackOrchestrator)
  98. }
  99. },
  100. "NAME", "TYPE", "DESCRIPTION", "DOCKER ENDPOINT", "KUBERNETES ENDPOINT", "ORCHESTRATOR")
  101. }
  102. func getEndpoint(name string, meta map[string]interface{}) string {
  103. endpoints, ok := meta[name]
  104. if !ok {
  105. return ""
  106. }
  107. data, ok := endpoints.(*store.Endpoint)
  108. if !ok {
  109. return ""
  110. }
  111. result := data.Host
  112. if data.DefaultNamespace != "" {
  113. result += fmt.Sprintf(" (%s)", data.DefaultNamespace)
  114. }
  115. return result
  116. }
  117. type contextView struct {
  118. Current bool
  119. Description string
  120. DockerEndpoint string
  121. KubernetesEndpoint string
  122. Type string
  123. Name string
  124. StackOrchestrator string
  125. }
  126. func viewFromContextList(contextList []*store.DockerContext, currentContext string) []contextView {
  127. retList := make([]contextView, len(contextList))
  128. for i, c := range contextList {
  129. retList[i] = contextView{
  130. Current: c.Name == currentContext,
  131. Description: c.Metadata.Description,
  132. DockerEndpoint: getEndpoint("docker", c.Endpoints),
  133. KubernetesEndpoint: getEndpoint("kubernetes", c.Endpoints),
  134. Name: c.Name,
  135. Type: c.Type(),
  136. StackOrchestrator: c.Metadata.StackOrchestrator,
  137. }
  138. }
  139. return retList
  140. }