2021-11-10 10:43:16 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-10 10:43:16 +05:30
|
|
|
|
|
|
|
package db
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
import (
|
|
|
|
"fmt"
|
2022-10-18 11:20:37 +05:30
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-11-24 15:19:20 +05:30
|
|
|
)
|
2021-11-10 10:43:16 +05:30
|
|
|
|
|
|
|
// ErrCancelled represents an error due to context cancellation
|
|
|
|
type ErrCancelled struct {
|
|
|
|
Message string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrCancelled checks if an error is a ErrCancelled.
|
|
|
|
func IsErrCancelled(err error) bool {
|
|
|
|
_, ok := err.(ErrCancelled)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrCancelled) Error() string {
|
|
|
|
return "Cancelled: " + err.Message
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrCancelledf returns an ErrCancelled for the provided format and args
|
2023-07-05 00:06:08 +05:30
|
|
|
func ErrCancelledf(format string, args ...any) error {
|
2021-11-10 10:43:16 +05:30
|
|
|
return ErrCancelled{
|
|
|
|
fmt.Sprintf(format, args...),
|
|
|
|
}
|
|
|
|
}
|
2021-12-10 13:44:24 +05:30
|
|
|
|
|
|
|
// ErrSSHDisabled represents an "SSH disabled" error.
|
|
|
|
type ErrSSHDisabled struct{}
|
|
|
|
|
|
|
|
// IsErrSSHDisabled checks if an error is a ErrSSHDisabled.
|
|
|
|
func IsErrSSHDisabled(err error) bool {
|
|
|
|
_, ok := err.(ErrSSHDisabled)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrSSHDisabled) Error() string {
|
|
|
|
return "SSH is disabled"
|
|
|
|
}
|
2022-05-08 19:16:34 +05:30
|
|
|
|
|
|
|
// ErrNotExist represents a non-exist error.
|
|
|
|
type ErrNotExist struct {
|
2022-10-18 11:20:37 +05:30
|
|
|
Resource string
|
|
|
|
ID int64
|
2022-05-08 19:16:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrNotExist checks if an error is an ErrNotExist
|
|
|
|
func IsErrNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrNotExist) Error() string {
|
2022-10-18 11:20:37 +05:30
|
|
|
name := "record"
|
|
|
|
if err.Resource != "" {
|
|
|
|
name = err.Resource
|
|
|
|
}
|
|
|
|
|
|
|
|
if err.ID != 0 {
|
|
|
|
return fmt.Sprintf("%s does not exist [id: %d]", name, err.ID)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s does not exist", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unwrap unwraps this as a ErrNotExist err
|
|
|
|
func (err ErrNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
2022-05-08 19:16:34 +05:30
|
|
|
}
|
2023-12-07 12:57:36 +05:30
|
|
|
|
|
|
|
// ErrConditionRequired represents an error which require condition.
|
|
|
|
type ErrConditionRequired struct{}
|
|
|
|
|
|
|
|
// IsErrConditionRequired checks if an error is an ErrConditionRequired
|
|
|
|
func IsErrConditionRequired(err error) bool {
|
|
|
|
_, ok := err.(ErrConditionRequired)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrConditionRequired) Error() string {
|
|
|
|
return "condition is required"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unwrap unwraps this as a ErrNotExist err
|
|
|
|
func (err ErrConditionRequired) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|