mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
aed7010508
* fix: improve scheduling * build pre-release * fix: locker * fix: user handler and print stack in case of panic in reducer * chore: remove sentry * fix: improve handler projection and implement tests * more tests * fix: race condition in tests * Update internal/eventstore/repository/sql/query.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * fix: implemented suggested changes * fix: lock statement Co-authored-by: Silvan <silvan.reusser@gmail.com>
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package view
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
"github.com/zitadel/zitadel/internal/view/repository"
|
|
)
|
|
|
|
const (
|
|
sequencesTable = "auth.current_sequences"
|
|
)
|
|
|
|
func (v *View) saveCurrentSequence(viewName string, event *models.Event) error {
|
|
return repository.SaveCurrentSequence(v.Db, sequencesTable, viewName, event.InstanceID, event.Sequence, event.CreationDate)
|
|
}
|
|
|
|
func (v *View) latestSequence(viewName, instanceID string) (*repository.CurrentSequence, error) {
|
|
return repository.LatestSequence(v.Db, sequencesTable, viewName, instanceID)
|
|
}
|
|
|
|
func (v *View) latestSequences(viewName string, instanceIDs ...string) ([]*repository.CurrentSequence, error) {
|
|
return repository.LatestSequences(v.Db, sequencesTable, viewName, instanceIDs...)
|
|
}
|
|
|
|
func (v *View) updateSpoolerRunSequence(viewName string) error {
|
|
currentSequences, err := repository.LatestSequences(v.Db, sequencesTable, viewName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, currentSequence := range currentSequences {
|
|
if currentSequence.ViewName == "" {
|
|
currentSequence.ViewName = viewName
|
|
}
|
|
currentSequence.LastSuccessfulSpoolerRun = time.Now()
|
|
}
|
|
return repository.UpdateCurrentSequences(v.Db, sequencesTable, currentSequences)
|
|
}
|