forked from auth0/go-jwt-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error_handler.go
69 lines (59 loc) · 2.42 KB
/
error_handler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package jwtmiddleware
import (
"errors"
"fmt"
"net/http"
)
var (
// ErrJWTMissing is returned when the JWT is missing.
ErrJWTMissing = errors.New("jwt missing")
// ErrJWTInvalid is returned when the JWT is invalid.
ErrJWTInvalid = errors.New("jwt invalid")
)
// ErrorHandler is a handler which is called when an error occurs in the
// JWTMiddleware. Among some general errors, this handler also determines the
// response of the JWTMiddleware when a token is not found or is invalid. The
// err can be checked to be ErrJWTMissing or ErrJWTInvalid for specific cases.
// The default handler will return a status code of 400 for ErrJWTMissing,
// 401 for ErrJWTInvalid, and 500 for all other errors. If you implement your
// own ErrorHandler you MUST take into consideration the error types as not
// properly responding to them or having a poorly implemented handler could
// result in the JWTMiddleware not functioning as intended.
type ErrorHandler func(w http.ResponseWriter, r *http.Request, err error)
// DefaultErrorHandler is the default error handler implementation for the
// JWTMiddleware. If an error handler is not provided via the WithErrorHandler
// option this will be used.
func DefaultErrorHandler(w http.ResponseWriter, r *http.Request, err error) {
w.Header().Set("Content-Type", "application/json")
switch {
case errors.Is(err, ErrJWTMissing):
w.WriteHeader(http.StatusBadRequest)
_, _ = w.Write([]byte(`{"message":"JWT is missing."}`))
case errors.Is(err, ErrJWTInvalid):
w.WriteHeader(http.StatusUnauthorized)
_, _ = w.Write([]byte(`{"message":"JWT is invalid."}`))
default:
w.WriteHeader(http.StatusInternalServerError)
_, _ = w.Write([]byte(`{"message":"Something went wrong while checking the JWT."}`))
}
}
// invalidError handles wrapping a JWT validation error with
// the concrete error ErrJWTInvalid. We do not expose this
// publicly because the interface methods of Is and Unwrap
// should give the user all they need.
type invalidError struct {
details error
}
// Is allows the error to support equality to ErrJWTInvalid.
func (e invalidError) Is(target error) bool {
return target == ErrJWTInvalid
}
// Error returns a string representation of the error.
func (e invalidError) Error() string {
return fmt.Sprintf("%s: %s", ErrJWTInvalid, e.details)
}
// Unwrap allows the error to support equality to the
// underlying error and not just ErrJWTInvalid.
func (e invalidError) Unwrap() error {
return e.details
}