116 lines
3.2 KiB
Go
116 lines
3.2 KiB
Go
package images
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/containers/common/pkg/completion"
|
|
"github.com/containers/common/pkg/download"
|
|
"github.com/containers/podman/v5/cmd/podman/registry"
|
|
"github.com/containers/podman/v5/cmd/podman/validate"
|
|
"github.com/containers/podman/v5/pkg/domain/entities"
|
|
"github.com/containers/podman/v5/pkg/util"
|
|
"github.com/containers/storage/pkg/fileutils"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/term"
|
|
)
|
|
|
|
var (
|
|
loadDescription = "Loads an image from a locally stored archive (tar file) into container storage."
|
|
loadCommand = &cobra.Command{
|
|
Use: "load [options]",
|
|
Short: "Load image(s) from a tar archive",
|
|
Long: loadDescription,
|
|
RunE: load,
|
|
Args: validate.NoArgs,
|
|
ValidArgsFunction: completion.AutocompleteNone,
|
|
}
|
|
|
|
imageLoadCommand = &cobra.Command{
|
|
Args: loadCommand.Args,
|
|
Use: loadCommand.Use,
|
|
Short: loadCommand.Short,
|
|
Long: loadCommand.Long,
|
|
ValidArgsFunction: loadCommand.ValidArgsFunction,
|
|
RunE: loadCommand.RunE,
|
|
}
|
|
)
|
|
|
|
var (
|
|
loadOpts entities.ImageLoadOptions
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: loadCommand,
|
|
})
|
|
loadFlags(loadCommand)
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: imageLoadCommand,
|
|
Parent: imageCmd,
|
|
})
|
|
loadFlags(imageLoadCommand)
|
|
}
|
|
|
|
func loadFlags(cmd *cobra.Command) {
|
|
flags := cmd.Flags()
|
|
|
|
inputFlagName := "input"
|
|
flags.StringVarP(&loadOpts.Input, inputFlagName, "i", "", "Read from specified archive file (default: stdin)")
|
|
_ = cmd.RegisterFlagCompletionFunc(inputFlagName, completion.AutocompleteDefault)
|
|
|
|
flags.BoolVarP(&loadOpts.Quiet, "quiet", "q", false, "Suppress the output")
|
|
if !registry.IsRemote() {
|
|
flags.StringVar(&loadOpts.SignaturePolicy, "signature-policy", "", "Pathname of signature policy file")
|
|
_ = flags.MarkHidden("signature-policy")
|
|
}
|
|
}
|
|
|
|
func load(cmd *cobra.Command, args []string) error {
|
|
if len(loadOpts.Input) > 0 {
|
|
// Download the input file if needed.
|
|
if strings.HasPrefix(loadOpts.Input, "https://") || strings.HasPrefix(loadOpts.Input, "http://") {
|
|
tmpdir, err := registry.PodmanConfig().ContainersConfDefaultsRO.ImageCopyTmpDir()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tmpfile, err := download.FromURL(tmpdir, loadOpts.Input)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer os.Remove(tmpfile)
|
|
loadOpts.Input = tmpfile
|
|
}
|
|
|
|
if err := fileutils.Exists(loadOpts.Input); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if term.IsTerminal(int(os.Stdin.Fd())) {
|
|
return errors.New("cannot read from terminal, use command-line redirection or the --input flag")
|
|
}
|
|
outFile, err := os.CreateTemp(util.Tmpdir(), "podman")
|
|
if err != nil {
|
|
return fmt.Errorf("creating file %v", err)
|
|
}
|
|
defer os.Remove(outFile.Name())
|
|
defer outFile.Close()
|
|
|
|
_, err = io.Copy(outFile, os.Stdin)
|
|
if err != nil {
|
|
return fmt.Errorf("copying file %v", err)
|
|
}
|
|
loadOpts.Input = outFile.Name()
|
|
}
|
|
response, err := registry.ImageEngine().Load(context.Background(), loadOpts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Println("Loaded image: " + strings.Join(response.Names, "\nLoaded image: "))
|
|
return nil
|
|
}
|