forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
claims_id_token.go
65 lines (53 loc) · 1.42 KB
/
claims_id_token.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
package jwt
import (
"time"
"github.com/dgrijalva/jwt-go"
)
// IDTokenClaims represent the claims used in open id connect requests
type IDTokenClaims struct {
Issuer string
Subject string
Audience string
Nonce string
ExpiresAt time.Time
IssuedAt time.Time
AuthTime time.Time
AccessTokenHash []byte
CodeHash []byte
Extra map[string]interface{}
}
// ToMap will transform the headers to a map structure
func (c *IDTokenClaims) ToMap() map[string]interface{} {
var ret = Copy(c.Extra)
ret["sub"] = c.Subject
ret["iss"] = c.Issuer
ret["aud"] = c.Audience
ret["nonce"] = c.Nonce
if len(c.AccessTokenHash) > 0 {
ret["at_hash"] = c.AccessTokenHash
}
if len(c.CodeHash) > 0 {
ret["c_hash"] = c.CodeHash
}
if !c.AuthTime.IsZero() {
ret["auth_time"] = c.AuthTime.Unix()
}
ret["iat"] = float64(c.IssuedAt.Unix())
ret["exp"] = float64(c.ExpiresAt.Unix())
return ret
}
// Add will add a key-value pair to the extra field
func (c *IDTokenClaims) Add(key string, value interface{}) {
if c.Extra == nil {
c.Extra = make(map[string]interface{})
}
c.Extra[key] = value
}
// Get will get a value from the extra field based on a given key
func (c *IDTokenClaims) Get(key string) interface{} {
return c.ToMap()[key]
}
// ToMapClaims will return a jwt-go MapClaims representaion
func (c IDTokenClaims) ToMapClaims() jwt.MapClaims {
return c.ToMap()
}