enhance: Improve validation errors for secrets/variables (#39221)

Signed-off-by: Ross Golder <ross@golder.org>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Ross Golder
2026-09-04 00:28:58 +00:00
committed by GitHub
co-authored by wxiaoguang
parent ce2fd8d882
commit 2d3ad4a530
19 changed files with 148 additions and 218 deletions
+42 -28
View File
@@ -9,44 +9,65 @@ import (
"html/template"
)
// Common Errors forming the base of our error system
//
// Many Errors returned by Gitea can be tested against these errors using "errors.Is".
var (
ErrInvalidArgument = errors.New("invalid argument") // also implies HTTP 400
ErrPermissionDenied = errors.New("permission denied") // also implies HTTP 403
ErrNotExist = errors.New("resource does not exist") // also implies HTTP 404
ErrAlreadyExist = errors.New("resource already exists") // also implies HTTP 409
ErrContentTooLarge = errors.New("content exceeds limit") // also implies HTTP 413
// This file defines common errors forming the base of our error system.
// These errors can be used to classify errors and to provide a common,
// safe (no server-side sensitive information), and translatable error message for end users.
// ErrUnprocessableContent implies HTTP 422, the syntax of the request content is correct,
// but the server is unable to process the contained instructions
ErrUnprocessableContent = errors.New("unprocessable content")
// ErrorTranslatable wraps an error with translation information
type ErrorTranslatable interface {
error
Unwrap() error
Translate(ErrorLocaleTranslator) template.HTML
}
var (
ErrInvalidArgument = errorForUser{400, "invalid argument"}
ErrPermissionDenied = errorForUser{403, "permission denied"}
ErrNotExist = errorForUser{404, "resource does not exist"}
ErrAlreadyExist = errorForUser{409, "resource already exists"} // 409 Conflict
ErrContentTooLarge = errorForUser{413, "content exceeds limit"} // 413 Request Entity Too Large
// ErrUnprocessableContent means request content is correct, but the server is unable to process the contained instructions
ErrUnprocessableContent = errorForUser{422, "unprocessable content"} // 422 Unprocessable Entity
)
type errorForUser struct {
code int // implies HTTP status code
msg string
}
func (w errorForUser) Error() string {
return w.msg
}
func ErrorUnwrapForUser(err error) (string, int) {
if e, ok := errors.AsType[errorForUser](err); ok {
return err.Error(), e.code
}
return "", 0
}
// errorWrapper provides a simple wrapper for a wrapped error where the wrapped error message plays no part in the error message
// Especially useful for "untyped" errors created with "errors.New(…)" that can be classified as 'invalid argument', 'permission denied', 'exists already', or 'does not exist'
type errorWrapper struct {
Message string
Err error
msg string
err error
}
// Error returns the message
func (w errorWrapper) Error() string {
return w.Message
return w.msg
}
// Unwrap returns the underlying error
func (w errorWrapper) Unwrap() error {
return w.Err
return w.err
}
// ErrorWrap returns an error that formats as the given text but unwraps as the provided error
// The message should be safe (no sensitive information) to be shown to end users
func ErrorWrap(unwrap error, message string, args ...any) error {
if len(args) == 0 {
return errorWrapper{Message: message, Err: unwrap}
return errorWrapper{msg: message, err: unwrap}
}
return errorWrapper{Message: fmt.Sprintf(message, args...), Err: unwrap}
return errorWrapper{msg: fmt.Sprintf(message, args...), err: unwrap}
}
// NewInvalidArgumentErrorf returns an error that formats as the given text but unwraps as an ErrInvalidArgument
@@ -69,13 +90,6 @@ func NewNotExistErrorf(message string, args ...any) error {
return ErrorWrap(ErrNotExist, message, args...)
}
// ErrorTranslatable wraps an error with translation information
type ErrorTranslatable interface {
error
Unwrap() error
Translate(ErrorLocaleTranslator) template.HTML
}
type errorTranslatableWrapper struct {
err error
trKey string