mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
02d2032790
* feat: add ZITADEL project id scope * update documentation * documentation * fix scopes * change to lowercase
38 lines
910 B
Go
38 lines
910 B
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 = append(audience, projectID)
|
|
}
|
|
return audience
|
|
}
|