mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 21:08:00 +00:00
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
|
package oidc
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
|
||
|
"github.com/zitadel/oidc/v3/pkg/oidc"
|
||
|
"github.com/zitadel/oidc/v3/pkg/op"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/domain"
|
||
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
||
|
"github.com/zitadel/zitadel/internal/zerrors"
|
||
|
)
|
||
|
|
||
|
func (s *Server) ClientCredentialsExchange(ctx context.Context, r *op.ClientRequest[oidc.ClientCredentialsRequest]) (_ *op.Response, err error) {
|
||
|
ctx, span := tracing.NewSpan(ctx)
|
||
|
defer func() {
|
||
|
span.EndWithError(err)
|
||
|
err = oidcError(err)
|
||
|
}()
|
||
|
client, ok := r.Client.(*clientCredentialsClient)
|
||
|
if !ok {
|
||
|
return nil, zerrors.ThrowInternal(nil, "OIDC-ga0EP", "Error.Internal")
|
||
|
}
|
||
|
scope, err := op.ValidateAuthReqScopes(client, r.Data.Scope)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
scope, err = s.checkOrgScopes(ctx, client.user, scope)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
session, err := s.command.CreateOIDCSession(ctx,
|
||
|
client.user.ID,
|
||
|
client.user.ResourceOwner,
|
||
|
r.Data.ClientID,
|
||
|
scope,
|
||
|
domain.AddAudScopeToAudience(ctx, nil, r.Data.Scope),
|
||
|
[]domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
||
|
time.Now(),
|
||
|
"",
|
||
|
nil,
|
||
|
nil,
|
||
|
domain.TokenReasonClientCredentials,
|
||
|
nil,
|
||
|
false,
|
||
|
)
|
||
|
|
||
|
return response(s.accessTokenResponseFromSession(ctx, client, session, "", "", false))
|
||
|
}
|