mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4352da7803
Add distribution package for managing pulls and pushes. This is based on the old code in the graph package, with major changes to work with the new image/layer model. Add v1 migration code. Update registry, api/*, and daemon packages to use the reference package's types where applicable. Update daemon package to use image/layer/tag stores instead of the graph package Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com> Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
27 lines
714 B
Go
27 lines
714 B
Go
package daemon
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/docker/distribution/reference"
|
|
derr "github.com/docker/docker/errors"
|
|
tagpkg "github.com/docker/docker/tag"
|
|
)
|
|
|
|
func (d *Daemon) imageNotExistToErrcode(err error) error {
|
|
if dne, isDNE := err.(ErrImageDoesNotExist); isDNE {
|
|
if strings.Contains(dne.RefOrID, "@") {
|
|
return derr.ErrorCodeNoSuchImageHash.WithArgs(dne.RefOrID)
|
|
}
|
|
tag := tagpkg.DefaultTag
|
|
ref, err := reference.ParseNamed(dne.RefOrID)
|
|
if err != nil {
|
|
return derr.ErrorCodeNoSuchImageTag.WithArgs(dne.RefOrID, tag)
|
|
}
|
|
if tagged, isTagged := ref.(reference.Tagged); isTagged {
|
|
tag = tagged.Tag()
|
|
}
|
|
return derr.ErrorCodeNoSuchImageTag.WithArgs(ref.Name(), tag)
|
|
}
|
|
return err
|
|
}
|