2018-02-05 16:05:59 -05:00
|
|
|
package registry // import "github.com/docker/docker/registry"
|
2017-07-19 10:20:13 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/distribution/registry/api/errcode"
|
2018-01-11 14:53:06 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2017-07-19 10:20:13 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type notFoundError string
|
|
|
|
|
|
|
|
func (e notFoundError) Error() string {
|
|
|
|
return string(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (notFoundError) NotFound() {}
|
|
|
|
|
|
|
|
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:
|
2017-11-28 23:09:37 -05:00
|
|
|
return errdefs.Unauthorized(err)
|
2017-07-19 10:20:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|