forked from firebase/firebase-admin-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jwt.go
135 lines (118 loc) · 3.05 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
// Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package auth
import (
"bytes"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"strings"
)
type jwtHeader struct {
Algorithm string `json:"alg"`
Type string `json:"typ"`
KeyID string `json:"kid,omitempty"`
}
type jwtPayload interface {
decode(s string) error
}
type customToken struct {
Iss string `json:"iss"`
Aud string `json:"aud"`
Exp int64 `json:"exp"`
Iat int64 `json:"iat"`
Sub string `json:"sub,omitempty"`
UID string `json:"uid,omitempty"`
Claims map[string]interface{} `json:"claims,omitempty"`
}
func (p *customToken) decode(s string) error {
return decode(s, p)
}
func (t *Token) decode(s string) error {
claims := make(map[string]interface{})
if err := decode(s, &claims); err != nil {
return err
}
if err := decode(s, t); err != nil {
return err
}
for _, r := range []string{"iss", "aud", "exp", "iat", "sub", "uid"} {
delete(claims, r)
}
t.Claims = claims
return nil
}
func defaultHeader() jwtHeader {
return jwtHeader{Algorithm: "RS256", Type: "JWT"}
}
func encode(i interface{}) (string, error) {
b, err := json.Marshal(i)
if err != nil {
return "", err
}
return base64.RawURLEncoding.EncodeToString(b), nil
}
func decode(s string, i interface{}) error {
decoded, err := base64.RawURLEncoding.DecodeString(s)
if err != nil {
return err
}
return json.NewDecoder(bytes.NewBuffer(decoded)).Decode(i)
}
func encodeToken(s signer, h jwtHeader, p jwtPayload) (string, error) {
header, err := encode(h)
if err != nil {
return "", err
}
payload, err := encode(p)
if err != nil {
return "", err
}
ss := fmt.Sprintf("%s.%s", header, payload)
sig, err := s.Sign([]byte(ss))
if err != nil {
return "", err
}
return fmt.Sprintf("%s.%s", ss, base64.RawURLEncoding.EncodeToString(sig)), nil
}
func decodeToken(token string, ks keySource, h *jwtHeader, p jwtPayload) error {
s := strings.Split(token, ".")
if len(s) != 3 {
return errors.New("incorrect number of segments")
}
if err := decode(s[0], h); err != nil {
return err
}
if err := p.decode(s[1]); err != nil {
return err
}
keys, err := ks.Keys()
if err != nil {
return err
}
verified := false
for _, k := range keys {
if h.KeyID == "" || h.KeyID == k.Kid {
if verifySignature(s, k) == nil {
verified = true
break
}
}
}
if !verified {
return errors.New("failed to verify token signature")
}
return nil
}