2022-05-02 17:19:37 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/go-chi/render"
|
|
|
|
"gitlab.com/1f320/pronouns/backend/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WrapHandler wraps a modified http.HandlerFunc into a stdlib-compatible one.
|
|
|
|
// The inner HandlerFunc additionally returns an error.
|
|
|
|
func WrapHandler(hn func(w http.ResponseWriter, r *http.Request) error) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
err := hn(w, r)
|
|
|
|
if err != nil {
|
|
|
|
// if the function returned an API error, just render that verbatim
|
|
|
|
// we can assume that it also logged the error (if that was needed)
|
|
|
|
if apiErr, ok := err.(APIError); ok {
|
|
|
|
apiErr.prepare()
|
|
|
|
|
|
|
|
render.Status(r, apiErr.Status)
|
|
|
|
render.JSON(w, r, apiErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise, we log the error and return an internal server error message
|
|
|
|
log.Errorf("error in http handler: %v", err)
|
|
|
|
|
|
|
|
apiErr := APIError{Code: ErrInternalServerError}
|
|
|
|
apiErr.prepare()
|
|
|
|
|
|
|
|
render.Status(r, apiErr.Status)
|
|
|
|
render.JSON(w, r, apiErr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// APIError is an object returned by the API when an error occurs.
|
|
|
|
// It implements the error interface and can be returned by handlers.
|
|
|
|
type APIError struct {
|
|
|
|
Code int `json:"code"`
|
|
|
|
Message string `json:"message,omitempty"`
|
|
|
|
|
|
|
|
// Status is
|
|
|
|
Status int `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e APIError) Error() string {
|
|
|
|
return fmt.Sprintf("%s (code: %d)", e.Message, e.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *APIError) prepare() {
|
|
|
|
if e.Status == 0 {
|
|
|
|
e.Status = errCodeStatuses[e.Code]
|
|
|
|
}
|
|
|
|
|
|
|
|
if e.Message == "" {
|
|
|
|
e.Message = errCodeMessages[e.Code]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error code constants
|
|
|
|
const (
|
2022-05-04 16:27:16 +02:00
|
|
|
ErrBadRequest = 400
|
|
|
|
ErrForbidden = 403
|
2022-05-02 17:19:37 +02:00
|
|
|
ErrInternalServerError = 500 // catch-all code for unknown errors
|
2022-05-04 16:27:16 +02:00
|
|
|
|
|
|
|
// Login/authorize error codes
|
|
|
|
ErrInvalidState = 1001
|
|
|
|
ErrInvalidOAuthCode = 1002
|
|
|
|
|
|
|
|
// User-related error codes
|
|
|
|
ErrUserNotFound = 2001
|
2022-05-02 17:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var errCodeMessages = map[int]string{
|
2022-05-04 16:27:16 +02:00
|
|
|
ErrBadRequest: "Bad request",
|
|
|
|
ErrForbidden: "Forbidden",
|
2022-05-02 17:19:37 +02:00
|
|
|
ErrInternalServerError: "Internal server error",
|
2022-05-04 16:27:16 +02:00
|
|
|
|
|
|
|
ErrInvalidState: "Invalid OAuth state",
|
|
|
|
ErrInvalidOAuthCode: "Invalid OAuth code",
|
|
|
|
|
|
|
|
ErrUserNotFound: "User not found",
|
2022-05-02 17:19:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var errCodeStatuses = map[int]int{
|
2022-05-04 16:27:16 +02:00
|
|
|
ErrBadRequest: http.StatusBadRequest,
|
|
|
|
ErrForbidden: http.StatusForbidden,
|
2022-05-02 17:19:37 +02:00
|
|
|
ErrInternalServerError: http.StatusInternalServerError,
|
2022-05-04 16:27:16 +02:00
|
|
|
|
|
|
|
ErrInvalidState: http.StatusBadRequest,
|
|
|
|
ErrInvalidOAuthCode: http.StatusForbidden,
|
|
|
|
|
|
|
|
ErrUserNotFound: http.StatusNotFound,
|
2022-05-02 17:19:37 +02:00
|
|
|
}
|