2021-01-08 16:59:06 +00:00
|
|
|
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 {
|
|
|
|
PartitionedStreamProvider
|
|
|
|
rsAPI api.RoomserverInternalAPI
|
|
|
|
keyAPI keyapi.KeyInternalAPI
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *DeviceListStreamProvider) CompleteSync(
|
|
|
|
ctx context.Context,
|
|
|
|
req *types.SyncRequest,
|
|
|
|
) types.LogPosition {
|
2021-01-29 16:32:54 +00:00
|
|
|
return p.LatestPosition(ctx)
|
2021-01-08 16:59:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *DeviceListStreamProvider) IncrementalSync(
|
|
|
|
ctx context.Context,
|
|
|
|
req *types.SyncRequest,
|
|
|
|
from, to types.LogPosition,
|
|
|
|
) types.LogPosition {
|
|
|
|
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
|
|
|
|
}
|