mirror of
https://github.com/containers/podman.git
synced 2025-06-08 00:00:51 +08:00

* Ported CLI command * Added API endpoint * Added bindings * Updated swagger (TODO: n endpoints, one handler) Signed-off-by: Jhon Honce <jhonce@redhat.com>
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/containers/libpod/cmd/podmanV2/common"
|
|
"github.com/containers/libpod/cmd/podmanV2/containers"
|
|
"github.com/containers/libpod/cmd/podmanV2/images"
|
|
"github.com/containers/libpod/cmd/podmanV2/registry"
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Inspect is one of the outlier commands in that it operates on images/containers/...
|
|
|
|
var (
|
|
inspectOpts *entities.InspectOptions
|
|
|
|
// Command: podman _inspect_ Object_ID
|
|
inspectCmd = &cobra.Command{
|
|
Use: "inspect [flags] {CONTAINER_ID | IMAGE_ID}",
|
|
Args: cobra.ExactArgs(1),
|
|
Short: "Display the configuration of object denoted by ID",
|
|
Long: "Displays the low-level information on an object identified by name or ID",
|
|
TraverseChildren: true,
|
|
RunE: inspect,
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
|
Command: inspectCmd,
|
|
})
|
|
inspectOpts = common.AddInspectFlagSet(inspectCmd)
|
|
}
|
|
|
|
func inspect(cmd *cobra.Command, args []string) error {
|
|
ie, err := registry.NewImageEngine(cmd, args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if found, err := ie.Exists(context.Background(), args[0]); err != nil {
|
|
return err
|
|
} else if found.Value {
|
|
return images.Inspect(cmd, args, inspectOpts)
|
|
}
|
|
|
|
ce, err := registry.NewContainerEngine(cmd, args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if found, err := ce.ContainerExists(context.Background(), args[0]); err != nil {
|
|
return err
|
|
} else if found.Value {
|
|
return containers.Inspect(cmd, args, inspectOpts)
|
|
}
|
|
return fmt.Errorf("%s not found on system", args[0])
|
|
}
|