-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.go
52 lines (47 loc) · 1.6 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
package middlewares
import (
"net/http"
"strings"
helper "github.com/Asrez/GoAPIBlog/api/helpers"
"github.com/Asrez/GoAPIBlog/config"
"github.com/Asrez/GoAPIBlog/constants"
"github.com/Asrez/GoAPIBlog/pkg/service_errors"
"github.com/Asrez/GoAPIBlog/services"
"github.com/gin-gonic/gin"
"github.com/golang-jwt/jwt"
)
func Authentication(cfg *config.Config) gin.HandlerFunc {
var tokenService = services.NewTokenService(cfg)
return func(c *gin.Context) {
var err error
claimMap := map[string]interface{}{}
auth := c.GetHeader(constants.AuthorizationHeaderKey)
token := strings.Split(auth, " ")
if auth == "" {
err = &service_errors.ServiceError{EndUserMessage: service_errors.TokenRequired}
} else {
claimMap, err = tokenService.GetClaims(token[1])
if err != nil {
switch err.(*jwt.ValidationError).Errors {
case jwt.ValidationErrorExpired:
err = &service_errors.ServiceError{EndUserMessage: service_errors.TokenExpired}
default:
err = &service_errors.ServiceError{EndUserMessage: service_errors.TokenInvalid}
}
}
}
if err != nil {
c.AbortWithStatusJSON(http.StatusUnauthorized, helper.GenerateBaseResponseWithError(
nil, false, helper.AuthError, err,
))
return
}
c.Set(constants.UserIdKey, claimMap[constants.UserIdKey])
c.Set(constants.FirstNameKey, claimMap[constants.FirstNameKey])
c.Set(constants.LastNameKey, claimMap[constants.LastNameKey])
c.Set(constants.UsernameKey, claimMap[constants.UsernameKey])
c.Set(constants.EmailKey, claimMap[constants.EmailKey])
c.Set(constants.ExpireTimeKey, claimMap[constants.ExpireTimeKey])
c.Next()
}
}