2024-05-16 05:07:56 +00:00
|
|
|
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,
|
2024-05-23 05:35:10 +00:00
|
|
|
"",
|
2024-05-16 05:07:56 +00:00
|
|
|
scope,
|
|
|
|
domain.AddAudScopeToAudience(ctx, nil, r.Data.Scope),
|
|
|
|
[]domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
|
|
|
time.Now(),
|
|
|
|
"",
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
domain.TokenReasonClientCredentials,
|
|
|
|
nil,
|
|
|
|
false,
|
|
|
|
)
|
2024-06-12 06:42:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-05-16 05:07:56 +00:00
|
|
|
|
2024-05-31 10:10:18 +00:00
|
|
|
return response(s.accessTokenResponseFromSession(ctx, client, session, "", "", false, true, false, false))
|
2024-05-16 05:07:56 +00:00
|
|
|
}
|