mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-05 23:48:58 +01:00
4594233f89
As discussed yesterday, a first draft of merging the keyserver and the userapi.
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package streams
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
"github.com/matrix-org/dendrite/syncapi/internal"
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
|
)
|
|
|
|
type DeviceListStreamProvider struct {
|
|
DefaultStreamProvider
|
|
rsAPI api.SyncRoomserverAPI
|
|
userAPI userapi.SyncKeyAPI
|
|
}
|
|
|
|
func (p *DeviceListStreamProvider) CompleteSync(
|
|
ctx context.Context,
|
|
snapshot storage.DatabaseTransaction,
|
|
req *types.SyncRequest,
|
|
) types.StreamPosition {
|
|
return p.LatestPosition(ctx)
|
|
}
|
|
|
|
func (p *DeviceListStreamProvider) IncrementalSync(
|
|
ctx context.Context,
|
|
snapshot storage.DatabaseTransaction,
|
|
req *types.SyncRequest,
|
|
from, to types.StreamPosition,
|
|
) types.StreamPosition {
|
|
var err error
|
|
to, _, err = internal.DeviceListCatchup(context.Background(), snapshot, p.userAPI, p.rsAPI, req.Device.UserID, req.Response, from, to)
|
|
if err != nil {
|
|
req.Log.WithError(err).Error("internal.DeviceListCatchup failed")
|
|
return from
|
|
}
|
|
err = internal.DeviceOTKCounts(req.Context, p.userAPI, req.Device.UserID, req.Device.ID, req.Response)
|
|
if err != nil {
|
|
req.Log.WithError(err).Error("internal.DeviceListCatchup failed")
|
|
return from
|
|
}
|
|
|
|
return to
|
|
}
|