-
Notifications
You must be signed in to change notification settings - Fork 0
/
jwt.go
200 lines (183 loc) · 4.85 KB
/
jwt.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// MIT License
// Copyright (c) 2020 Tree Xie
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package jwt
import (
"errors"
"fmt"
"net/http"
"time"
"github.com/golang-jwt/jwt"
"github.com/vicanso/elton"
"github.com/vicanso/hes"
)
type (
// Config jwt config
Config struct {
Key string
// CookieName cookie for token
CookieName string
Skipper elton.Skipper
// Passthrough passthrough when token not found
Passthrough bool
TTLToken *TTLToken
// Cookie cookie template
Cookie http.Cookie
}
// TTLToken normal token
TTLToken struct {
TTL time.Duration
Secret []byte
}
)
var (
// ErrTokenNotFound err token not found
ErrTokenNotFound = &hes.Error{
Message: "Token not found",
StatusCode: http.StatusUnauthorized,
}
// ErrTokenIsInvalid err token is invalid
ErrTokenIsInvalid = &hes.Error{
Message: "Token is invalid",
StatusCode: http.StatusUnauthorized,
}
)
const (
// DefaultKey default key for data
DefaultKey = "_jwtData"
)
const HeaderJWTKey = "X-JWT"
// Encode ttl token encode
func (t *TTLToken) Encode(data string) (tokenString string, err error) {
m := jwt.MapClaims{
"_": data,
"exp": time.Now().Unix() + int64(t.TTL.Seconds()),
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, m)
return token.SignedString(t.Secret)
}
// Decode ttl token decode
func (t *TTLToken) Decode(tokenString string) (data string, err error) {
token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) {
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok {
err := hes.New(fmt.Sprintf("Unexpected signing method: %v", token.Header["alg"]))
return nil, err
}
return t.Secret, nil
})
if err != nil {
return
}
if claims, ok := token.Claims.(jwt.MapClaims); ok && token.Valid {
data = claims["_"].(string)
} else {
err = ErrTokenIsInvalid
}
return
}
// AddToCookie encode data and add to cookie
func (t *TTLToken) addToCookie(c *elton.Context, cookie *http.Cookie, data string) (err error) {
token, err := t.Encode(data)
if err != nil {
return
}
cookie.Value = token
c.AddCookie(cookie)
return
}
func (t *TTLToken) addToHeader(c *elton.Context, data string) (err error) {
token, err := t.Encode(data)
if err != nil {
return
}
c.SetHeader(HeaderJWTKey, token)
return
}
// NewJWT new jwt middleware
func NewJWT(config Config) elton.Handler {
if config.TTLToken == nil {
panic(errors.New("ttl token can not be nil"))
}
skipper := config.Skipper
if skipper == nil {
skipper = elton.DefaultSkipper
}
key := config.Key
if key == "" {
key = DefaultKey
}
ttlToken := config.TTLToken
templateCookie := config.Cookie
usedCookie := false
// 如果未设置 cookie 模板
if templateCookie.Name == "" {
templateCookie.Name = config.CookieName
templateCookie.Path = "/"
}
usedCookie = templateCookie.Name != ""
// 强制要求只能 http only
templateCookie.HttpOnly = true
return func(c *elton.Context) (err error) {
if skipper(c) {
return c.Next()
}
var token string
if usedCookie {
token, err = getTokenFromCookie(c, templateCookie.Name)
} else {
token, err = getTokenFromHeader(c)
}
if err != nil {
return
}
if token == "" && !config.Passthrough {
err = ErrTokenNotFound
return
}
originalData := ""
if token != "" {
data, err := ttlToken.Decode(token)
// 如果是pass through,解码token解析时,继续后续流程
if err != nil && !config.Passthrough {
return err
}
originalData = data
c.Set(key, data)
}
err = c.Next()
if err != nil {
return
}
currentData := c.GetString(key)
// 如果无变化
if currentData == originalData {
return
}
// 添加数据至cookie中
if usedCookie {
cookie := templateCookie
err = ttlToken.addToCookie(c, &cookie, currentData)
} else {
// 添加至header中
err = ttlToken.addToHeader(c, currentData)
}
if err != nil {
return
}
return
}
}