mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
3616b6b028
Add functionality to configure the access token type on the service accounts to provide the oidc library with the necessary information to create the right type of access token.
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package domain
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type Token struct {
|
|
es_models.ObjectRoot
|
|
|
|
TokenID string
|
|
ApplicationID string
|
|
UserAgentID string
|
|
RefreshTokenID string
|
|
Audience []string
|
|
Expiration time.Time
|
|
Scopes []string
|
|
PreferredLanguage string
|
|
}
|
|
|
|
func AddAudScopeToAudience(ctx context.Context, audience, scopes []string) []string {
|
|
for _, scope := range scopes {
|
|
if !(strings.HasPrefix(scope, ProjectIDScope) && strings.HasSuffix(scope, AudSuffix)) {
|
|
continue
|
|
}
|
|
projectID := strings.TrimSuffix(strings.TrimPrefix(scope, ProjectIDScope), AudSuffix)
|
|
if projectID == ProjectIDScopeZITADEL {
|
|
projectID = authz.GetInstance(ctx).ProjectID()
|
|
}
|
|
audience = addProjectID(audience, projectID)
|
|
}
|
|
return audience
|
|
}
|
|
|
|
func addProjectID(audience []string, projectID string) []string {
|
|
for _, a := range audience {
|
|
if a == projectID {
|
|
return audience
|
|
}
|
|
}
|
|
return append(audience, projectID)
|
|
}
|