mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
db7d9cba8a
* go mod tidy * Break complement to check it fails CI * Remove partitioned stream positions This was used by the device list stream position. The device list position now corresponds to the `Offset`, and the partition is always 0, in prep for removing reliance on Kafka topics for device list changes. * Linting * Migrate old style tokens to new style because element-web doesn't soft-logoout on 4xx errors on /sync
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package streams
|
|
|
|
import (
|
|
"context"
|
|
|
|
keyapi "github.com/matrix-org/dendrite/keyserver/api"
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
"github.com/matrix-org/dendrite/syncapi/internal"
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
|
)
|
|
|
|
type DeviceListStreamProvider struct {
|
|
StreamProvider
|
|
rsAPI api.RoomserverInternalAPI
|
|
keyAPI keyapi.KeyInternalAPI
|
|
}
|
|
|
|
func (p *DeviceListStreamProvider) CompleteSync(
|
|
ctx context.Context,
|
|
req *types.SyncRequest,
|
|
) types.StreamPosition {
|
|
return p.LatestPosition(ctx)
|
|
}
|
|
|
|
func (p *DeviceListStreamProvider) IncrementalSync(
|
|
ctx context.Context,
|
|
req *types.SyncRequest,
|
|
from, to types.StreamPosition,
|
|
) types.StreamPosition {
|
|
var err error
|
|
to, _, err = internal.DeviceListCatchup(context.Background(), p.keyAPI, 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.keyAPI, req.Device.UserID, req.Device.ID, req.Response)
|
|
if err != nil {
|
|
req.Log.WithError(err).Error("internal.DeviceListCatchup failed")
|
|
return from
|
|
}
|
|
|
|
return to
|
|
}
|