0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-23 22:27:35 -05:00
zot/pkg/api/errors/errors.go

172 lines
4.9 KiB
Go
Raw Normal View History

package errors
2019-06-20 18:36:40 -05:00
import (
"zotregistry.io/zot/errors"
)
2019-06-20 18:36:40 -05:00
type Error struct {
Code string `json:"code"`
Message string `json:"message"`
Description string `json:"-"`
Detail map[string]string `json:"detail"`
}
2019-06-20 18:36:40 -05:00
type ErrorList struct {
Errors []*Error `json:"errors"`
}
type ErrorCode int
//nolint:golint,stylecheck,revive
2019-06-20 18:36:40 -05:00
const (
BLOB_UNKNOWN ErrorCode = iota
BLOB_UPLOAD_INVALID
BLOB_UPLOAD_UNKNOWN
DIGEST_INVALID
MANIFEST_BLOB_UNKNOWN
MANIFEST_INVALID
MANIFEST_UNKNOWN
NAME_INVALID
NAME_UNKNOWN
SIZE_INVALID
UNAUTHORIZED
DENIED
UNSUPPORTED
TOOMANYREQUESTS
2019-06-20 18:36:40 -05:00
)
func (e ErrorCode) String() string {
errMap := map[ErrorCode]string{
BLOB_UNKNOWN: "BLOB_UNKNOWN",
BLOB_UPLOAD_INVALID: "BLOB_UPLOAD_INVALID",
BLOB_UPLOAD_UNKNOWN: "BLOB_UPLOAD_UNKNOWN",
DIGEST_INVALID: "DIGEST_INVALID",
MANIFEST_BLOB_UNKNOWN: "MANIFEST_BLOB_UNKNOWN",
MANIFEST_INVALID: "MANIFEST_INVALID",
MANIFEST_UNKNOWN: "MANIFEST_UNKNOWN",
NAME_INVALID: "NAME_INVALID",
NAME_UNKNOWN: "NAME_UNKNOWN",
SIZE_INVALID: "SIZE_INVALID",
UNAUTHORIZED: "UNAUTHORIZED",
DENIED: "DENIED",
UNSUPPORTED: "UNSUPPORTED",
TOOMANYREQUESTS: "TOOMANYREQUESTS",
}
return errMap[e]
}
func NewError(code ErrorCode) *Error {
errMap := map[ErrorCode]Error{
2019-06-20 18:36:40 -05:00
BLOB_UNKNOWN: {
Message: "blob unknown to registry",
Description: "blob unknown to registry This error MAY be returned when a blob is unknown " +
" to the registry in a specified repository. This can be returned with a standard get or " +
"if a manifest references an unknown layer during upload.",
},
BLOB_UPLOAD_INVALID: {
Message: "blob upload invalid",
Description: "The blob upload encountered an error and can no longer proceed.",
2019-06-20 18:36:40 -05:00
},
BLOB_UPLOAD_UNKNOWN: {
Message: "blob upload unknown to registry",
Description: "If a blob upload has been cancelled or was never started, this error code MAY be returned.",
2019-06-20 18:36:40 -05:00
},
DIGEST_INVALID: {
Message: "provided digest did not match uploaded content",
Description: "When a blob is uploaded, the registry will check that the content matches the " +
"digest provided by the client. The error MAY include a detail structure with the key " +
"\"digest\", including the invalid digest string. This error MAY also be returned when " +
"a manifest includes an invalid layer digest.",
},
MANIFEST_BLOB_UNKNOWN: {
Message: "blob unknown to registry",
Description: "This error MAY be returned when a manifest blob is unknown to the registry.",
2019-06-20 18:36:40 -05:00
},
MANIFEST_INVALID: {
Message: "manifest invalid",
Description: "During upload, manifests undergo several checks ensuring " +
"validity. If those checks fail, this error MAY be returned, unless a more " +
"specific error is included. The detail will contain information the failed validation.",
2019-06-20 18:36:40 -05:00
},
MANIFEST_UNKNOWN: {
Message: "manifest unknown",
Description: "This error is returned when the manifest, identified by name " +
"and tag is unknown to the repository.",
2019-06-20 18:36:40 -05:00
},
NAME_INVALID: {
Message: "invalid repository name",
Description: "Invalid repository name encountered either during manifest " +
"validation or any API operation.",
2019-06-20 18:36:40 -05:00
},
NAME_UNKNOWN: {
Message: "repository name not known to registry",
Description: "This is returned if the name used during an operation is unknown to the registry.",
2019-06-20 18:36:40 -05:00
},
SIZE_INVALID: {
Message: "provided length did not match content length",
Description: "When a layer is uploaded, the provided size will be checked against " +
"the uploaded content. If they do not match, this error will be returned.",
2019-06-20 18:36:40 -05:00
},
UNAUTHORIZED: {
Message: "authentication required",
Description: "The access controller was unable to authenticate the client. " +
"Often this will be accompanied by a WWW-Authenticate HTTP response header " +
"indicating how to authenticate.",
2019-06-20 18:36:40 -05:00
},
DENIED: {
Message: "requested access to the resource is denied",
Description: "The access controller denied access for the operation on a resource.",
2019-06-20 18:36:40 -05:00
},
UNSUPPORTED: {
Message: "the operation is unsupported",
Description: "The operation was unsupported due to a missing " +
"implementation or invalid set of parameters.",
2019-06-20 18:36:40 -05:00
},
TOOMANYREQUESTS: {
Message: "too many requests",
Description: "When a user or users has sent too many requests to the server within a given amount of time.",
},
2019-06-20 18:36:40 -05:00
}
err, ok := errMap[code]
2019-06-20 18:36:40 -05:00
if !ok {
panic(errors.ErrUnknownCode)
}
err.Code = code.String()
err.Detail = map[string]string{
"description": err.Description,
}
return &err
2019-06-20 18:36:40 -05:00
}
func (err *Error) AddDetail(m map[string]string) *Error {
for k, v := range m {
err.Detail[k] = v
}
return err
}
func NewErrorList(errors ...*Error) ErrorList {
var errList []*Error
errList = append(errList, errors...)
return ErrorList{errList}
}