diff options
| author | Sebastian Kurfuerst <sebastian.kurfuerst@sandstorm.de> | 2021-12-29 12:40:41 +0100 |
|---|---|---|
| committer | Sebastian Kurfuerst <sebastian.kurfuerst@sandstorm.de> | 2021-12-29 12:40:41 +0100 |
| commit | fcc09cef6fa9f7baa87675b1513425c233dbfffe (patch) | |
| tree | bb14136248af827c8d5739c75360cca322826799 /weed/security/jwt.go | |
| parent | d156d410efb8166ded4a0c6b206fd7b071b61c8b (diff) | |
| download | seaweedfs-fcc09cef6fa9f7baa87675b1513425c233dbfffe.tar.xz seaweedfs-fcc09cef6fa9f7baa87675b1513425c233dbfffe.zip | |
Refactor: pass in claim type into security.DecodeJwt
Diffstat (limited to 'weed/security/jwt.go')
| -rw-r--r-- | weed/security/jwt.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/security/jwt.go b/weed/security/jwt.go index f025af519..1976c8ffe 100644 --- a/weed/security/jwt.go +++ b/weed/security/jwt.go @@ -57,9 +57,9 @@ func GetJwt(r *http.Request) EncodedJwt { return EncodedJwt(tokenStr) } -func DecodeJwt(signingKey SigningKey, tokenString EncodedJwt) (token *jwt.Token, err error) { +func DecodeJwt(signingKey SigningKey, tokenString EncodedJwt, claims jwt.Claims) (token *jwt.Token, err error) { // check exp, nbf - return jwt.ParseWithClaims(string(tokenString), &SeaweedFileIdClaims{}, func(token *jwt.Token) (interface{}, error) { + return jwt.ParseWithClaims(string(tokenString), claims, func(token *jwt.Token) (interface{}, error) { if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok { return nil, fmt.Errorf("unknown token method") } |
