also needs to update docker/docker to a60b458 (22.06 branch) otherwise build breaks since docker/cli#3512 with: # github.com/docker/cli/cli/flags vendor/github.com/docker/cli/cli/flags/common.go:40:37: undefined: client.EnvOverrideCertPath vendor/github.com/docker/cli/cli/flags/common.go:41:37: undefined: client.EnvTLSVerify vendor/github.com/docker/cli/cli/flags/common.go:89:76: undefined: client.EnvOverrideHost needs also to update github.com/spf13/cobra to v1.5.0 otherwise build breaks with: # github.com/docker/cli/cli-plugins/plugin vendor/github.com/docker/cli/cli-plugins/plugin/plugin.go:130:4: unknown field 'HiddenDefaultCmd' in struct literal of type cobra.CompletionOptions Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
37 lines
827 B
Go
37 lines
827 B
Go
package registry // import "github.com/docker/docker/registry"
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/docker/distribution/registry/api/errcode"
|
|
"github.com/docker/docker/errdefs"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func translateV2AuthError(err error) error {
|
|
switch e := err.(type) {
|
|
case *url.Error:
|
|
switch e2 := e.Err.(type) {
|
|
case errcode.Error:
|
|
switch e2.Code {
|
|
case errcode.ErrorCodeUnauthorized:
|
|
return errdefs.Unauthorized(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func invalidParam(err error) error {
|
|
return errdefs.InvalidParameter(err)
|
|
}
|
|
|
|
func invalidParamf(format string, args ...interface{}) error {
|
|
return errdefs.InvalidParameter(errors.Errorf(format, args...))
|
|
}
|
|
|
|
func invalidParamWrapf(err error, format string, args ...interface{}) error {
|
|
return errdefs.InvalidParameter(errors.Wrapf(err, format, args...))
|
|
}
|