[bugfix] Overwrite API client closed errors with `499 - Client Closed Request` (#1857)
* [bugfix] Overwrite client closed errors with 499 * bleep bloop * review changes
This commit is contained in:
parent
20978b1278
commit
2358cf4e43
|
@ -83,25 +83,44 @@ func genericErrorHandler(c *gin.Context, instanceGet func(ctx context.Context) (
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ErrorHandler takes the provided gin context and errWithCode and tries to serve
|
// ErrorHandler takes the provided gin context and errWithCode
|
||||||
// a helpful error to the caller. It will do content negotiation to figure out if
|
// and tries to serve a helpful error to the caller.
|
||||||
// the caller prefers to see an html page with the error rendered there. If not, or
|
//
|
||||||
// if something goes wrong during the function, it will recover and just try to serve
|
// It will do content negotiation to figure out if the caller prefers
|
||||||
// an appropriate application/json content-type error.
|
// to see an html page with the error rendered there. If not, or if
|
||||||
|
// something goes wrong during the function, it will recover and just
|
||||||
|
// try to serve an appropriate application/json content-type error.
|
||||||
// To override the default response type, specify `offers`.
|
// To override the default response type, specify `offers`.
|
||||||
|
//
|
||||||
|
// If the requester already hung up on the request, ErrorHandler
|
||||||
|
// will overwrite the given errWithCode with a 499 error to indicate
|
||||||
|
// that the failure wasn't due to something we did, and will avoid
|
||||||
|
// trying to write extensive bytes to the caller by just aborting.
|
||||||
|
//
|
||||||
|
// See: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#nginx.
|
||||||
func ErrorHandler(c *gin.Context, errWithCode gtserror.WithCode, instanceGet func(ctx context.Context) (*apimodel.InstanceV1, gtserror.WithCode), offers ...MIME) {
|
func ErrorHandler(c *gin.Context, errWithCode gtserror.WithCode, instanceGet func(ctx context.Context) (*apimodel.InstanceV1, gtserror.WithCode), offers ...MIME) {
|
||||||
// set the error on the gin context so that it can be logged
|
if c.Request.Context().Err() != nil {
|
||||||
// in the gin logger middleware (internal/router/logger.go)
|
// Context error means requester probably left already.
|
||||||
|
// Wrap original error with a less alarming one. Then
|
||||||
|
// we can return early, because it doesn't matter what
|
||||||
|
// we send to the client at this point; they're gone.
|
||||||
|
errWithCode = gtserror.NewErrorClientClosedRequest(errWithCode.Unwrap())
|
||||||
|
c.AbortWithStatus(errWithCode.Code())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the error on the gin context so that it can be logged
|
||||||
|
// in the gin logger middleware (internal/middleware/logger.go).
|
||||||
c.Error(errWithCode) //nolint:errcheck
|
c.Error(errWithCode) //nolint:errcheck
|
||||||
|
|
||||||
// discover if we're allowed to serve a nice html error page,
|
// Discover if we're allowed to serve a nice html error page,
|
||||||
// or if we should just use a json. Normally we would want to
|
// or if we should just use a json. Normally we would want to
|
||||||
// check for a returned error, but if an error occurs here we
|
// check for a returned error, but if an error occurs here we
|
||||||
// can just fall back to default behavior (serve json error).
|
// can just fall back to default behavior (serve json error).
|
||||||
accept, _ := NegotiateAccept(c, JSONOrHTMLAcceptHeaders...)
|
accept, _ := NegotiateAccept(c, JSONOrHTMLAcceptHeaders...)
|
||||||
|
|
||||||
if errWithCode.Code() == http.StatusNotFound {
|
if errWithCode.Code() == http.StatusNotFound {
|
||||||
// use our special not found handler with useful status text
|
// Use our special not found handler with useful status text.
|
||||||
NotFoundHandler(c, instanceGet, accept)
|
NotFoundHandler(c, instanceGet, accept)
|
||||||
} else {
|
} else {
|
||||||
genericErrorHandler(c, instanceGet, accept, errWithCode)
|
genericErrorHandler(c, instanceGet, accept, errWithCode)
|
||||||
|
|
|
@ -23,13 +23,23 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Custom http response codes + text that
|
||||||
|
// aren't included in the net/http package.
|
||||||
|
const (
|
||||||
|
StatusClientClosedRequest = 499
|
||||||
|
StatusTextClientClosedRequest = "Client Closed Request"
|
||||||
|
)
|
||||||
|
|
||||||
// WithCode wraps an internal error with an http code, and a 'safe' version of
|
// WithCode wraps an internal error with an http code, and a 'safe' version of
|
||||||
// the error that can be served to clients without revealing internal business logic.
|
// 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
|
// 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.
|
// the Safe error and the StatusCode to an API caller.
|
||||||
type WithCode interface {
|
type WithCode interface {
|
||||||
// Error returns the original internal error for debugging within the GoToSocial logs.
|
// Unwrap returns the original error.
|
||||||
|
// This should *NEVER* be returned to a client as it may contain sensitive information.
|
||||||
|
Unwrap() error
|
||||||
|
// Error serializes the original internal error for debugging within the GoToSocial logs.
|
||||||
// This should *NEVER* be returned to a client as it may contain sensitive information.
|
// This should *NEVER* be returned to a client as it may contain sensitive information.
|
||||||
Error() string
|
Error() string
|
||||||
// Safe returns the API-safe version of the error for serialization towards a client.
|
// Safe returns the API-safe version of the error for serialization towards a client.
|
||||||
|
@ -45,6 +55,10 @@ type withCode struct {
|
||||||
code int
|
code int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (e withCode) Unwrap() error {
|
||||||
|
return e.original
|
||||||
|
}
|
||||||
|
|
||||||
func (e withCode) Error() string {
|
func (e withCode) Error() string {
|
||||||
return e.original.Error()
|
return e.original.Error()
|
||||||
}
|
}
|
||||||
|
@ -173,3 +187,14 @@ func NewErrorGone(original error, helpText ...string) WithCode {
|
||||||
code: http.StatusGone,
|
code: http.StatusGone,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewErrorClientClosedRequest returns an ErrorWithCode 499 with the given original error.
|
||||||
|
// This error type should only be used when an http caller has already hung up their request.
|
||||||
|
// See: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#nginx
|
||||||
|
func NewErrorClientClosedRequest(original error) WithCode {
|
||||||
|
return withCode{
|
||||||
|
original: original,
|
||||||
|
safe: errors.New(StatusTextClientClosedRequest),
|
||||||
|
code: StatusClientClosedRequest,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@ import (
|
||||||
"codeberg.org/gruf/go-kv"
|
"codeberg.org/gruf/go-kv"
|
||||||
"codeberg.org/gruf/go-logger/v2/level"
|
"codeberg.org/gruf/go-logger/v2/level"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
||||||
"github.com/superseriousbusiness/gotosocial/internal/log"
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -91,11 +92,23 @@ func Logger(logClientIP bool) gin.HandlerFunc {
|
||||||
l = l.WithField("error", c.Errors)
|
l = l.WithField("error", c.Errors)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get appropriate text for this code.
|
||||||
|
statusText := http.StatusText(code)
|
||||||
|
if statusText == "" {
|
||||||
|
// Look for custom codes.
|
||||||
|
switch code {
|
||||||
|
case gtserror.StatusClientClosedRequest:
|
||||||
|
statusText = gtserror.StatusTextClientClosedRequest
|
||||||
|
default:
|
||||||
|
statusText = "Unknown Status"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Generate a nicer looking bytecount
|
// Generate a nicer looking bytecount
|
||||||
size := bytesize.Size(c.Writer.Size())
|
size := bytesize.Size(c.Writer.Size())
|
||||||
|
|
||||||
// Finally, write log entry with status text body size
|
// Finally, write log entry with status text + body size.
|
||||||
l.Logf(lvl, "%s: wrote %s", http.StatusText(code), size)
|
l.Logf(lvl, "%s: wrote %s", statusText, size)
|
||||||
}()
|
}()
|
||||||
|
|
||||||
// Process request
|
// Process request
|
||||||
|
|
Loading…
Reference in New Issue