mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 11:12:21 +00:00
97 lines
2.5 KiB
Go
97 lines
2.5 KiB
Go
package mirror
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/v2/eventstore"
|
|
"github.com/zitadel/zitadel/internal/v2/projection"
|
|
"github.com/zitadel/zitadel/internal/v2/readmodel"
|
|
"github.com/zitadel/zitadel/internal/v2/system"
|
|
mirror_event "github.com/zitadel/zitadel/internal/v2/system/mirror"
|
|
)
|
|
|
|
func queryLastSuccessfulMigration(ctx context.Context, destinationES *eventstore.EventStore, source string) (*readmodel.LastSuccessfulMirror, error) {
|
|
lastSuccess := readmodel.NewLastSuccessfulMirror(source)
|
|
if shouldIgnorePrevious {
|
|
return lastSuccess, nil
|
|
}
|
|
_, err := destinationES.Query(
|
|
ctx,
|
|
eventstore.NewQuery(
|
|
system.AggregateInstance,
|
|
lastSuccess,
|
|
eventstore.SetFilters(lastSuccess.Filter()),
|
|
),
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return lastSuccess, nil
|
|
}
|
|
|
|
func writeMigrationStart(ctx context.Context, sourceES *eventstore.EventStore, id string, destination string) (_ float64, err error) {
|
|
var cmd *eventstore.Command
|
|
if len(instanceIDs) > 0 {
|
|
cmd, err = mirror_event.NewStartedInstancesCommand(destination, instanceIDs)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
} else {
|
|
cmd = mirror_event.NewStartedSystemCommand(destination)
|
|
}
|
|
|
|
var position projection.HighestPosition
|
|
|
|
err = sourceES.Push(
|
|
ctx,
|
|
eventstore.NewPushIntent(
|
|
system.AggregateInstance,
|
|
eventstore.AppendAggregate(
|
|
system.AggregateOwner,
|
|
system.AggregateType,
|
|
id,
|
|
eventstore.CurrentSequenceMatches(0),
|
|
eventstore.AppendCommands(cmd),
|
|
),
|
|
eventstore.PushReducer(&position),
|
|
),
|
|
)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return position.Position, nil
|
|
}
|
|
|
|
func writeMigrationSucceeded(ctx context.Context, destinationES *eventstore.EventStore, id, source string, position float64) error {
|
|
return destinationES.Push(
|
|
ctx,
|
|
eventstore.NewPushIntent(
|
|
system.AggregateInstance,
|
|
eventstore.AppendAggregate(
|
|
system.AggregateOwner,
|
|
system.AggregateType,
|
|
id,
|
|
eventstore.CurrentSequenceMatches(0),
|
|
eventstore.AppendCommands(mirror_event.NewSucceededCommand(source, position)),
|
|
),
|
|
),
|
|
)
|
|
}
|
|
|
|
func writeMigrationFailed(ctx context.Context, destinationES *eventstore.EventStore, id, source string, err error) error {
|
|
return destinationES.Push(
|
|
ctx,
|
|
eventstore.NewPushIntent(
|
|
system.AggregateInstance,
|
|
eventstore.AppendAggregate(
|
|
system.AggregateOwner,
|
|
system.AggregateType,
|
|
id,
|
|
eventstore.CurrentSequenceMatches(0),
|
|
eventstore.AppendCommands(mirror_event.NewFailedCommand(source, err)),
|
|
),
|
|
),
|
|
)
|
|
}
|