53 lines
1.7 KiB
Go
53 lines
1.7 KiB
Go
package artifact
|
|
|
|
import (
|
|
"github.com/containers/common/pkg/completion"
|
|
"github.com/containers/podman/v5/cmd/podman/common"
|
|
"github.com/containers/podman/v5/cmd/podman/registry"
|
|
"github.com/containers/podman/v5/pkg/domain/entities"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
extractCmd = &cobra.Command{
|
|
Use: "extract [options] ARTIFACT PATH",
|
|
Short: "Extract an OCI artifact to a local path",
|
|
Long: "Extract the blobs of an OCI artifact to a local file or directory",
|
|
RunE: extract,
|
|
Args: cobra.ExactArgs(2),
|
|
ValidArgsFunction: common.AutocompleteArtifactAdd,
|
|
Example: `podman artifact Extract quay.io/myimage/myartifact:latest /tmp/foobar.txt
|
|
podman artifact Extract quay.io/myimage/myartifact:latest /home/paul/mydir`,
|
|
Annotations: map[string]string{registry.EngineMode: registry.ABIMode},
|
|
}
|
|
)
|
|
|
|
var (
|
|
extractOpts entities.ArtifactExtractOptions
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: extractCmd,
|
|
Parent: artifactCmd,
|
|
})
|
|
flags := extractCmd.Flags()
|
|
|
|
digestFlagName := "digest"
|
|
flags.StringVar(&extractOpts.Digest, digestFlagName, "", "Only extract blob with the given digest")
|
|
_ = extractCmd.RegisterFlagCompletionFunc(digestFlagName, completion.AutocompleteNone)
|
|
|
|
titleFlagName := "title"
|
|
flags.StringVar(&extractOpts.Title, titleFlagName, "", "Only extract blob with the given title")
|
|
_ = extractCmd.RegisterFlagCompletionFunc(titleFlagName, completion.AutocompleteNone)
|
|
}
|
|
|
|
func extract(cmd *cobra.Command, args []string) error {
|
|
err := registry.ImageEngine().ArtifactExtract(registry.Context(), args[0], args[1], &extractOpts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|