-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.go
62 lines (55 loc) · 1.64 KB
/
auth.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
package main
import (
"errors"
"github.com/dgrijalva/jwt-go"
"github.com/labstack/echo/v4"
"net/http"
)
// Custom Middleware to basically check if all the registered routes
// are authenticated i.e JWT Token verification & allow only if the token is valid
func AuthenticateRequestMiddleWare(next echo.HandlerFunc) echo.HandlerFunc {
Debugf("Verifying if the URL is authenticated")
return func(c echo.Context) error {
_, err := validateJwtToken(c)
if err != nil {
return c.Redirect(http.StatusTemporaryRedirect, "/login")
}
return next(c)
}
}
// Validate the JWT token
func validateJwtToken(c echo.Context) (*jwt.Token, error){
Debugf("Validating the JWT Token")
var tk *jwt.Token
// Get the JWT from session
t, err := obtainJWTToken(c)
if err != nil {
return tk, err
}
// Read the JWT
claims := jwt.MapClaims{}
tk, err = jwt.ParseWithClaims(t, claims, func(token *jwt.Token) (interface{}, error) {
return []byte(jwtKey), nil
})
if err != nil {
return tk, PrintErrorAndReturn("Redirecting to login page due to JWT parsing error: %v", err)
}
// If the token valid
if !tk.Valid {
return tk, PrintErrorAndReturn("%v", errors.New("jwt token found is not valid"))
}
return tk, nil
}
// Get the session for jwt token
func obtainJWTToken(c echo.Context) (string, error) {
Debug("Obtaining the session that keeps the JWT Token")
sess, err := getSession(c)
if err != nil {
return "", PrintErrorAndReturn("Unable to get session from the browser: %v", err)
}
t := sess.Values[jwtName]
if t == nil {
return "", PrintErrorAndReturn("%v", errors.New("redirecting to login page since the session was empty"))
}
return t.(string), nil
}