2016-10-19 12:22:02 -04:00
|
|
|
package secret
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2017-07-07 04:22:52 -04:00
|
|
|
"sort"
|
|
|
|
|
2017-04-17 18:07:56 -04:00
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
|
|
|
"github.com/docker/cli/cli/command/formatter"
|
2021-03-09 18:45:56 -05:00
|
|
|
flagsHelper "github.com/docker/cli/cli/flags"
|
2017-05-15 08:45:19 -04:00
|
|
|
"github.com/docker/cli/opts"
|
2016-10-19 12:22:02 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2020-08-28 08:35:09 -04:00
|
|
|
"github.com/fvbommel/sortorder"
|
2016-10-19 12:22:02 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type listOptions struct {
|
2017-03-05 06:11:04 -05:00
|
|
|
quiet bool
|
|
|
|
format string
|
2016-12-05 11:08:43 -05:00
|
|
|
filter opts.FilterOpt
|
2016-10-19 12:22:02 -04:00
|
|
|
}
|
|
|
|
|
2017-04-01 03:07:22 -04:00
|
|
|
func newSecretListCommand(dockerCli command.Cli) *cobra.Command {
|
2017-05-15 08:45:19 -04:00
|
|
|
options := listOptions{filter: opts.NewFilterOpt()}
|
2016-10-19 12:22:02 -04:00
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
2016-11-29 10:44:12 -05:00
|
|
|
Use: "ls [OPTIONS]",
|
|
|
|
Aliases: []string{"list"},
|
|
|
|
Short: "List secrets",
|
|
|
|
Args: cli.NoArgs,
|
2016-10-19 12:22:02 -04:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2023-09-09 18:27:44 -04:00
|
|
|
return runSecretList(cmd.Context(), dockerCli, options)
|
2016-10-19 12:22:02 -04:00
|
|
|
},
|
2022-03-30 09:27:25 -04:00
|
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
|
|
return completeNames(dockerCli)(cmd, args, toComplete)
|
|
|
|
},
|
2016-10-19 12:22:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
2017-05-15 08:45:19 -04:00
|
|
|
flags.BoolVarP(&options.quiet, "quiet", "q", false, "Only display IDs")
|
2024-01-29 05:16:14 -05:00
|
|
|
flags.StringVar(&options.format, "format", "", flagsHelper.FormatHelp)
|
2017-05-15 08:45:19 -04:00
|
|
|
flags.VarP(&options.filter, "filter", "f", "Filter output based on conditions provided")
|
2016-10-19 12:22:02 -04:00
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2023-09-09 18:27:44 -04:00
|
|
|
func runSecretList(ctx context.Context, dockerCli command.Cli, options listOptions) error {
|
2016-10-19 12:22:02 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
|
2017-05-15 08:45:19 -04:00
|
|
|
secrets, err := client.SecretList(ctx, types.SecretListOptions{Filters: options.filter.Value()})
|
2016-10-19 12:22:02 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-05-15 08:45:19 -04:00
|
|
|
format := options.format
|
2017-03-05 06:11:04 -05:00
|
|
|
if len(format) == 0 {
|
2017-05-15 08:45:19 -04:00
|
|
|
if len(dockerCli.ConfigFile().SecretFormat) > 0 && !options.quiet {
|
2017-03-05 06:11:04 -05:00
|
|
|
format = dockerCli.ConfigFile().SecretFormat
|
|
|
|
} else {
|
|
|
|
format = formatter.TableFormatKey
|
2016-10-19 12:22:02 -04:00
|
|
|
}
|
|
|
|
}
|
2017-07-07 04:22:52 -04:00
|
|
|
|
2018-07-06 15:49:10 -04:00
|
|
|
sort.Slice(secrets, func(i, j int) bool {
|
|
|
|
return sortorder.NaturalLess(secrets[i].Spec.Name, secrets[j].Spec.Name)
|
|
|
|
})
|
2017-07-07 04:22:52 -04:00
|
|
|
|
2017-03-05 06:11:04 -05:00
|
|
|
secretCtx := formatter.Context{
|
|
|
|
Output: dockerCli.Out(),
|
2018-10-23 11:05:44 -04:00
|
|
|
Format: NewFormat(format, options.quiet),
|
2017-03-05 06:11:04 -05:00
|
|
|
}
|
2018-10-23 11:05:44 -04:00
|
|
|
return FormatWrite(secretCtx, secrets)
|
2016-10-19 12:22:02 -04:00
|
|
|
}
|