2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2021-04-20 21:09:46 +05:30
|
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
import {ObservableValue} from "../observable/ObservableValue.js";
|
|
|
|
import {createEnum} from "../utils/enum.js";
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2019-02-11 01:55:29 +05:30
|
|
|
const INCREMENTAL_TIMEOUT = 30000;
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2020-04-19 23:22:26 +05:30
|
|
|
export const SyncStatus = createEnum(
|
|
|
|
"InitialSync",
|
|
|
|
"CatchupSync",
|
|
|
|
"Syncing",
|
|
|
|
"Stopped"
|
|
|
|
);
|
|
|
|
|
2020-08-17 17:43:23 +05:30
|
|
|
function timelineIsEmpty(roomResponse) {
|
|
|
|
try {
|
2020-08-19 15:06:43 +05:30
|
|
|
const events = roomResponse?.timeline?.events;
|
|
|
|
return Array.isArray(events) && events.length === 0;
|
2020-08-17 17:43:23 +05:30
|
|
|
} catch (err) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 15:41:43 +05:30
|
|
|
/**
|
|
|
|
* Sync steps in js-pseudocode:
|
|
|
|
* ```js
|
2020-09-23 17:56:14 +05:30
|
|
|
* // can only read some stores
|
2021-03-01 19:34:45 +05:30
|
|
|
* const preparation = await room.prepareSync(roomResponse, membership, newRoomKeys, prepareTxn);
|
2020-09-23 17:56:14 +05:30
|
|
|
* // can do async work that is not related to storage (such as decryption)
|
|
|
|
* await room.afterPrepareSync(preparation);
|
2020-09-10 15:41:43 +05:30
|
|
|
* // writes and calculates changes
|
2020-09-23 17:56:14 +05:30
|
|
|
* const changes = await room.writeSync(roomResponse, isInitialSync, preparation, syncTxn);
|
2020-09-10 15:41:43 +05:30
|
|
|
* // applies and emits changes once syncTxn is committed
|
2020-09-23 21:36:16 +05:30
|
|
|
* room.afterSync(changes);
|
2020-09-10 15:41:43 +05:30
|
|
|
* if (room.needsAfterSyncCompleted(changes)) {
|
|
|
|
* // can do network requests
|
|
|
|
* await room.afterSyncCompleted(changes);
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*/
|
2020-04-20 23:17:45 +05:30
|
|
|
export class Sync {
|
2021-02-12 23:26:26 +05:30
|
|
|
constructor({hsApi, session, storage, logger}) {
|
2019-05-12 23:56:46 +05:30
|
|
|
this._hsApi = hsApi;
|
2021-02-12 23:26:26 +05:30
|
|
|
this._logger = logger;
|
2019-05-12 23:56:46 +05:30
|
|
|
this._session = session;
|
|
|
|
this._storage = storage;
|
|
|
|
this._currentRequest = null;
|
2020-04-19 23:22:26 +05:30
|
|
|
this._status = new ObservableValue(SyncStatus.Stopped);
|
|
|
|
this._error = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
get status() {
|
|
|
|
return this._status;
|
2019-05-12 23:56:46 +05:30
|
|
|
}
|
2019-06-16 14:24:16 +05:30
|
|
|
|
2020-04-19 23:22:26 +05:30
|
|
|
/** the error that made the sync stop */
|
|
|
|
get error() {
|
|
|
|
return this._error;
|
2019-06-16 14:24:16 +05:30
|
|
|
}
|
|
|
|
|
2020-04-19 23:22:26 +05:30
|
|
|
start() {
|
|
|
|
// not already syncing?
|
|
|
|
if (this._status.get() !== SyncStatus.Stopped) {
|
2019-05-12 23:56:46 +05:30
|
|
|
return;
|
|
|
|
}
|
2020-09-21 17:25:35 +05:30
|
|
|
this._error = null;
|
2019-05-12 23:56:46 +05:30
|
|
|
let syncToken = this._session.syncToken;
|
2020-04-19 23:22:26 +05:30
|
|
|
if (syncToken) {
|
|
|
|
this._status.set(SyncStatus.CatchupSync);
|
|
|
|
} else {
|
|
|
|
this._status.set(SyncStatus.InitialSync);
|
2019-05-12 23:56:46 +05:30
|
|
|
}
|
|
|
|
this._syncLoop(syncToken);
|
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2019-05-12 23:56:46 +05:30
|
|
|
async _syncLoop(syncToken) {
|
|
|
|
// if syncToken is falsy, it will first do an initial sync ...
|
2020-04-19 23:22:26 +05:30
|
|
|
while(this._status.get() !== SyncStatus.Stopped) {
|
2020-09-10 15:41:43 +05:30
|
|
|
let roomStates;
|
2020-09-24 14:22:56 +05:30
|
|
|
let sessionChanges;
|
2021-02-19 00:18:19 +05:30
|
|
|
let wasCatchupOrInitial = this._status.get() === SyncStatus.CatchupSync || this._status.get() === SyncStatus.InitialSync;
|
2021-02-17 23:15:04 +05:30
|
|
|
await this._logger.run("sync", async log => {
|
|
|
|
log.set("token", syncToken);
|
|
|
|
log.set("status", this._status.get());
|
|
|
|
try {
|
|
|
|
// unless we are happily syncing already, we want the server to return
|
|
|
|
// as quickly as possible, even if there are no events queued. This
|
|
|
|
// serves two purposes:
|
|
|
|
//
|
|
|
|
// * When the connection dies, we want to know asap when it comes back,
|
|
|
|
// so that we can hide the error from the user. (We don't want to
|
|
|
|
// have to wait for an event or a timeout).
|
|
|
|
//
|
|
|
|
// * We want to know if the server has any to_device messages queued up
|
|
|
|
// for us. We do that by calling it with a zero timeout until it
|
|
|
|
// doesn't give us any more to_device messages.
|
|
|
|
const timeout = this._status.get() === SyncStatus.Syncing ? INCREMENTAL_TIMEOUT : 0;
|
|
|
|
const syncResult = await this._syncRequest(syncToken, timeout, log);
|
|
|
|
syncToken = syncResult.syncToken;
|
|
|
|
roomStates = syncResult.roomStates;
|
|
|
|
sessionChanges = syncResult.sessionChanges;
|
|
|
|
// initial sync or catchup sync
|
|
|
|
if (this._status.get() !== SyncStatus.Syncing && syncResult.hadToDeviceMessages) {
|
|
|
|
this._status.set(SyncStatus.CatchupSync);
|
|
|
|
} else {
|
|
|
|
this._status.set(SyncStatus.Syncing);
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
// retry same request on timeout
|
|
|
|
if (err.name === "ConnectionError" && err.isTimeout) {
|
|
|
|
// don't run afterSyncCompleted
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._error = err;
|
|
|
|
if (err.name !== "AbortError") {
|
|
|
|
// sync wasn't asked to stop, but is stopping
|
|
|
|
// because of the error.
|
|
|
|
log.error = err;
|
|
|
|
log.logLevel = log.level.Fatal;
|
|
|
|
}
|
|
|
|
log.set("stopping", true);
|
|
|
|
this._status.set(SyncStatus.Stopped);
|
2020-09-21 21:27:01 +05:30
|
|
|
}
|
2021-02-17 23:15:04 +05:30
|
|
|
if (this._status.get() !== SyncStatus.Stopped) {
|
|
|
|
// TODO: if we're not going to run this phase in parallel with the next
|
|
|
|
// sync request (because this causes OTKs to be uploaded twice)
|
|
|
|
// should we move this inside _syncRequest?
|
|
|
|
// Alternatively, we can try to fix the OTK upload issue while still
|
|
|
|
// running in parallel.
|
|
|
|
await log.wrap("afterSyncCompleted", log => this._runAfterSyncCompleted(sessionChanges, roomStates, log));
|
2020-09-25 14:14:29 +05:30
|
|
|
}
|
2021-02-17 23:15:04 +05:30
|
|
|
},
|
|
|
|
this._logger.level.Info,
|
|
|
|
(filter, log) => {
|
2021-02-19 00:18:19 +05:30
|
|
|
if (log.durationWithoutType("network") >= 2000 || log.error || wasCatchupOrInitial) {
|
2021-02-17 23:15:04 +05:30
|
|
|
return filter.minLevel(log.level.Detail);
|
|
|
|
} else {
|
|
|
|
return filter.minLevel(log.level.Info);
|
2019-05-12 23:56:46 +05:30
|
|
|
}
|
2021-02-17 23:15:04 +05:30
|
|
|
});
|
2020-09-08 18:07:24 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-17 23:15:04 +05:30
|
|
|
async _runAfterSyncCompleted(sessionChanges, roomStates, log) {
|
2020-09-21 21:27:01 +05:30
|
|
|
const isCatchupSync = this._status.get() === SyncStatus.CatchupSync;
|
2020-09-08 18:07:24 +05:30
|
|
|
const sessionPromise = (async () => {
|
|
|
|
try {
|
2021-02-18 17:37:52 +05:30
|
|
|
await log.wrap("session", log => this._session.afterSyncCompleted(sessionChanges, isCatchupSync, log), log.level.Detail);
|
2021-02-17 23:15:04 +05:30
|
|
|
} catch (err) {} // error is logged, but don't fail sessionPromise
|
2020-09-08 18:07:24 +05:30
|
|
|
})();
|
|
|
|
|
2020-09-10 15:41:43 +05:30
|
|
|
const roomsNeedingAfterSyncCompleted = roomStates.filter(rs => {
|
|
|
|
return rs.room.needsAfterSyncCompleted(rs.changes);
|
|
|
|
});
|
|
|
|
const roomsPromises = roomsNeedingAfterSyncCompleted.map(async rs => {
|
|
|
|
try {
|
2021-02-18 17:09:29 +05:30
|
|
|
await log.wrap("room", log => rs.room.afterSyncCompleted(rs.changes, log), log.level.Detail);
|
2021-02-17 23:15:04 +05:30
|
|
|
} catch (err) {} // error is logged, but don't fail roomsPromises
|
2020-09-08 18:07:24 +05:30
|
|
|
});
|
|
|
|
// run everything in parallel,
|
|
|
|
// we don't want to delay the next sync too much
|
2020-09-10 15:41:43 +05:30
|
|
|
// Also, since all promises won't reject (as they have a try/catch)
|
|
|
|
// it's fine to use Promise.all
|
|
|
|
await Promise.all(roomsPromises.concat(sessionPromise));
|
2019-05-12 23:56:46 +05:30
|
|
|
}
|
2019-02-04 02:47:24 +05:30
|
|
|
|
2021-02-12 23:26:26 +05:30
|
|
|
async _syncRequest(syncToken, timeout, log) {
|
2019-10-12 23:54:09 +05:30
|
|
|
let {syncFilterId} = this._session;
|
|
|
|
if (typeof syncFilterId !== "string") {
|
2021-02-17 23:15:04 +05:30
|
|
|
this._currentRequest = this._hsApi.createFilter(this._session.user.id, {room: {state: {lazy_load_members: true}}}, {log});
|
2020-05-07 03:34:41 +05:30
|
|
|
syncFilterId = (await this._currentRequest.response()).filter_id;
|
2019-10-12 23:54:09 +05:30
|
|
|
}
|
2020-05-07 03:20:12 +05:30
|
|
|
const totalRequestTimeout = timeout + (80 * 1000); // same as riot-web, don't get stuck on wedged long requests
|
2021-02-12 23:26:26 +05:30
|
|
|
this._currentRequest = this._hsApi.sync(syncToken, syncFilterId, timeout, {timeout: totalRequestTimeout, log});
|
2019-05-12 23:56:46 +05:30
|
|
|
const response = await this._currentRequest.response();
|
2020-09-08 18:07:24 +05:30
|
|
|
|
2020-08-17 17:43:23 +05:30
|
|
|
const isInitialSync = !syncToken;
|
2021-03-01 19:34:45 +05:30
|
|
|
const sessionState = new SessionSyncProcessState();
|
2021-04-20 21:09:46 +05:30
|
|
|
const inviteStates = this._parseInvites(response.rooms);
|
2021-05-10 22:12:30 +05:30
|
|
|
const {roomStates, archivedRoomStates} = await this._parseRoomsResponse(
|
2021-05-11 16:32:43 +05:30
|
|
|
response.rooms, inviteStates, isInitialSync, log);
|
2021-02-17 23:15:04 +05:30
|
|
|
|
2021-03-01 19:34:45 +05:30
|
|
|
try {
|
|
|
|
// take a lock on olm sessions used in this sync so sending a message doesn't change them while syncing
|
|
|
|
sessionState.lock = await log.wrap("obtainSyncLock", () => this._session.obtainSyncLock(response));
|
2021-04-20 21:27:17 +05:30
|
|
|
await log.wrap("prepare", log => this._prepareSync(sessionState, roomStates, response, log));
|
2021-03-01 19:34:45 +05:30
|
|
|
await log.wrap("afterPrepareSync", log => Promise.all(roomStates.map(rs => {
|
|
|
|
return rs.room.afterPrepareSync(rs.preparation, log);
|
|
|
|
})));
|
2021-04-20 21:27:17 +05:30
|
|
|
await log.wrap("write", async log => this._writeSync(
|
2021-05-10 22:12:30 +05:30
|
|
|
sessionState, inviteStates, roomStates, archivedRoomStates,
|
|
|
|
response, syncFilterId, isInitialSync, log));
|
2021-03-01 19:34:45 +05:30
|
|
|
} finally {
|
|
|
|
sessionState.dispose();
|
|
|
|
}
|
2021-04-20 21:27:17 +05:30
|
|
|
// sync txn comitted, emit updates and apply changes to in-memory state
|
2021-05-10 22:12:30 +05:30
|
|
|
log.wrap("after", log => this._afterSync(
|
|
|
|
sessionState, inviteStates, roomStates, archivedRoomStates, log));
|
2019-02-27 23:57:45 +05:30
|
|
|
|
2020-09-21 21:27:01 +05:30
|
|
|
const toDeviceEvents = response.to_device?.events;
|
|
|
|
return {
|
2021-02-17 23:15:04 +05:30
|
|
|
syncToken: response.next_batch,
|
2020-09-21 21:27:01 +05:30
|
|
|
roomStates,
|
2021-03-01 19:34:45 +05:30
|
|
|
sessionChanges: sessionState.changes,
|
2020-09-21 21:27:01 +05:30
|
|
|
hadToDeviceMessages: Array.isArray(toDeviceEvents) && toDeviceEvents.length > 0,
|
|
|
|
};
|
2020-09-08 18:07:24 +05:30
|
|
|
}
|
|
|
|
|
2020-09-25 20:12:41 +05:30
|
|
|
_openPrepareSyncTxn() {
|
2020-09-10 15:41:43 +05:30
|
|
|
const storeNames = this._storage.storeNames;
|
2020-09-25 20:12:41 +05:30
|
|
|
return this._storage.readTxn([
|
2021-03-01 19:34:45 +05:30
|
|
|
storeNames.olmSessions,
|
2020-09-10 15:41:43 +05:30
|
|
|
storeNames.inboundGroupSessions,
|
2021-05-05 20:37:26 +05:30
|
|
|
// to read fragments when loading sync writer when rejoining archived room
|
|
|
|
storeNames.timelineFragments,
|
|
|
|
// to read fragments when loading sync writer when rejoining archived room
|
|
|
|
// to read events that can now be decrypted
|
|
|
|
storeNames.timelineEvents,
|
2020-09-10 15:41:43 +05:30
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2021-04-20 21:27:17 +05:30
|
|
|
async _prepareSync(sessionState, roomStates, response, log) {
|
2021-03-05 00:17:02 +05:30
|
|
|
const prepareTxn = await this._openPrepareSyncTxn();
|
2021-03-01 19:34:45 +05:30
|
|
|
sessionState.preparation = await log.wrap("session", log => this._session.prepareSync(
|
|
|
|
response, sessionState.lock, prepareTxn, log));
|
|
|
|
|
|
|
|
const newKeysByRoom = sessionState.preparation?.newKeysByRoom;
|
2021-03-02 03:00:45 +05:30
|
|
|
|
|
|
|
// add any rooms with new keys but no sync response to the list of rooms to be synced
|
|
|
|
if (newKeysByRoom) {
|
|
|
|
const {hasOwnProperty} = Object.prototype;
|
|
|
|
for (const roomId of newKeysByRoom.keys()) {
|
|
|
|
const isRoomInResponse = response.rooms?.join && hasOwnProperty.call(response.rooms.join, roomId);
|
|
|
|
if (!isRoomInResponse) {
|
|
|
|
let room = this._session.rooms.get(roomId);
|
|
|
|
if (room) {
|
2021-04-20 21:09:46 +05:30
|
|
|
roomStates.push(new RoomSyncProcessState(room, false, null, {}, room.membership));
|
2021-03-02 03:00:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 19:34:45 +05:30
|
|
|
|
2020-09-23 17:56:14 +05:30
|
|
|
await Promise.all(roomStates.map(async rs => {
|
2021-03-01 19:34:45 +05:30
|
|
|
const newKeys = newKeysByRoom?.get(rs.room.id);
|
2021-05-05 20:37:26 +05:30
|
|
|
rs.preparation = await log.wrap("room", async log => {
|
2021-05-10 22:12:30 +05:30
|
|
|
// if previously joined and we still have the timeline for it,
|
|
|
|
// this loads the syncWriter at the correct position to continue writing the timeline
|
2021-05-05 20:37:26 +05:30
|
|
|
if (rs.isNewRoom) {
|
|
|
|
await rs.room.load(null, prepareTxn, log);
|
|
|
|
}
|
|
|
|
return rs.room.prepareSync(
|
|
|
|
rs.roomResponse, rs.membership, rs.invite, newKeys, prepareTxn, log)
|
|
|
|
}, log.level.Detail);
|
2020-09-23 17:56:14 +05:30
|
|
|
}));
|
2021-03-01 19:34:45 +05:30
|
|
|
|
2020-10-01 19:44:06 +05:30
|
|
|
// This is needed for safari to not throw TransactionInactiveErrors on the syncTxn. See docs/INDEXEDDB.md
|
2020-10-01 18:01:38 +05:30
|
|
|
await prepareTxn.complete();
|
2020-09-08 18:07:24 +05:30
|
|
|
}
|
|
|
|
|
2021-05-10 22:12:30 +05:30
|
|
|
async _writeSync(sessionState, inviteStates, roomStates, archivedRoomStates, response, syncFilterId, isInitialSync, log) {
|
2021-04-20 21:27:17 +05:30
|
|
|
const syncTxn = await this._openSyncTxn();
|
|
|
|
try {
|
|
|
|
sessionState.changes = await log.wrap("session", log => this._session.writeSync(
|
|
|
|
response, syncFilterId, sessionState.preparation, syncTxn, log));
|
|
|
|
await Promise.all(inviteStates.map(async is => {
|
|
|
|
is.changes = await log.wrap("invite", log => is.invite.writeSync(
|
|
|
|
is.membership, is.roomResponse, syncTxn, log));
|
|
|
|
}));
|
|
|
|
await Promise.all(roomStates.map(async rs => {
|
|
|
|
rs.changes = await log.wrap("room", log => rs.room.writeSync(
|
|
|
|
rs.roomResponse, isInitialSync, rs.preparation, syncTxn, log));
|
|
|
|
}));
|
2021-05-10 22:12:30 +05:30
|
|
|
// important to do this after roomStates,
|
|
|
|
// as we're referring to the roomState to get the summaryChanges
|
|
|
|
await Promise.all(archivedRoomStates.map(async ars => {
|
|
|
|
const summaryChanges = ars.roomState?.summaryChanges;
|
|
|
|
ars.changes = await log.wrap("archivedRoom", log => ars.archivedRoom.writeSync(
|
|
|
|
summaryChanges, ars.roomResponse, ars.membership, syncTxn, log));
|
|
|
|
}));
|
2021-04-20 21:27:17 +05:30
|
|
|
} catch(err) {
|
|
|
|
// avoid corrupting state by only
|
|
|
|
// storing the sync up till the point
|
|
|
|
// the exception occurred
|
|
|
|
try {
|
|
|
|
syncTxn.abort();
|
|
|
|
} catch (abortErr) {
|
|
|
|
log.set("couldNotAbortTxn", true);
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
await syncTxn.complete();
|
|
|
|
}
|
|
|
|
|
2021-05-10 22:12:30 +05:30
|
|
|
_afterSync(sessionState, inviteStates, roomStates, archivedRoomStates, log) {
|
2021-04-20 21:27:17 +05:30
|
|
|
log.wrap("session", log => this._session.afterSync(sessionState.changes, log), log.level.Detail);
|
2021-05-10 22:12:30 +05:30
|
|
|
for(let ars of archivedRoomStates) {
|
2021-05-11 19:39:58 +05:30
|
|
|
log.wrap("archivedRoom", log => {
|
|
|
|
ars.archivedRoom.afterSync(ars.changes, log);
|
|
|
|
ars.archivedRoom.release();
|
|
|
|
}, log.level.Detail);
|
2021-05-10 22:12:30 +05:30
|
|
|
}
|
2021-04-23 21:34:10 +05:30
|
|
|
for(let rs of roomStates) {
|
|
|
|
log.wrap("room", log => rs.room.afterSync(rs.changes, log), log.level.Detail);
|
|
|
|
}
|
2021-04-20 21:27:17 +05:30
|
|
|
for(let is of inviteStates) {
|
2021-05-11 16:35:02 +05:30
|
|
|
log.wrap("invite", log => is.invite.afterSync(is.changes, log), log.level.Detail);
|
2021-04-20 21:27:17 +05:30
|
|
|
}
|
2021-05-10 22:12:30 +05:30
|
|
|
this._session.applyRoomCollectionChangesAfterSync(inviteStates, roomStates, archivedRoomStates);
|
2021-04-20 21:27:17 +05:30
|
|
|
}
|
|
|
|
|
2020-09-25 20:12:41 +05:30
|
|
|
_openSyncTxn() {
|
2020-09-08 18:07:24 +05:30
|
|
|
const storeNames = this._storage.storeNames;
|
2020-09-25 20:12:41 +05:30
|
|
|
return this._storage.readWriteTxn([
|
2020-09-08 18:07:24 +05:30
|
|
|
storeNames.session,
|
|
|
|
storeNames.roomSummary,
|
2021-05-04 17:04:42 +05:30
|
|
|
storeNames.archivedRoomSummary,
|
2021-04-20 21:09:46 +05:30
|
|
|
storeNames.invites,
|
2020-09-08 18:07:24 +05:30
|
|
|
storeNames.roomState,
|
|
|
|
storeNames.roomMembers,
|
|
|
|
storeNames.timelineEvents,
|
2021-06-03 20:14:35 +05:30
|
|
|
storeNames.timelineRelations,
|
2020-09-08 18:07:24 +05:30
|
|
|
storeNames.timelineFragments,
|
|
|
|
storeNames.pendingEvents,
|
|
|
|
storeNames.userIdentities,
|
|
|
|
storeNames.groupSessionDecryptions,
|
|
|
|
storeNames.deviceIdentities,
|
2020-09-08 18:30:00 +05:30
|
|
|
// to discard outbound session when somebody leaves a room
|
2020-10-01 18:09:23 +05:30
|
|
|
// and to create room key messages when somebody joins
|
2020-09-11 18:11:12 +05:30
|
|
|
storeNames.outboundGroupSessions,
|
2020-09-17 14:09:51 +05:30
|
|
|
storeNames.operations,
|
|
|
|
storeNames.accountData,
|
2021-03-01 19:34:45 +05:30
|
|
|
// to decrypt and store new room keys
|
|
|
|
storeNames.olmSessions,
|
|
|
|
storeNames.inboundGroupSessions,
|
2020-09-08 18:07:24 +05:30
|
|
|
]);
|
2019-05-12 23:56:46 +05:30
|
|
|
}
|
2020-09-10 15:41:43 +05:30
|
|
|
|
2021-05-11 16:32:43 +05:30
|
|
|
async _parseRoomsResponse(roomsSection, inviteStates, isInitialSync, log) {
|
2020-09-10 15:41:43 +05:30
|
|
|
const roomStates = [];
|
2021-05-10 22:12:30 +05:30
|
|
|
const archivedRoomStates = [];
|
2020-09-10 15:41:43 +05:30
|
|
|
if (roomsSection) {
|
2021-04-22 20:53:29 +05:30
|
|
|
const allMemberships = ["join", "leave"];
|
2020-09-10 15:41:43 +05:30
|
|
|
for(const membership of allMemberships) {
|
|
|
|
const membershipSection = roomsSection[membership];
|
|
|
|
if (membershipSection) {
|
|
|
|
for (const [roomId, roomResponse] of Object.entries(membershipSection)) {
|
|
|
|
// ignore rooms with empty timelines during initial sync,
|
|
|
|
// see https://github.com/vector-im/hydrogen-web/issues/15
|
|
|
|
if (isInitialSync && timelineIsEmpty(roomResponse)) {
|
2020-09-21 17:41:28 +05:30
|
|
|
continue;
|
2020-09-10 15:41:43 +05:30
|
|
|
}
|
2021-04-20 21:09:46 +05:30
|
|
|
const invite = this._session.invites.get(roomId);
|
|
|
|
// if there is an existing invite, add a process state for it
|
|
|
|
// so its writeSync and afterSync will run and remove the invite
|
|
|
|
if (invite) {
|
2021-05-10 22:12:30 +05:30
|
|
|
inviteStates.push(new InviteSyncProcessState(invite, false, null, membership));
|
|
|
|
}
|
2021-05-11 16:32:43 +05:30
|
|
|
const roomState = this._createRoomSyncState(roomId, invite, roomResponse, membership, isInitialSync);
|
2021-05-10 22:12:30 +05:30
|
|
|
if (roomState) {
|
|
|
|
roomStates.push(roomState);
|
2021-04-20 21:09:46 +05:30
|
|
|
}
|
2021-05-11 16:32:43 +05:30
|
|
|
const ars = await this._createArchivedRoomSyncState(roomId, roomState, roomResponse, membership, isInitialSync, log);
|
2021-05-10 22:12:30 +05:30
|
|
|
if (ars) {
|
|
|
|
archivedRoomStates.push(ars);
|
2021-04-26 14:11:21 +05:30
|
|
|
}
|
2020-09-10 15:41:43 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-10 22:12:30 +05:30
|
|
|
return {roomStates, archivedRoomStates};
|
|
|
|
}
|
|
|
|
|
2021-05-11 16:32:43 +05:30
|
|
|
_createRoomSyncState(roomId, invite, roomResponse, membership, isInitialSync) {
|
2021-05-10 22:12:30 +05:30
|
|
|
let isNewRoom = false;
|
|
|
|
let room = this._session.rooms.get(roomId);
|
2021-05-11 16:32:43 +05:30
|
|
|
// create room only either on new join,
|
|
|
|
// or for an archived room during initial sync,
|
|
|
|
// where we create the summaryChanges with a joined
|
|
|
|
// room to then adopt by the archived room.
|
|
|
|
// This way the limited timeline, members, ...
|
|
|
|
// we receive also gets written.
|
|
|
|
// In any case, don't create a room for a rejected invite
|
|
|
|
if (!room && (membership === "join" || (isInitialSync && membership === "leave"))) {
|
2021-05-10 22:12:30 +05:30
|
|
|
room = this._session.createRoom(roomId);
|
|
|
|
isNewRoom = true;
|
|
|
|
}
|
|
|
|
if (room) {
|
|
|
|
return new RoomSyncProcessState(
|
|
|
|
room, isNewRoom, invite, roomResponse, membership);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-11 16:32:43 +05:30
|
|
|
async _createArchivedRoomSyncState(roomId, roomState, roomResponse, membership, isInitialSync, log) {
|
2021-05-10 22:12:30 +05:30
|
|
|
let archivedRoom;
|
2021-05-11 16:32:43 +05:30
|
|
|
if (roomState?.shouldAdd && !isInitialSync) {
|
|
|
|
// when adding a joined room during incremental sync,
|
|
|
|
// always create the archived room to write the removal
|
|
|
|
// of the archived summary
|
2021-05-11 20:28:16 +05:30
|
|
|
archivedRoom = this._session.createOrGetArchivedRoomForSync(roomId);
|
2021-05-10 22:12:30 +05:30
|
|
|
} else if (membership === "leave") {
|
|
|
|
if (roomState) {
|
|
|
|
// we still have a roomState, so we just left it
|
|
|
|
// in this case, create a new archivedRoom
|
2021-05-11 20:28:16 +05:30
|
|
|
archivedRoom = this._session.createOrGetArchivedRoomForSync(roomId);
|
2021-05-10 22:12:30 +05:30
|
|
|
} else {
|
|
|
|
// this is an update of an already left room, restore
|
|
|
|
// it from storage first, so we can increment it.
|
|
|
|
// this happens for example when our membership changes
|
|
|
|
// after leaving (e.g. being (un)banned, possibly after being kicked), etc
|
2021-05-11 16:32:43 +05:30
|
|
|
archivedRoom = await this._session.loadArchivedRoom(roomId, log);
|
2021-05-10 22:12:30 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (archivedRoom) {
|
|
|
|
return new ArchivedRoomSyncProcessState(
|
2021-05-11 16:32:43 +05:30
|
|
|
archivedRoom, roomState, roomResponse, membership);
|
2021-05-10 22:12:30 +05:30
|
|
|
}
|
2020-09-10 15:41:43 +05:30
|
|
|
}
|
|
|
|
|
2021-04-21 20:56:10 +05:30
|
|
|
_parseInvites(roomsSection) {
|
2021-04-20 21:09:46 +05:30
|
|
|
const inviteStates = [];
|
2021-05-06 15:40:10 +05:30
|
|
|
if (roomsSection?.invite) {
|
2021-04-20 21:09:46 +05:30
|
|
|
for (const [roomId, roomResponse] of Object.entries(roomsSection.invite)) {
|
|
|
|
let invite = this._session.invites.get(roomId);
|
|
|
|
let isNewInvite = false;
|
|
|
|
if (!invite) {
|
|
|
|
invite = this._session.createInvite(roomId);
|
|
|
|
isNewInvite = true;
|
|
|
|
}
|
2021-05-10 22:12:30 +05:30
|
|
|
inviteStates.push(new InviteSyncProcessState(invite, isNewInvite, roomResponse, "invite"));
|
2021-04-20 21:09:46 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return inviteStates;
|
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2019-05-12 23:56:46 +05:30
|
|
|
stop() {
|
2020-04-19 23:22:26 +05:30
|
|
|
if (this._status.get() === SyncStatus.Stopped) {
|
2019-05-12 23:56:46 +05:30
|
|
|
return;
|
|
|
|
}
|
2020-04-19 23:22:26 +05:30
|
|
|
this._status.set(SyncStatus.Stopped);
|
2019-05-12 23:56:46 +05:30
|
|
|
if (this._currentRequest) {
|
|
|
|
this._currentRequest.abort();
|
|
|
|
this._currentRequest = null;
|
|
|
|
}
|
|
|
|
}
|
2019-02-21 04:18:16 +05:30
|
|
|
}
|
2020-09-10 15:41:43 +05:30
|
|
|
|
2021-03-01 19:34:45 +05:30
|
|
|
class SessionSyncProcessState {
|
|
|
|
constructor() {
|
|
|
|
this.lock = null;
|
|
|
|
this.preparation = null;
|
|
|
|
this.changes = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
this.lock?.release();
|
|
|
|
this.preparation?.dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 15:41:43 +05:30
|
|
|
class RoomSyncProcessState {
|
2021-04-20 21:09:46 +05:30
|
|
|
constructor(room, isNewRoom, invite, roomResponse, membership) {
|
2020-09-10 15:41:43 +05:30
|
|
|
this.room = room;
|
2021-04-20 21:09:46 +05:30
|
|
|
this.isNewRoom = isNewRoom;
|
|
|
|
this.invite = invite;
|
2020-09-10 15:41:43 +05:30
|
|
|
this.roomResponse = roomResponse;
|
|
|
|
this.membership = membership;
|
|
|
|
this.preparation = null;
|
|
|
|
this.changes = null;
|
|
|
|
}
|
2021-05-10 22:12:30 +05:30
|
|
|
|
|
|
|
get id() {
|
|
|
|
return this.room.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
get shouldAdd() {
|
2021-05-11 16:32:43 +05:30
|
|
|
return this.isNewRoom && this.membership === "join";
|
2021-05-10 22:12:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
get shouldRemove() {
|
2021-05-11 16:32:43 +05:30
|
|
|
return !this.isNewRoom && this.membership !== "join";
|
2021-05-10 22:12:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
get summaryChanges() {
|
|
|
|
return this.changes?.summaryChanges;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class ArchivedRoomSyncProcessState {
|
2021-05-11 16:32:43 +05:30
|
|
|
constructor(archivedRoom, roomState, roomResponse, membership, isInitialSync) {
|
2021-05-10 22:12:30 +05:30
|
|
|
this.archivedRoom = archivedRoom;
|
|
|
|
this.roomState = roomState;
|
|
|
|
this.roomResponse = roomResponse;
|
|
|
|
this.membership = membership;
|
2021-05-11 16:32:43 +05:30
|
|
|
this.isInitialSync = isInitialSync;
|
2021-05-10 22:12:30 +05:30
|
|
|
this.changes = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
get id() {
|
|
|
|
return this.archivedRoom.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
get shouldAdd() {
|
2021-05-11 16:32:43 +05:30
|
|
|
return (this.roomState || this.isInitialSync) && this.membership === "leave";
|
2021-05-10 22:12:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
get shouldRemove() {
|
|
|
|
return this.membership === "join";
|
|
|
|
}
|
2020-09-10 15:41:43 +05:30
|
|
|
}
|
2021-04-20 21:09:46 +05:30
|
|
|
|
|
|
|
class InviteSyncProcessState {
|
2021-05-10 22:12:30 +05:30
|
|
|
constructor(invite, isNewInvite, roomResponse, membership) {
|
2021-04-20 21:09:46 +05:30
|
|
|
this.invite = invite;
|
|
|
|
this.isNewInvite = isNewInvite;
|
|
|
|
this.membership = membership;
|
|
|
|
this.roomResponse = roomResponse;
|
|
|
|
this.changes = null;
|
|
|
|
}
|
2021-05-10 22:12:30 +05:30
|
|
|
|
|
|
|
get id() {
|
|
|
|
return this.invite.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
get shouldAdd() {
|
|
|
|
return this.isNewInvite;
|
|
|
|
}
|
|
|
|
|
|
|
|
get shouldRemove() {
|
|
|
|
return this.membership !== "invite";
|
|
|
|
}
|
2021-04-20 21:09:46 +05:30
|
|
|
}
|