2021-05-17 18:06:58 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-05-17 18:06:58 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
package gtserror
|
2021-05-08 13:25:55 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
// WithCode wraps an internal error with an http code, and a 'safe' version of
|
2021-05-08 13:25:55 +01:00
|
|
|
// the error that can be served to clients without revealing internal business logic.
|
|
|
|
//
|
|
|
|
// A typical use of this error would be to first log the Original error, then return
|
|
|
|
// the Safe error and the StatusCode to an API caller.
|
2021-06-13 17:42:28 +01:00
|
|
|
type WithCode interface {
|
2021-05-08 13:25:55 +01:00
|
|
|
// Error returns the original internal error for debugging within the GoToSocial logs.
|
|
|
|
// This should *NEVER* be returned to a client as it may contain sensitive information.
|
|
|
|
Error() string
|
|
|
|
// Safe returns the API-safe version of the error for serialization towards a client.
|
|
|
|
// There's not much point logging this internally because it won't contain much helpful information.
|
|
|
|
Safe() string
|
|
|
|
// Code returns the status code for serving to a client.
|
|
|
|
Code() int
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
type withCode struct {
|
2021-05-08 13:25:55 +01:00
|
|
|
original error
|
|
|
|
safe error
|
|
|
|
code int
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
func (e withCode) Error() string {
|
2021-05-08 13:25:55 +01:00
|
|
|
return e.original.Error()
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
func (e withCode) Safe() string {
|
2021-05-08 13:25:55 +01:00
|
|
|
return e.safe.Error()
|
|
|
|
}
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
func (e withCode) Code() int {
|
2021-05-08 13:25:55 +01:00
|
|
|
return e.code
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErrorBadRequest returns an ErrorWithCode 400 with the given original error and optional help text.
|
2021-06-13 17:42:28 +01:00
|
|
|
func NewErrorBadRequest(original error, helpText ...string) WithCode {
|
2022-06-08 19:38:03 +01:00
|
|
|
safe := http.StatusText(http.StatusBadRequest)
|
2021-05-08 13:25:55 +01:00
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
2021-06-13 17:42:28 +01:00
|
|
|
return withCode{
|
2021-05-08 13:25:55 +01:00
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusBadRequest,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
// NewErrorUnauthorized returns an ErrorWithCode 401 with the given original error and optional help text.
|
|
|
|
func NewErrorUnauthorized(original error, helpText ...string) WithCode {
|
|
|
|
safe := http.StatusText(http.StatusUnauthorized)
|
2021-05-08 13:25:55 +01:00
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
2021-06-13 17:42:28 +01:00
|
|
|
return withCode{
|
2021-05-08 13:25:55 +01:00
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusUnauthorized,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErrorForbidden returns an ErrorWithCode 403 with the given original error and optional help text.
|
2021-06-13 17:42:28 +01:00
|
|
|
func NewErrorForbidden(original error, helpText ...string) WithCode {
|
2022-06-08 19:38:03 +01:00
|
|
|
safe := http.StatusText(http.StatusForbidden)
|
2021-05-08 13:25:55 +01:00
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
2021-06-13 17:42:28 +01:00
|
|
|
return withCode{
|
2021-05-08 13:25:55 +01:00
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusForbidden,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErrorNotFound returns an ErrorWithCode 404 with the given original error and optional help text.
|
2021-06-13 17:42:28 +01:00
|
|
|
func NewErrorNotFound(original error, helpText ...string) WithCode {
|
2022-06-08 19:38:03 +01:00
|
|
|
safe := http.StatusText(http.StatusNotFound)
|
2021-05-08 13:25:55 +01:00
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
2021-06-13 17:42:28 +01:00
|
|
|
return withCode{
|
2021-05-08 13:25:55 +01:00
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusNotFound,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErrorInternalError returns an ErrorWithCode 500 with the given original error and optional help text.
|
2021-06-13 17:42:28 +01:00
|
|
|
func NewErrorInternalError(original error, helpText ...string) WithCode {
|
2022-06-08 19:38:03 +01:00
|
|
|
safe := http.StatusText(http.StatusInternalServerError)
|
2021-05-08 13:25:55 +01:00
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
2021-06-13 17:42:28 +01:00
|
|
|
return withCode{
|
2021-05-08 13:25:55 +01:00
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusInternalServerError,
|
|
|
|
}
|
|
|
|
}
|
2022-01-15 16:36:15 +00:00
|
|
|
|
|
|
|
// NewErrorConflict returns an ErrorWithCode 409 with the given original error and optional help text.
|
|
|
|
func NewErrorConflict(original error, helpText ...string) WithCode {
|
2022-06-08 19:38:03 +01:00
|
|
|
safe := http.StatusText(http.StatusConflict)
|
2022-01-15 16:36:15 +00:00
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
|
|
|
return withCode{
|
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusConflict,
|
|
|
|
}
|
|
|
|
}
|
2022-06-08 19:38:03 +01:00
|
|
|
|
|
|
|
// NewErrorNotAcceptable returns an ErrorWithCode 406 with the given original error and optional help text.
|
|
|
|
func NewErrorNotAcceptable(original error, helpText ...string) WithCode {
|
|
|
|
safe := http.StatusText(http.StatusNotAcceptable)
|
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
|
|
|
return withCode{
|
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusNotAcceptable,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewErrorUnprocessableEntity returns an ErrorWithCode 422 with the given original error and optional help text.
|
|
|
|
func NewErrorUnprocessableEntity(original error, helpText ...string) WithCode {
|
|
|
|
safe := http.StatusText(http.StatusUnprocessableEntity)
|
|
|
|
if helpText != nil {
|
|
|
|
safe = safe + ": " + strings.Join(helpText, ": ")
|
|
|
|
}
|
|
|
|
return withCode{
|
|
|
|
original: original,
|
|
|
|
safe: errors.New(safe),
|
|
|
|
code: http.StatusUnprocessableEntity,
|
|
|
|
}
|
|
|
|
}
|