2016-06-13 22:56:23 -04:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2016-07-25 15:24:34 -04:00
|
|
|
"github.com/docker/docker/cli/command/formatter"
|
2016-09-06 14:46:37 -04:00
|
|
|
apiclient "github.com/docker/docker/client"
|
2016-06-13 22:56:23 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type inspectOptions struct {
|
|
|
|
refs []string
|
|
|
|
format string
|
|
|
|
pretty bool
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:11:39 -04:00
|
|
|
func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command {
|
2016-06-13 22:56:23 -04:00
|
|
|
var opts inspectOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "inspect [OPTIONS] SERVICE [SERVICE...]",
|
2016-06-30 08:13:28 -04:00
|
|
|
Short: "Display detailed information on one or more services",
|
2016-06-13 22:56:23 -04:00
|
|
|
Args: cli.RequiresMinArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.refs = args
|
|
|
|
|
|
|
|
if opts.pretty && len(opts.format) > 0 {
|
|
|
|
return fmt.Errorf("--format is incompatible with human friendly format")
|
|
|
|
}
|
|
|
|
return runInspect(dockerCli, opts)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
2016-10-18 06:50:11 -04:00
|
|
|
flags.StringVarP(&opts.format, "format", "f", "", "Format the output using the given Go template")
|
2017-02-23 03:46:08 -05:00
|
|
|
flags.BoolVar(&opts.pretty, "pretty", false, "Print the information in a human friendly format")
|
2016-06-13 22:56:23 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:11:39 -04:00
|
|
|
func runInspect(dockerCli *command.DockerCli, opts inspectOptions) error {
|
2016-06-13 22:56:23 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
if opts.pretty {
|
|
|
|
opts.format = "pretty"
|
|
|
|
}
|
|
|
|
|
2016-06-13 22:56:23 -04:00
|
|
|
getRef := func(ref string) (interface{}, []byte, error) {
|
2016-06-16 18:47:22 -04:00
|
|
|
service, _, err := client.ServiceInspectWithRaw(ctx, ref)
|
2016-06-13 22:56:23 -04:00
|
|
|
if err == nil || !apiclient.IsErrServiceNotFound(err) {
|
|
|
|
return service, nil, err
|
|
|
|
}
|
|
|
|
return nil, nil, fmt.Errorf("Error: no such service: %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-08-05 17:22:05 -04:00
|
|
|
}
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|
2016-08-05 17:22:05 -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" {
|
|
|
|
return fmt.Errorf("Cannot supply extra formatting options to the pretty template")
|
2016-06-16 17:34:28 -04:00
|
|
|
}
|
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
serviceCtx := formatter.Context{
|
|
|
|
Output: dockerCli.Out(),
|
|
|
|
Format: formatter.NewServiceFormat(f),
|
2016-06-16 17:34:28 -04:00
|
|
|
}
|
2016-06-13 22:56:23 -04:00
|
|
|
|
2016-07-25 15:24:34 -04:00
|
|
|
if err := formatter.ServiceInspectWrite(serviceCtx, opts.refs, getRef); err != nil {
|
|
|
|
return cli.StatusError{StatusCode: 1, Status: err.Error()}
|
2016-06-16 17:34:28 -04:00
|
|
|
}
|
2016-07-25 15:24:34 -04:00
|
|
|
return nil
|
2016-06-13 22:56:23 -04:00
|
|
|
}
|