mirror of
https://github.com/harness/drone.git
synced 2025-05-03 14:40:53 +08:00
72 lines
2.3 KiB
Go
72 lines
2.3 KiB
Go
// Source: https://github.com/goharbor/harbor
|
|
|
|
// Copyright 2016 Project Harbor Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package errors
|
|
|
|
const (
|
|
// NotFoundCode is code for the error of no object found.
|
|
NotFoundCode = "NOT_FOUND"
|
|
// ConflictCode ...
|
|
ConflictCode = "CONFLICT"
|
|
// UnAuthorizedCode ...
|
|
UnAuthorizedCode = "UNAUTHORIZED"
|
|
// BadRequestCode ...
|
|
BadRequestCode = "BAD_REQUEST"
|
|
// ForbiddenCode ...
|
|
ForbiddenCode = "FORBIDDEN"
|
|
// MethodNotAllowedCode ...
|
|
MethodNotAllowedCode = "METHOD_NOT_ALLOWED"
|
|
// RateLimitCode.
|
|
RateLimitCode = "TOO_MANY_REQUEST"
|
|
// PreconditionCode ...
|
|
PreconditionCode = "PRECONDITION"
|
|
// GeneralCode ...
|
|
GeneralCode = "UNKNOWN"
|
|
// DENIED it's used by middleware(readonly, vul and content trust)
|
|
// and returned to docker client to index the request is denied.
|
|
DENIED = "DENIED"
|
|
// PROJECTPOLICYVIOLATION ...
|
|
PROJECTPOLICYVIOLATION = "PROJECTPOLICYVIOLATION"
|
|
// ViolateForeignKeyConstraintCode is the error code for violating foreign key constraint error.
|
|
ViolateForeignKeyConstraintCode = "VIOLATE_FOREIGN_KEY_CONSTRAINT"
|
|
// DIGESTINVALID ...
|
|
DIGESTINVALID = "DIGEST_INVALID"
|
|
// MANIFESTINVALID ...
|
|
MANIFESTINVALID = "MANIFEST_INVALID"
|
|
// UNSUPPORTED is for digest UNSUPPORTED error.
|
|
UNSUPPORTED = "UNSUPPORTED"
|
|
)
|
|
|
|
// NotFoundError is error for the case of object not found.
|
|
func NotFoundError(err error) *Error {
|
|
return New("resource not found").WithCode(NotFoundCode).WithCause(err)
|
|
}
|
|
|
|
// UnknownError ...
|
|
func UnknownError(err error) *Error {
|
|
return New("unknown").WithCode(GeneralCode).WithCause(err)
|
|
}
|
|
|
|
// IsNotFoundErr returns true when the error is NotFoundError.
|
|
func IsNotFoundErr(err error) bool {
|
|
return IsErr(err, NotFoundCode)
|
|
}
|
|
|
|
// IsRateLimitError checks whether the err chains contains rate limit error.
|
|
func IsRateLimitError(err error) bool {
|
|
return IsErr(err, RateLimitCode)
|
|
}
|