112 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Go
		
	
	
	
| package images
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"io/ioutil"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/containers/image/v5/docker/reference"
 | |
| 	"github.com/containers/libpod/cmd/podman/parse"
 | |
| 	"github.com/containers/libpod/cmd/podman/registry"
 | |
| 	"github.com/containers/libpod/pkg/domain/entities"
 | |
| 	"github.com/containers/libpod/pkg/util"
 | |
| 	"github.com/pkg/errors"
 | |
| 	"github.com/spf13/cobra"
 | |
| 	"github.com/spf13/pflag"
 | |
| 	"golang.org/x/crypto/ssh/terminal"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	loadDescription = "Loads an image from a locally stored archive (tar file) into container storage."
 | |
| 	loadCommand     = &cobra.Command{
 | |
| 		Use:   "load [flags] [NAME[:TAG]]",
 | |
| 		Short: "Load an image from container archive",
 | |
| 		Long:  loadDescription,
 | |
| 		RunE:  load,
 | |
| 		Args:  cobra.MaximumNArgs(1),
 | |
| 	}
 | |
| 
 | |
| 	imageLoadCommand = &cobra.Command{
 | |
| 		Args:  cobra.MinimumNArgs(1),
 | |
| 		Use:   loadCommand.Use,
 | |
| 		Short: loadCommand.Short,
 | |
| 		Long:  loadCommand.Long,
 | |
| 		RunE:  loadCommand.RunE,
 | |
| 	}
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	loadOpts entities.ImageLoadOptions
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	registry.Commands = append(registry.Commands, registry.CliCommand{
 | |
| 		Mode:    []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
 | |
| 		Command: loadCommand,
 | |
| 	})
 | |
| 	loadFlags(loadCommand.Flags())
 | |
| 	registry.Commands = append(registry.Commands, registry.CliCommand{
 | |
| 		Mode:    []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
 | |
| 		Command: imageLoadCommand,
 | |
| 		Parent:  imageCmd,
 | |
| 	})
 | |
| 	loadFlags(imageLoadCommand.Flags())
 | |
| }
 | |
| 
 | |
| func loadFlags(flags *pflag.FlagSet) {
 | |
| 	flags.StringVarP(&loadOpts.Input, "input", "i", "", "Read from specified archive file (default: stdin)")
 | |
| 	flags.BoolVarP(&loadOpts.Quiet, "quiet", "q", false, "Suppress the output")
 | |
| 	flags.StringVar(&loadOpts.SignaturePolicy, "signature-policy", "", "Pathname of signature policy file")
 | |
| 	if registry.IsRemote() {
 | |
| 		_ = flags.MarkHidden("signature-policy")
 | |
| 	}
 | |
| 
 | |
| }
 | |
| 
 | |
| func load(cmd *cobra.Command, args []string) error {
 | |
| 	if len(args) > 0 {
 | |
| 		ref, err := reference.Parse(args[0])
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 		if t, ok := ref.(reference.Tagged); ok {
 | |
| 			loadOpts.Tag = t.Tag()
 | |
| 		} else {
 | |
| 			loadOpts.Tag = "latest"
 | |
| 		}
 | |
| 		if r, ok := ref.(reference.Named); ok {
 | |
| 			loadOpts.Name = r.Name()
 | |
| 		}
 | |
| 	}
 | |
| 	if len(loadOpts.Input) > 0 {
 | |
| 		if err := parse.ValidateFileName(loadOpts.Input); err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 	} else {
 | |
| 		if terminal.IsTerminal(int(os.Stdin.Fd())) {
 | |
| 			return errors.Errorf("cannot read from terminal. Use command-line redirection or the --input flag.")
 | |
| 		}
 | |
| 		outFile, err := ioutil.TempFile(util.Tmpdir(), "podman")
 | |
| 		if err != nil {
 | |
| 			return errors.Errorf("error creating file %v", err)
 | |
| 		}
 | |
| 		defer os.Remove(outFile.Name())
 | |
| 		defer outFile.Close()
 | |
| 
 | |
| 		_, err = io.Copy(outFile, os.Stdin)
 | |
| 		if err != nil {
 | |
| 			return errors.Errorf("error 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(s): " + strings.Join(response.Names, ","))
 | |
| 	return nil
 | |
| }
 |