mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
28 lines
572 B
Go
28 lines
572 B
Go
package jwt
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type JWTClaims map[string]any
|
|
|
|
type JWTService interface {
|
|
Verify(ctx context.Context, strToken string) (JWTClaims, error)
|
|
}
|
|
|
|
type FakeJWTService struct {
|
|
VerifyProvider func(context.Context, string) (JWTClaims, error)
|
|
}
|
|
|
|
func (s *FakeJWTService) Verify(ctx context.Context, token string) (JWTClaims, error) {
|
|
return s.VerifyProvider(ctx, token)
|
|
}
|
|
|
|
func NewFakeJWTService() *FakeJWTService {
|
|
return &FakeJWTService{
|
|
VerifyProvider: func(ctx context.Context, token string) (JWTClaims, error) {
|
|
return JWTClaims{}, nil
|
|
},
|
|
}
|
|
}
|