mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 17:37:32 +00:00
chore: move the go code into a subfolder
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user