mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
3118a99c1e
* start sub * start implement subsciptions * start subscription * implementation for member done * admin done * fix: tests * extend handlers * prepary notification * no errors in adminapi * changed current sequence in all packages * ignore mocks * works * subscriptions as singleton * tests * refactor: rename function scope var * fix: process ALL previous sequences * fix: spooler and pubsub * handler check * fix: process events until all done * fix break on query err * fix: handler * fix: process sequence or return error * check aggregate id * fix: log only in error case * fix tests * fix: handlers * fix: spooler * fix: spooler * fix: tests * fix: continue Co-authored-by: Livio Amstutz <livio.a@gmail.com>
75 lines
2.5 KiB
Go
75 lines
2.5 KiB
Go
package view
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
proj_model "github.com/caos/zitadel/internal/project/model"
|
|
"github.com/caos/zitadel/internal/project/repository/view"
|
|
"github.com/caos/zitadel/internal/project/repository/view/model"
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
const (
|
|
applicationTable = "management.applications"
|
|
)
|
|
|
|
func (v *View) ApplicationByID(projectID, appID string) (*model.ApplicationView, error) {
|
|
return view.ApplicationByID(v.Db, applicationTable, projectID, appID)
|
|
}
|
|
|
|
func (v *View) ApplicationsByProjectID(projectID string) ([]*model.ApplicationView, error) {
|
|
return view.ApplicationsByProjectID(v.Db, applicationTable, projectID)
|
|
}
|
|
|
|
func (v *View) SearchApplications(request *proj_model.ApplicationSearchRequest) ([]*model.ApplicationView, uint64, error) {
|
|
return view.SearchApplications(v.Db, applicationTable, request)
|
|
}
|
|
|
|
func (v *View) PutApplication(app *model.ApplicationView, event *models.Event) error {
|
|
err := view.PutApplication(v.Db, applicationTable, app)
|
|
if err != nil && !errors.IsNotFound(err) {
|
|
return err
|
|
}
|
|
return v.ProcessedApplicationSequence(event)
|
|
}
|
|
|
|
func (v *View) PutApplications(apps []*model.ApplicationView, event *models.Event) error {
|
|
err := view.PutApplications(v.Db, applicationTable, apps...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.ProcessedApplicationSequence(event)
|
|
}
|
|
|
|
func (v *View) DeleteApplication(appID string, event *models.Event) error {
|
|
err := view.DeleteApplication(v.Db, applicationTable, appID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return v.ProcessedApplicationSequence(event)
|
|
}
|
|
|
|
func (v *View) DeleteApplicationsByProjectID(projectID string) error {
|
|
return view.DeleteApplicationsByProjectID(v.Db, applicationTable, projectID)
|
|
}
|
|
|
|
func (v *View) GetLatestApplicationSequence(aggregateType string) (*repository.CurrentSequence, error) {
|
|
return v.latestSequence(applicationTable, aggregateType)
|
|
}
|
|
|
|
func (v *View) ProcessedApplicationSequence(event *models.Event) error {
|
|
return v.saveCurrentSequence(applicationTable, event)
|
|
}
|
|
|
|
func (v *View) UpdateApplicationSpoolerRunTimestamp() error {
|
|
return v.updateSpoolerRunSequence(applicationTable)
|
|
}
|
|
|
|
func (v *View) GetLatestApplicationFailedEvent(sequence uint64) (*repository.FailedEvent, error) {
|
|
return v.latestFailedEvent(applicationTable, sequence)
|
|
}
|
|
|
|
func (v *View) ProcessedApplicationFailedEvent(failedEvent *repository.FailedEvent) error {
|
|
return v.saveFailedEvent(failedEvent)
|
|
}
|