2016-09-08 13:11:39 -04:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-09-08 13:11:39 -04:00
|
|
|
"strings"
|
|
|
|
|
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-01-18 05:43:29 -05:00
|
|
|
flagsHelper "github.com/docker/cli/cli/flags"
|
2017-03-30 20:15:54 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2023-05-10 08:43:18 -04:00
|
|
|
"github.com/docker/docker/errdefs"
|
2017-03-09 13:23:45 -05:00
|
|
|
"github.com/pkg/errors"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type inspectOptions struct {
|
|
|
|
refs []string
|
|
|
|
format string
|
|
|
|
pretty bool
|
|
|
|
}
|
|
|
|
|
2017-07-20 04:32:51 -04:00
|
|
|
func newInspectCommand(dockerCli command.Cli) *cobra.Command {
|
2016-09-08 13:11:39 -04:00
|
|
|
var opts inspectOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "inspect [OPTIONS] SERVICE [SERVICE...]",
|
|
|
|
Short: "Display detailed information on one or more services",
|
|
|
|
Args: cli.RequiresMinArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.refs = args
|
|
|
|
|
|
|
|
if opts.pretty && len(opts.format) > 0 {
|
2017-03-09 13:23:45 -05:00
|
|
|
return errors.Errorf("--format is incompatible with human friendly format")
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
return runInspect(dockerCli, opts)
|
|
|
|
},
|
2022-03-30 09:27:25 -04:00
|
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
|
|
return CompletionFn(dockerCli)(cmd, args, toComplete)
|
|
|
|
},
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
2022-03-08 08:54:21 -05:00
|
|
|
flags.StringVarP(&opts.format, "format", "f", "", flagsHelper.InspectFormatHelp)
|
2017-02-23 03:46:08 -05:00
|
|
|
flags.BoolVar(&opts.pretty, "pretty", false, "Print the information in a human friendly format")
|
2016-09-08 13:11:39 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2017-07-20 04:32:51 -04:00
|
|
|
func runInspect(dockerCli command.Cli, opts inspectOptions) error {
|
2016-09-08 13:11:39 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
if opts.pretty {
|
|
|
|
opts.format = "pretty"
|
|
|
|
}
|
|
|
|
|
2023-11-20 12:04:36 -05:00
|
|
|
getRef := func(ref string) (any, []byte, error) {
|
2017-03-30 20:15:54 -04:00
|
|
|
// Service inspect shows defaults values in empty fields.
|
|
|
|
service, _, err := client.ServiceInspectWithRaw(ctx, ref, types.ServiceInspectOptions{InsertDefaults: true})
|
2023-05-10 08:43:18 -04:00
|
|
|
if err == nil || !errdefs.IsNotFound(err) {
|
2016-09-08 13:11:39 -04:00
|
|
|
return service, nil, err
|
|
|
|
}
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, nil, errors.Errorf("Error: no such service: %s", ref)
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
2023-11-20 12:04:36 -05:00
|
|
|
getNetwork := func(ref string) (any, []byte, error) {
|
2017-06-12 22:53:53 -04:00
|
|
|
network, _, err := client.NetworkInspectWithRaw(ctx, ref, types.NetworkInspectOptions{Scope: "swarm"})
|
2023-05-10 08:43:18 -04:00
|
|
|
if err == nil || !errdefs.IsNotFound(err) {
|
2017-04-07 19:37:03 -04:00
|
|
|
return network, nil, err
|
|
|
|
}
|
|
|
|
return nil, nil, errors.Errorf("Error: no such network: %s", ref)
|
|
|
|
}
|
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
f := opts.format
|
|
|
|
if len(f) == 0 {
|
|
|
|
f = "raw"
|
|
|
|
if len(dockerCli.ConfigFile().ServiceInspectFormat) > 0 {
|
|
|
|
f = dockerCli.ConfigFile().ServiceInspectFormat
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
// check if the user is trying to apply a template to the pretty format, which
|
|
|
|
// is not supported
|
|
|
|
if strings.HasPrefix(f, "pretty") && f != "pretty" {
|
2017-03-09 13:23:45 -05:00
|
|
|
return errors.Errorf("Cannot supply extra formatting options to the pretty template")
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
serviceCtx := formatter.Context{
|
|
|
|
Output: dockerCli.Out(),
|
2018-10-23 11:05:44 -04:00
|
|
|
Format: NewFormat(f),
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
2018-10-23 11:05:44 -04:00
|
|
|
if err := InspectFormatWrite(serviceCtx, opts.refs, getRef, getNetwork); err != nil {
|
2016-07-25 15:24:34 -04:00
|
|
|
return cli.StatusError{StatusCode: 1, Status: err.Error()}
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
2016-07-25 15:24:34 -04:00
|
|
|
return nil
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|