125 lines
3.1 KiB
Go
125 lines
3.1 KiB
Go
/*
|
|
*
|
|
* Copyright 2020 The KubeSphere 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 token
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/dgrijalva/jwt-go"
|
|
"kubesphere.io/kubesphere/pkg/api/auth"
|
|
"kubesphere.io/kubesphere/pkg/api/iam"
|
|
"kubesphere.io/kubesphere/pkg/server/errors"
|
|
"kubesphere.io/kubesphere/pkg/simple/client/cache"
|
|
"time"
|
|
)
|
|
|
|
const DefaultIssuerName = "kubesphere"
|
|
|
|
var (
|
|
errInvalidToken = errors.New("invalid token")
|
|
errTokenExpired = errors.New("expired token")
|
|
)
|
|
|
|
type Claims struct {
|
|
Username string `json:"username"`
|
|
UID string `json:"uid"`
|
|
// Currently, we are not using any field in jwt.StandardClaims
|
|
jwt.StandardClaims
|
|
}
|
|
|
|
type jwtTokenIssuer struct {
|
|
name string
|
|
options *auth.AuthenticationOptions
|
|
cache cache.Interface
|
|
keyFunc jwt.Keyfunc
|
|
}
|
|
|
|
func (s *jwtTokenIssuer) Verify(tokenString string) (User, *Claims, error) {
|
|
if len(tokenString) == 0 {
|
|
return nil, nil, errInvalidToken
|
|
}
|
|
_, err := s.cache.Get(tokenCacheKey(tokenString))
|
|
|
|
if err != nil {
|
|
if err == cache.ErrNoSuchKey {
|
|
return nil, nil, errTokenExpired
|
|
}
|
|
return nil, nil, err
|
|
}
|
|
|
|
clm := &Claims{}
|
|
|
|
_, err = jwt.ParseWithClaims(tokenString, clm, s.keyFunc)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return &iam.User{Name: clm.Username, UID: clm.UID}, clm, nil
|
|
}
|
|
|
|
func (s *jwtTokenIssuer) IssueTo(user User) (string, *Claims, error) {
|
|
clm := &Claims{
|
|
Username: user.GetName(),
|
|
UID: user.GetUID(),
|
|
StandardClaims: jwt.StandardClaims{
|
|
IssuedAt: time.Now().Unix(),
|
|
Issuer: s.name,
|
|
NotBefore: time.Now().Unix(),
|
|
},
|
|
}
|
|
|
|
if s.options.TokenExpiration > 0 {
|
|
clm.ExpiresAt = clm.IssuedAt + int64(s.options.TokenExpiration.Seconds())
|
|
}
|
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, clm)
|
|
|
|
tokenString, err := token.SignedString([]byte(s.options.JwtSecret))
|
|
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
s.cache.Set(tokenCacheKey(tokenString), tokenString, s.options.TokenExpiration)
|
|
|
|
return tokenString, clm, nil
|
|
}
|
|
|
|
func (s *jwtTokenIssuer) Revoke(token string) error {
|
|
return s.cache.Del(tokenCacheKey(token))
|
|
}
|
|
|
|
func NewJwtTokenIssuer(issuerName string, options *auth.AuthenticationOptions, cache cache.Interface) Issuer {
|
|
return &jwtTokenIssuer{
|
|
name: issuerName,
|
|
options: options,
|
|
cache: cache,
|
|
keyFunc: func(token *jwt.Token) (i interface{}, err error) {
|
|
if _, ok := token.Method.(*jwt.SigningMethodHMAC); ok {
|
|
return []byte(options.JwtSecret), nil
|
|
} else {
|
|
return nil, fmt.Errorf("expect token signed with HMAC but got %v", token.Header["alg"])
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
func tokenCacheKey(token string) string {
|
|
return fmt.Sprintf("kubesphere:tokens:%s", token)
|
|
}
|