2021-01-08 17:59:06 +01:00
|
|
|
package streams
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/internal"
|
2022-09-30 13:48:10 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2021-01-08 17:59:06 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
2023-02-20 14:58:03 +01:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2021-01-08 17:59:06 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type DeviceListStreamProvider struct {
|
2022-09-30 13:48:10 +02:00
|
|
|
DefaultStreamProvider
|
2023-02-20 14:58:03 +01:00
|
|
|
rsAPI api.SyncRoomserverAPI
|
|
|
|
userAPI userapi.SyncKeyAPI
|
2021-01-08 17:59:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *DeviceListStreamProvider) CompleteSync(
|
|
|
|
ctx context.Context,
|
2022-09-30 13:48:10 +02:00
|
|
|
snapshot storage.DatabaseTransaction,
|
2021-01-08 17:59:06 +01:00
|
|
|
req *types.SyncRequest,
|
2022-01-20 16:26:45 +01:00
|
|
|
) types.StreamPosition {
|
2021-01-29 17:32:54 +01:00
|
|
|
return p.LatestPosition(ctx)
|
2021-01-08 17:59:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *DeviceListStreamProvider) IncrementalSync(
|
|
|
|
ctx context.Context,
|
2022-09-30 13:48:10 +02:00
|
|
|
snapshot storage.DatabaseTransaction,
|
2021-01-08 17:59:06 +01:00
|
|
|
req *types.SyncRequest,
|
2022-01-20 16:26:45 +01:00
|
|
|
from, to types.StreamPosition,
|
|
|
|
) types.StreamPosition {
|
2021-01-08 17:59:06 +01:00
|
|
|
var err error
|
2023-02-20 14:58:03 +01:00
|
|
|
to, _, err = internal.DeviceListCatchup(context.Background(), snapshot, p.userAPI, p.rsAPI, req.Device.UserID, req.Response, from, to)
|
2021-01-08 17:59:06 +01:00
|
|
|
if err != nil {
|
|
|
|
req.Log.WithError(err).Error("internal.DeviceListCatchup failed")
|
|
|
|
return from
|
|
|
|
}
|
2023-02-20 14:58:03 +01:00
|
|
|
err = internal.DeviceOTKCounts(req.Context, p.userAPI, req.Device.UserID, req.Device.ID, req.Response)
|
2021-01-08 17:59:06 +01:00
|
|
|
if err != nil {
|
|
|
|
req.Log.WithError(err).Error("internal.DeviceListCatchup failed")
|
|
|
|
return from
|
|
|
|
}
|
|
|
|
|
|
|
|
return to
|
|
|
|
}
|