2017-06-27 13:45:25 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/containers/image/docker/reference"
|
|
|
|
"github.com/containers/storage"
|
2017-07-22 02:07:40 +00:00
|
|
|
libkpodimage "github.com/kubernetes-incubator/cri-o/libkpod/image"
|
2017-06-27 13:45:25 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
tagDescription = "Adds one or more additional names to locally-stored image"
|
|
|
|
tagCommand = cli.Command{
|
|
|
|
Name: "tag",
|
|
|
|
Usage: "Add an additional name to a local image",
|
|
|
|
Description: tagDescription,
|
|
|
|
Action: tagCmd,
|
|
|
|
ArgsUsage: "IMAGE-NAME [IMAGE-NAME ...]",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func tagCmd(c *cli.Context) error {
|
|
|
|
args := c.Args()
|
|
|
|
if len(args) < 2 {
|
|
|
|
return errors.Errorf("image name and at least one new name must be specified")
|
|
|
|
}
|
2017-07-27 17:18:07 +00:00
|
|
|
config, err := getConfig(c)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "Could not get config")
|
|
|
|
}
|
|
|
|
store, err := getStore(config)
|
2017-06-27 13:45:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-07-22 02:07:40 +00:00
|
|
|
img, err := libkpodimage.FindImage(store, args[0])
|
2017-06-27 13:45:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if img == nil {
|
|
|
|
return errors.New("null image")
|
|
|
|
}
|
|
|
|
err = addImageNames(store, img, args[1:])
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "error adding names %v to image %q", args[1:], args[0])
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func addImageNames(store storage.Store, image *storage.Image, addNames []string) error {
|
|
|
|
// Add tags to the names if applicable
|
|
|
|
names, err := expandedTags(addNames)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = store.SetNames(image.ID, append(image.Names, names...))
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "error adding names (%v) to image %q", names, image.ID)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func expandedTags(tags []string) ([]string, error) {
|
|
|
|
expandedNames := []string{}
|
|
|
|
for _, tag := range tags {
|
|
|
|
name, err := reference.ParseNormalizedNamed(tag)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "error parsing tag %q", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
name = reference.TagNameOnly(name)
|
|
|
|
newTag := ""
|
|
|
|
if tagged, ok := name.(reference.NamedTagged); ok {
|
|
|
|
newTag = tagged.Tag()
|
|
|
|
}
|
|
|
|
expandedNames = append(expandedNames, name.Name()+":"+newTag)
|
|
|
|
}
|
|
|
|
return expandedNames, nil
|
|
|
|
}
|