mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-07-10 16:44:26 -05:00
This changes the error handling to a centralized HTTP error handler in `pkg/routes/error_handler.go` that converts all error types to proper HTTP responses. This simplifies the overall error handling because http handler now only need to return the error instead of calling HandleHTTPError as previously. It also removes the duplication between handling errors with and without Sentry. 🐰 Hop along, dear errors, no more wrapping today! We've centralized handlers in a shiny new way, From scattered to unified, the code flows so clean, ValidationHTTPError marshals JSON supreme! Direct propagation hops forward with glee, A refactor so grand—what a sight to see! 🎉
136 lines
4.4 KiB
Go
136 lines
4.4 KiB
Go
// Vikunja is a to-do list application to facilitate your life.
|
|
// Copyright 2018-present Vikunja and contributors. All rights reserved.
|
|
//
|
|
// 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 <https://www.gnu.org/licenses/>.
|
|
|
|
package routes
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"net/http"
|
|
|
|
"code.vikunja.io/api/pkg/files"
|
|
"code.vikunja.io/api/pkg/log"
|
|
"code.vikunja.io/api/pkg/web"
|
|
|
|
"github.com/getsentry/sentry-go"
|
|
sentryecho "github.com/getsentry/sentry-go/echo"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
// httpCodeGetter is an interface for errors that can provide their HTTP status code.
|
|
type httpCodeGetter interface {
|
|
GetHTTPCode() int
|
|
}
|
|
|
|
// errorMessage is used to wrap string error messages in a consistent JSON structure.
|
|
type errorMessage struct {
|
|
Message interface{} `json:"message"`
|
|
}
|
|
|
|
// CreateHTTPErrorHandler creates a centralized HTTP error handler that:
|
|
// 1. Converts all error types to proper HTTP responses
|
|
// 2. Preserves full error details (like ValidationHTTPError.InvalidFields)
|
|
// 3. Handles Sentry reporting for 5xx errors
|
|
// 4. Logs all errors appropriately
|
|
func CreateHTTPErrorHandler(e *echo.Echo, enableSentry bool) echo.HTTPErrorHandler {
|
|
return func(err error, c echo.Context) {
|
|
if c.Response().Committed {
|
|
return
|
|
}
|
|
|
|
var (
|
|
code = http.StatusInternalServerError
|
|
message interface{} = http.StatusText(http.StatusInternalServerError)
|
|
)
|
|
|
|
// Keep track of the original error for logging/sentry
|
|
originalErr := err
|
|
|
|
// 1. Check if it's already an echo.HTTPError (from middleware, auth, etc.)
|
|
var he *echo.HTTPError
|
|
if errors.As(err, &he) {
|
|
code = he.Code
|
|
message = he.Message
|
|
// Check if internal error has more details we should use
|
|
if he.Internal != nil {
|
|
originalErr = he.Internal
|
|
err = he.Internal
|
|
}
|
|
}
|
|
|
|
// 2. Special case: 413 body limit → convert to ErrFileIsTooLarge
|
|
// This must be checked before other error type checks
|
|
if code == http.StatusRequestEntityTooLarge {
|
|
fileErr := files.ErrFileIsTooLarge{}
|
|
errDetails := fileErr.HTTPError()
|
|
code = errDetails.HTTPCode
|
|
message = errDetails
|
|
} else if _, isMarshaler := err.(json.Marshaler); isMarshaler {
|
|
// 3. Check for json.Marshaler (preserves full struct like ValidationHTTPError)
|
|
// This allows errors with extra fields (like InvalidFields) to be serialized correctly
|
|
if codeGetter, hasCode := err.(httpCodeGetter); hasCode {
|
|
code = codeGetter.GetHTTPCode()
|
|
}
|
|
message = err // Echo will serialize via MarshalJSON
|
|
} else if hp, ok := err.(web.HTTPErrorProcessor); ok {
|
|
// 4. Standard HTTPErrorProcessor (domain errors like ErrProjectDoesNotExist)
|
|
errDetails := hp.HTTPError()
|
|
code = errDetails.HTTPCode
|
|
message = errDetails
|
|
}
|
|
// 5. For any other error type, we keep the defaults (500 with generic message)
|
|
// or the echo.HTTPError values if it was that type
|
|
|
|
// Log the error
|
|
log.Error(originalErr.Error())
|
|
|
|
// Sentry reporting for 5xx errors
|
|
if enableSentry && code >= 500 {
|
|
reportToSentry(originalErr, c)
|
|
}
|
|
|
|
// Send response
|
|
if c.Request().Method == http.MethodHead {
|
|
err = c.NoContent(code)
|
|
} else {
|
|
// Wrap string messages in a struct to ensure consistent JSON format
|
|
// e.g., "Forbidden" becomes {"message": "Forbidden"}
|
|
if _, isString := message.(string); isString {
|
|
message = errorMessage{Message: message}
|
|
}
|
|
err = c.JSON(code, message)
|
|
}
|
|
if err != nil {
|
|
e.Logger.Error(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// reportToSentry sends an error to Sentry with request context
|
|
func reportToSentry(err error, c echo.Context) {
|
|
hub := sentryecho.GetHubFromContext(c)
|
|
if hub != nil {
|
|
hub.WithScope(func(scope *sentry.Scope) {
|
|
scope.SetExtra("url", c.Request().URL)
|
|
hub.CaptureException(err)
|
|
})
|
|
} else {
|
|
sentry.CaptureException(err)
|
|
log.Debugf("Could not add context for sending error '%s' to sentry", err.Error())
|
|
}
|
|
log.Debugf("Error '%s' sent to sentry", err.Error())
|
|
}
|