mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
IDForwarding: Add service and a local signer (#75423)
* IDForwarding: Add service for handling id token and create a local signer --------- Co-authored-by: Ieva <ieva.vasiljeva@grafana.com>
This commit is contained in:
21
pkg/services/auth/id.go
Normal file
21
pkg/services/auth/id.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package auth
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/go-jose/go-jose/v3/jwt"
|
||||
"github.com/grafana/grafana/pkg/services/auth/identity"
|
||||
)
|
||||
|
||||
type IDService interface {
|
||||
// SignIdentity signs a id token for provided identity that can be forwarded to plugins and external services
|
||||
SignIdentity(ctx context.Context, identity identity.Requester) (string, error)
|
||||
}
|
||||
|
||||
type IDSigner interface {
|
||||
SignIDToken(ctx context.Context, claims *IDClaims) (string, error)
|
||||
}
|
||||
|
||||
type IDClaims struct {
|
||||
jwt.Claims
|
||||
}
|
||||
Reference in New Issue
Block a user