-
Notifications
You must be signed in to change notification settings - Fork 3
/
claims.go
52 lines (45 loc) · 2.08 KB
/
claims.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
// Copyright 2022 Monoskope Authors
//
// 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 jwt
import (
"time"
"gopkg.in/square/go-jose.v2/jwt"
)
// https://www.iana.org/assignments/jwt/jwt.xhtml
type StandardClaims struct {
Name string `json:"name,omitempty"` // User’s display name.
Email string `json:"email,omitempty"` // The email of the user.
EmailVerified bool `json:"email_verified,omitempty"` // If the upstream provider has verified the email.
Groups []string `json:"groups,omitempty"` // A list of strings representing the groups a user is a member of.
FederatedClaims map[string]string `json:"federated_claims,omitempty"` // Claims from any upstream IDP.
}
type ClusterClaim struct {
ClusterId string `json:"cluster_id,omitempty"` // Id of the cluster.
ClusterName string `json:"cluster_name,omitempty"` // Name of the cluster.
ClusterUserName string `json:"cluster_username,omitempty"` // Name of the user in the cluster.
ClusterRole string `json:"cluster_role,omitempty"` // Role the user has in the cluster.
}
type AuthToken struct {
*jwt.Claims
*StandardClaims
*ClusterClaim
Scope string `json:"scope"` // Space-separated list of scopes associated with the token.
IsAPIToken bool `json:"is_api_token"` // Bool to indicate if the token is an API token.
}
func (t *AuthToken) Validate(issuer string) error {
return t.ValidateWithLeeway(jwt.Expected{
Issuer: issuer,
Time: time.Now().UTC(),
}, jwt.DefaultLeeway)
}