mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
f680dd934d
* chore: rename package errors to zerrors * rename package errors to gerrors * fix error related linting issues * fix zitadel error assertion * fix gosimple linting issues * fix deprecated linting issues * resolve gci linting issues * fix import structure --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
31 lines
906 B
Go
31 lines
906 B
Go
package view
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/repository/project"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
func ProjectByIDQuery(id, instanceID string, latestSequence uint64) (*eventstore.SearchQueryBuilder, error) {
|
|
if id == "" {
|
|
return nil, zerrors.ThrowPreconditionFailed(nil, "EVENT-dke74", "Errors.Project.ProjectIDMissing")
|
|
}
|
|
return eventstore.NewSearchQueryBuilder(eventstore.ColumnsEvent).
|
|
InstanceID(instanceID).
|
|
AwaitOpenTransactions().
|
|
SequenceGreater(latestSequence).
|
|
AddQuery().
|
|
AggregateTypes(project.AggregateType).
|
|
AggregateIDs(id).
|
|
EventTypes(
|
|
project.ProjectAddedType,
|
|
project.ProjectChangedType,
|
|
project.ProjectDeactivatedType,
|
|
project.ProjectReactivatedType,
|
|
project.ProjectRemovedType,
|
|
project.OIDCConfigAddedType,
|
|
project.ApplicationRemovedType,
|
|
).
|
|
Builder(), nil
|
|
}
|