mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:27:31 +00:00

# Which Problems Are Solved This PR *partially* addresses #9450 . Specifically, it implements the resource based API for the apps. APIs for app keys ARE not part of this PR. # How the Problems Are Solved - `CreateApplication`, `PatchApplication` (update) and `RegenerateClientSecret` endpoints are now unique for all app types: API, SAML and OIDC apps. - All new endpoints have integration tests - All new endpoints are using permission checks V2 # Additional Changes - The `ListApplications` endpoint allows to do sorting (see protobuf for details) and filtering by app type (see protobuf). - SAML and OIDC update endpoint can now receive requests for partial updates # Additional Context Partially addresses #9450
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package view
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
"github.com/zitadel/zitadel/internal/telemetry/tracing"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
func (v *View) ApplicationByOIDCClientID(ctx context.Context, clientID string) (*query.App, error) {
|
|
return v.Query.AppByOIDCClientID(ctx, clientID)
|
|
}
|
|
|
|
func (v *View) ApplicationByProjecIDAndAppName(ctx context.Context, projectID, appName string) (_ *query.App, err error) {
|
|
ctx, span := tracing.NewSpan(ctx)
|
|
defer func() { span.EndWithError(err) }()
|
|
|
|
nameQuery, err := query.NewAppNameSearchQuery(query.TextEquals, appName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
projectQuery, err := query.NewAppProjectIDSearchQuery(projectID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
queries := &query.AppSearchQueries{
|
|
Queries: []query.SearchQuery{
|
|
nameQuery,
|
|
projectQuery,
|
|
},
|
|
}
|
|
|
|
apps, err := v.Query.SearchApps(ctx, queries, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(apps.Apps) != 1 {
|
|
return nil, zerrors.ThrowNotFound(nil, "VIEW-svLQq", "app not found")
|
|
}
|
|
|
|
return apps.Apps[0], nil
|
|
}
|