Merge pull request #1862 from RichardScothern/fix-build

Fix the build.
This commit is contained in:
Richard Scothern 2016-07-22 09:38:27 -07:00 committed by GitHub
commit 08d0d3756c
2 changed files with 18 additions and 14 deletions

View file

@ -22,10 +22,13 @@ type registry struct {
resumableDigestEnabled bool resumableDigestEnabled bool
schema1SigningKey libtrust.PrivateKey schema1SigningKey libtrust.PrivateKey
blobDescriptorServiceFactory distribution.BlobDescriptorServiceFactory blobDescriptorServiceFactory distribution.BlobDescriptorServiceFactory
manifestURLs struct { manifestURLs manifestURLs
}
// manifestURLs holds regular expressions for controlling manifest URL whitelisting
type manifestURLs struct {
allow *regexp.Regexp allow *regexp.Regexp
deny *regexp.Regexp deny *regexp.Regexp
}
} }
// RegistryOption is the type used for functional options for NewRegistry. // RegistryOption is the type used for functional options for NewRegistry.
@ -248,6 +251,7 @@ func (repo *repository) Manifests(ctx context.Context, options ...distribution.M
ctx: ctx, ctx: ctx,
repository: repo, repository: repo,
blobStore: blobStore, blobStore: blobStore,
manifestURLs: repo.registry.manifestURLs,
}, },
manifestListHandler: &manifestListHandler{ manifestListHandler: &manifestListHandler{
ctx: ctx, ctx: ctx,

View file

@ -1,12 +1,11 @@
package storage package storage
import ( import (
"encoding/json"
"errors" "errors"
"fmt" "fmt"
"net/url" "net/url"
"encoding/json"
"github.com/docker/distribution" "github.com/docker/distribution"
"github.com/docker/distribution/context" "github.com/docker/distribution/context"
"github.com/docker/distribution/digest" "github.com/docker/distribution/digest"
@ -24,6 +23,7 @@ type schema2ManifestHandler struct {
repository distribution.Repository repository distribution.Repository
blobStore distribution.BlobStore blobStore distribution.BlobStore
ctx context.Context ctx context.Context
manifestURLs manifestURLs
} }
var _ ManifestHandler = &schema2ManifestHandler{} var _ ManifestHandler = &schema2ManifestHandler{}
@ -97,8 +97,8 @@ func (ms *schema2ManifestHandler) verifyManifest(ctx context.Context, mnfst sche
if len(fsLayer.URLs) == 0 { if len(fsLayer.URLs) == 0 {
err = errMissingURL err = errMissingURL
} }
allow := ms.repository.manifestURLs.allow allow := ms.manifestURLs.allow
deny := ms.repository.manifestURLs.deny deny := ms.manifestURLs.deny
for _, u := range fsLayer.URLs { for _, u := range fsLayer.URLs {
var pu *url.URL var pu *url.URL
pu, err = url.Parse(u) pu, err = url.Parse(u)