2023-11-21 12:11:38 +00:00
|
|
|
package query
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
_ "embed"
|
2023-12-05 17:01:03 +00:00
|
|
|
"errors"
|
2023-11-21 12:11:38 +00:00
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/handler/v2"
|
|
|
|
"github.com/zitadel/zitadel/internal/query/projection"
|
|
|
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
2023-12-08 14:30:55 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
2023-11-21 12:11:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// oidcUserInfoTriggerHandlers slice can only be created after zitadel
|
|
|
|
// is fully initialized, otherwise the handlers are nil.
|
|
|
|
// OnceValue takes care of creating the slice on the first request
|
|
|
|
// and than will always return the same slice on subsequent requests.
|
|
|
|
var oidcUserInfoTriggerHandlers = sync.OnceValue(func() []*handler.Handler {
|
|
|
|
return []*handler.Handler{
|
|
|
|
projection.UserProjection,
|
|
|
|
projection.UserMetadataProjection,
|
|
|
|
projection.UserGrantProjection,
|
|
|
|
projection.OrgProjection,
|
|
|
|
projection.ProjectProjection,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2024-04-09 13:15:35 +00:00
|
|
|
// TriggerOIDCUserInfoProjections triggers all projections
|
|
|
|
// relevant to userinfo queries concurrently.
|
2023-11-21 12:11:38 +00:00
|
|
|
func TriggerOIDCUserInfoProjections(ctx context.Context) {
|
|
|
|
triggerBatch(ctx, oidcUserInfoTriggerHandlers()...)
|
|
|
|
}
|
|
|
|
|
2024-04-09 13:15:35 +00:00
|
|
|
//go:embed userinfo_by_id.sql
|
2023-11-21 12:11:38 +00:00
|
|
|
var oidcUserInfoQuery string
|
|
|
|
|
|
|
|
func (q *Queries) GetOIDCUserInfo(ctx context.Context, userID string, roleAudience []string) (_ *OIDCUserInfo, err error) {
|
|
|
|
ctx, span := tracing.NewSpan(ctx)
|
|
|
|
defer func() { span.EndWithError(err) }()
|
|
|
|
|
2023-12-05 17:01:03 +00:00
|
|
|
userInfo, err := database.QueryJSONObject[OIDCUserInfo](ctx, q.client, oidcUserInfoQuery,
|
2023-11-21 12:11:38 +00:00
|
|
|
userID, authz.GetInstance(ctx).InstanceID(), database.TextArray[string](roleAudience),
|
|
|
|
)
|
2023-12-05 17:01:03 +00:00
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
return nil, zerrors.ThrowNotFound(err, "QUERY-Eey2a", "Errors.User.NotFound")
|
2023-11-21 12:11:38 +00:00
|
|
|
}
|
2023-12-05 17:01:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, zerrors.ThrowInternal(err, "QUERY-Oath6", "Errors.Internal")
|
2023-11-21 12:11:38 +00:00
|
|
|
}
|
|
|
|
if userInfo.User == nil {
|
2023-12-05 17:01:03 +00:00
|
|
|
return nil, zerrors.ThrowNotFound(nil, "QUERY-ahs4S", "Errors.User.NotFound")
|
2023-11-21 12:11:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return userInfo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type OIDCUserInfo struct {
|
|
|
|
User *User `json:"user,omitempty"`
|
|
|
|
Metadata []UserMetadata `json:"metadata,omitempty"`
|
|
|
|
Org *UserInfoOrg `json:"org,omitempty"`
|
|
|
|
UserGrants []UserGrant `json:"user_grants,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type UserInfoOrg struct {
|
|
|
|
ID string `json:"id,omitempty"`
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
PrimaryDomain string `json:"primary_domain,omitempty"`
|
|
|
|
}
|
2024-04-09 13:15:35 +00:00
|
|
|
|
|
|
|
//go:embed userinfo_client_by_id.sql
|
|
|
|
var oidcUserinfoClientQuery string
|
|
|
|
|
|
|
|
func (q *Queries) GetOIDCUserinfoClientByID(ctx context.Context, clientID string) (projectID string, projectRoleAssertion bool, err error) {
|
|
|
|
ctx, span := tracing.NewSpan(ctx)
|
|
|
|
defer func() { span.EndWithError(err) }()
|
|
|
|
|
|
|
|
scan := func(row *sql.Row) error {
|
|
|
|
err := row.Scan(&projectID, &projectRoleAssertion)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = q.client.QueryRowContext(ctx, scan, oidcUserinfoClientQuery, authz.GetInstance(ctx).InstanceID(), clientID)
|
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
return "", false, zerrors.ThrowNotFound(err, "QUERY-beeW8", "Errors.App.NotFound")
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return "", false, zerrors.ThrowInternal(err, "QUERY-Ais4r", "Errors.Internal")
|
|
|
|
}
|
|
|
|
return projectID, projectRoleAssertion, nil
|
|
|
|
}
|