mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7a50fe8a52
Signed-off-by: Tibor Vass <tibor@docker.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
150 lines
4.8 KiB
Go
150 lines
4.8 KiB
Go
package distribution // import "github.com/docker/docker/api/server/router/distribution"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/docker/distribution/manifest/manifestlist"
|
|
"github.com/docker/distribution/manifest/schema1"
|
|
"github.com/docker/distribution/manifest/schema2"
|
|
"github.com/docker/distribution/reference"
|
|
"github.com/docker/docker/api/server/httputils"
|
|
"github.com/docker/docker/api/types"
|
|
registrytypes "github.com/docker/docker/api/types/registry"
|
|
"github.com/docker/docker/errdefs"
|
|
v1 "github.com/opencontainers/image-spec/specs-go/v1"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (s *distributionRouter) getDistributionInfo(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
|
if err := httputils.ParseForm(r); err != nil {
|
|
return err
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
var (
|
|
config = &types.AuthConfig{}
|
|
authEncoded = r.Header.Get("X-Registry-Auth")
|
|
distributionInspect registrytypes.DistributionInspect
|
|
)
|
|
|
|
if authEncoded != "" {
|
|
authJSON := base64.NewDecoder(base64.URLEncoding, strings.NewReader(authEncoded))
|
|
if err := json.NewDecoder(authJSON).Decode(&config); err != nil {
|
|
// for a search it is not an error if no auth was given
|
|
// to increase compatibility with the existing api it is defaulting to be empty
|
|
config = &types.AuthConfig{}
|
|
}
|
|
}
|
|
|
|
image := vars["name"]
|
|
|
|
// TODO why is reference.ParseAnyReference() / reference.ParseNormalizedNamed() not using the reference.ErrTagInvalidFormat (and so on) errors?
|
|
ref, err := reference.ParseAnyReference(image)
|
|
if err != nil {
|
|
return errdefs.InvalidParameter(err)
|
|
}
|
|
namedRef, ok := ref.(reference.Named)
|
|
if !ok {
|
|
if _, ok := ref.(reference.Digested); ok {
|
|
// full image ID
|
|
return errors.Errorf("no manifest found for full image ID")
|
|
}
|
|
return errdefs.InvalidParameter(errors.Errorf("unknown image reference format: %s", image))
|
|
}
|
|
|
|
distrepo, err := s.backend.GetRepository(ctx, namedRef, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
blobsrvc := distrepo.Blobs(ctx)
|
|
|
|
if canonicalRef, ok := namedRef.(reference.Canonical); !ok {
|
|
namedRef = reference.TagNameOnly(namedRef)
|
|
|
|
taggedRef, ok := namedRef.(reference.NamedTagged)
|
|
if !ok {
|
|
return errdefs.InvalidParameter(errors.Errorf("image reference not tagged: %s", image))
|
|
}
|
|
|
|
descriptor, err := distrepo.Tags(ctx).Get(ctx, taggedRef.Tag())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
distributionInspect.Descriptor = v1.Descriptor{
|
|
MediaType: descriptor.MediaType,
|
|
Digest: descriptor.Digest,
|
|
Size: descriptor.Size,
|
|
}
|
|
} else {
|
|
// TODO(nishanttotla): Once manifests can be looked up as a blob, the
|
|
// descriptor should be set using blobsrvc.Stat(ctx, canonicalRef.Digest())
|
|
// instead of having to manually fill in the fields
|
|
distributionInspect.Descriptor.Digest = canonicalRef.Digest()
|
|
}
|
|
|
|
// we have a digest, so we can retrieve the manifest
|
|
mnfstsrvc, err := distrepo.Manifests(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
mnfst, err := mnfstsrvc.Get(ctx, distributionInspect.Descriptor.Digest)
|
|
if err != nil {
|
|
switch err {
|
|
case reference.ErrReferenceInvalidFormat,
|
|
reference.ErrTagInvalidFormat,
|
|
reference.ErrDigestInvalidFormat,
|
|
reference.ErrNameContainsUppercase,
|
|
reference.ErrNameEmpty,
|
|
reference.ErrNameTooLong,
|
|
reference.ErrNameNotCanonical:
|
|
return errdefs.InvalidParameter(err)
|
|
}
|
|
return err
|
|
}
|
|
|
|
mediaType, payload, err := mnfst.Payload()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// update MediaType because registry might return something incorrect
|
|
distributionInspect.Descriptor.MediaType = mediaType
|
|
if distributionInspect.Descriptor.Size == 0 {
|
|
distributionInspect.Descriptor.Size = int64(len(payload))
|
|
}
|
|
|
|
// retrieve platform information depending on the type of manifest
|
|
switch mnfstObj := mnfst.(type) {
|
|
case *manifestlist.DeserializedManifestList:
|
|
for _, m := range mnfstObj.Manifests {
|
|
distributionInspect.Platforms = append(distributionInspect.Platforms, v1.Platform{
|
|
Architecture: m.Platform.Architecture,
|
|
OS: m.Platform.OS,
|
|
OSVersion: m.Platform.OSVersion,
|
|
OSFeatures: m.Platform.OSFeatures,
|
|
Variant: m.Platform.Variant,
|
|
})
|
|
}
|
|
case *schema2.DeserializedManifest:
|
|
configJSON, err := blobsrvc.Get(ctx, mnfstObj.Config.Digest)
|
|
var platform v1.Platform
|
|
if err == nil {
|
|
err := json.Unmarshal(configJSON, &platform)
|
|
if err == nil && (platform.OS != "" || platform.Architecture != "") {
|
|
distributionInspect.Platforms = append(distributionInspect.Platforms, platform)
|
|
}
|
|
}
|
|
case *schema1.SignedManifest:
|
|
platform := v1.Platform{
|
|
Architecture: mnfstObj.Architecture,
|
|
OS: "linux",
|
|
}
|
|
distributionInspect.Platforms = append(distributionInspect.Platforms, platform)
|
|
}
|
|
|
|
return httputils.WriteJSON(w, http.StatusOK, distributionInspect)
|
|
}
|