2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
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 01:05:53 +05:30
|
|
|
import {EventEmitter} from "../../utils/EventEmitter.js";
|
2020-08-21 22:33:21 +05:30
|
|
|
import {RoomSummary, needsHeroes} from "./RoomSummary.js";
|
2020-04-21 00:56:39 +05:30
|
|
|
import {SyncWriter} from "./timeline/persistence/SyncWriter.js";
|
|
|
|
import {GapWriter} from "./timeline/persistence/GapWriter.js";
|
|
|
|
import {Timeline} from "./timeline/Timeline.js";
|
|
|
|
import {FragmentIdComparer} from "./timeline/FragmentIdComparer.js";
|
|
|
|
import {SendQueue} from "./sending/SendQueue.js";
|
2020-08-17 14:18:00 +05:30
|
|
|
import {WrappedError} from "../error.js"
|
2020-08-19 20:28:19 +05:30
|
|
|
import {fetchOrLoadMembers} from "./members/load.js";
|
2020-08-19 19:59:54 +05:30
|
|
|
import {MemberList} from "./members/MemberList.js";
|
2020-08-21 21:41:07 +05:30
|
|
|
import {Heroes} from "./members/Heroes.js";
|
2020-09-04 18:58:22 +05:30
|
|
|
import {EventEntry} from "./timeline/entries/EventEntry.js";
|
2020-09-10 15:39:17 +05:30
|
|
|
import {DecryptionSource} from "../e2ee/common.js";
|
|
|
|
|
|
|
|
const EVENT_ENCRYPTED_TYPE = "m.room.encrypted";
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
export class Room extends EventEmitter {
|
2020-09-09 13:20:03 +05:30
|
|
|
constructor({roomId, storage, hsApi, emitCollectionChange, sendScheduler, pendingEvents, user, createRoomEncryption, getSyncToken}) {
|
2019-02-21 04:18:16 +05:30
|
|
|
super();
|
2019-03-09 00:33:18 +05:30
|
|
|
this._roomId = roomId;
|
|
|
|
this._storage = storage;
|
|
|
|
this._hsApi = hsApi;
|
2020-08-21 17:56:51 +05:30
|
|
|
this._summary = new RoomSummary(roomId, user.id);
|
2019-05-12 23:54:06 +05:30
|
|
|
this._fragmentIdComparer = new FragmentIdComparer([]);
|
2020-01-05 00:34:57 +05:30
|
|
|
this._syncWriter = new SyncWriter({roomId, fragmentIdComparer: this._fragmentIdComparer});
|
2019-02-21 04:18:16 +05:30
|
|
|
this._emitCollectionChange = emitCollectionChange;
|
2019-07-27 02:03:33 +05:30
|
|
|
this._sendQueue = new SendQueue({roomId, storage, sendScheduler, pendingEvents});
|
2019-02-28 03:20:08 +05:30
|
|
|
this._timeline = null;
|
2019-07-29 13:53:15 +05:30
|
|
|
this._user = user;
|
2020-08-19 19:42:49 +05:30
|
|
|
this._changedMembersDuringSync = null;
|
2020-08-31 12:24:27 +05:30
|
|
|
this._memberList = null;
|
2020-09-03 19:06:17 +05:30
|
|
|
this._createRoomEncryption = createRoomEncryption;
|
|
|
|
this._roomEncryption = null;
|
2020-09-09 13:20:03 +05:30
|
|
|
this._getSyncToken = getSyncToken;
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
|
|
|
|
2020-09-04 18:58:22 +05:30
|
|
|
async notifyRoomKeys(roomKeys) {
|
2020-09-04 15:40:12 +05:30
|
|
|
if (this._roomEncryption) {
|
2020-09-10 15:39:17 +05:30
|
|
|
let retryEventIds = this._roomEncryption.applyRoomKeys(roomKeys);
|
|
|
|
if (retryEventIds.length) {
|
|
|
|
const retryEntries = [];
|
|
|
|
const txn = await this._storage.readTxn([
|
2020-09-04 18:58:22 +05:30
|
|
|
this._storage.storeNames.timelineEvents,
|
|
|
|
this._storage.storeNames.inboundGroupSessions,
|
|
|
|
]);
|
2020-09-10 15:39:17 +05:30
|
|
|
for (const eventId of retryEventIds) {
|
|
|
|
const storageEntry = await txn.timelineEvents.getByEventId(this._roomId, eventId);
|
|
|
|
if (storageEntry) {
|
|
|
|
retryEntries.push(new EventEntry(storageEntry, this._fragmentIdComparer));
|
2020-09-04 18:58:22 +05:30
|
|
|
}
|
|
|
|
}
|
2020-09-10 20:10:30 +05:30
|
|
|
const decryptRequest = this._decryptEntries(DecryptionSource.Retry, retryEntries, txn);
|
|
|
|
await decryptRequest.complete();
|
2020-09-10 15:39:17 +05:30
|
|
|
if (this._timeline) {
|
|
|
|
// only adds if already present
|
|
|
|
this._timeline.replaceEntries(retryEntries);
|
|
|
|
}
|
|
|
|
// pass decryptedEntries to roomSummary
|
2020-09-04 15:40:12 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 18:58:22 +05:30
|
|
|
_enableEncryption(encryptionParams) {
|
|
|
|
this._roomEncryption = this._createRoomEncryption(this, encryptionParams);
|
|
|
|
if (this._roomEncryption) {
|
|
|
|
this._sendQueue.enableEncryption(this._roomEncryption);
|
2020-09-04 19:57:39 +05:30
|
|
|
if (this._timeline) {
|
2020-09-10 15:39:17 +05:30
|
|
|
this._timeline.enableEncryption(this._decryptEntries.bind(this, DecryptionSource.Timeline));
|
2020-09-04 19:57:39 +05:30
|
|
|
}
|
2020-09-04 18:58:22 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 15:39:17 +05:30
|
|
|
/**
|
|
|
|
* Used for decrypting when loading/filling the timeline, and retrying decryption,
|
|
|
|
* not during sync, where it is split up during the multiple phases.
|
|
|
|
*/
|
2020-09-10 20:10:30 +05:30
|
|
|
_decryptEntries(source, entries, inboundSessionTxn = null) {
|
|
|
|
const request = new DecryptionRequest(async r => {
|
|
|
|
if (!inboundSessionTxn) {
|
|
|
|
inboundSessionTxn = await this._storage.readTxn([this._storage.storeNames.inboundGroupSessions]);
|
|
|
|
}
|
|
|
|
if (r.cancelled) return;
|
|
|
|
const events = entries.filter(entry => {
|
|
|
|
return entry.eventType === EVENT_ENCRYPTED_TYPE;
|
|
|
|
}).map(entry => entry.event);
|
|
|
|
const isTimelineOpen = this._isTimelineOpen;
|
|
|
|
r.preparation = await this._roomEncryption.prepareDecryptAll(events, source, isTimelineOpen, inboundSessionTxn);
|
|
|
|
if (r.cancelled) return;
|
|
|
|
// TODO: should this throw an AbortError?
|
|
|
|
const changes = await r.preparation.decrypt();
|
|
|
|
r.preparation = null;
|
|
|
|
if (r.cancelled) return;
|
|
|
|
const stores = [this._storage.storeNames.groupSessionDecryptions];
|
|
|
|
if (isTimelineOpen) {
|
|
|
|
// read to fetch devices if timeline is open
|
|
|
|
stores.push(this._storage.storeNames.deviceIdentities);
|
|
|
|
}
|
|
|
|
const writeTxn = await this._storage.readWriteTxn(stores);
|
|
|
|
let decryption;
|
|
|
|
try {
|
|
|
|
decryption = await changes.write(writeTxn);
|
|
|
|
} catch (err) {
|
|
|
|
writeTxn.abort();
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
await writeTxn.complete();
|
|
|
|
decryption.applyToEntries(entries);
|
|
|
|
});
|
|
|
|
return request;
|
2020-09-10 15:39:17 +05:30
|
|
|
}
|
|
|
|
|
2020-09-10 15:41:43 +05:30
|
|
|
get needsPrepareSync() {
|
|
|
|
// only encrypted rooms need the prepare sync steps
|
|
|
|
return !!this._roomEncryption;
|
|
|
|
}
|
|
|
|
|
|
|
|
async prepareSync(roomResponse, txn) {
|
|
|
|
if (this._roomEncryption) {
|
|
|
|
const events = roomResponse?.timeline?.events;
|
|
|
|
if (Array.isArray(events)) {
|
|
|
|
const eventsToDecrypt = events.filter(event => {
|
|
|
|
return event?.type === EVENT_ENCRYPTED_TYPE;
|
|
|
|
});
|
|
|
|
const preparation = await this._roomEncryption.prepareDecryptAll(
|
|
|
|
eventsToDecrypt, DecryptionSource.Sync, this._isTimelineOpen, txn);
|
|
|
|
return preparation;
|
2020-09-04 15:39:19 +05:30
|
|
|
}
|
2020-09-04 18:58:22 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 15:41:43 +05:30
|
|
|
async afterPrepareSync(preparation) {
|
|
|
|
if (preparation) {
|
|
|
|
const decryptChanges = await preparation.decrypt();
|
|
|
|
return decryptChanges;
|
|
|
|
}
|
2020-09-04 15:39:19 +05:30
|
|
|
}
|
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @package */
|
2020-09-10 15:41:43 +05:30
|
|
|
async writeSync(roomResponse, membership, isInitialSync, decryptChanges, txn) {
|
|
|
|
let decryption;
|
|
|
|
if (this._roomEncryption && decryptChanges) {
|
|
|
|
decryption = await decryptChanges.write(txn);
|
|
|
|
}
|
|
|
|
const {entries, newLiveKey, memberChanges} =
|
|
|
|
await this._syncWriter.writeSync(roomResponse, this.isTrackingMembers, txn);
|
|
|
|
if (decryption) {
|
|
|
|
decryption.applyToEntries(entries);
|
|
|
|
}
|
|
|
|
// pass member changes to device tracker
|
|
|
|
if (this._roomEncryption && this.isTrackingMembers && memberChanges?.size) {
|
|
|
|
await this._roomEncryption.writeMemberChanges(memberChanges, txn);
|
|
|
|
}
|
2020-08-21 17:56:51 +05:30
|
|
|
const summaryChanges = this._summary.writeSync(
|
|
|
|
roomResponse,
|
|
|
|
membership,
|
2020-09-10 15:41:43 +05:30
|
|
|
isInitialSync, this._isTimelineOpen,
|
2020-08-21 17:56:51 +05:30
|
|
|
txn);
|
2020-08-21 21:41:07 +05:30
|
|
|
// fetch new members while we have txn open,
|
|
|
|
// but don't make any in-memory changes yet
|
|
|
|
let heroChanges;
|
2020-08-21 22:33:21 +05:30
|
|
|
if (needsHeroes(summaryChanges)) {
|
|
|
|
// room name disappeared, open heroes
|
|
|
|
if (!this._heroes) {
|
|
|
|
this._heroes = new Heroes(this._roomId);
|
|
|
|
}
|
2020-08-31 13:20:57 +05:30
|
|
|
heroChanges = await this._heroes.calculateChanges(summaryChanges.heroes, memberChanges, txn);
|
2020-08-21 21:41:07 +05:30
|
|
|
}
|
2019-07-27 02:03:33 +05:30
|
|
|
let removedPendingEvents;
|
|
|
|
if (roomResponse.timeline && roomResponse.timeline.events) {
|
|
|
|
removedPendingEvents = this._sendQueue.removeRemoteEchos(roomResponse.timeline.events, txn);
|
|
|
|
}
|
2020-08-21 21:41:07 +05:30
|
|
|
return {
|
|
|
|
summaryChanges,
|
|
|
|
newTimelineEntries: entries,
|
|
|
|
newLiveKey,
|
|
|
|
removedPendingEvents,
|
2020-08-31 13:20:57 +05:30
|
|
|
memberChanges,
|
2020-09-08 18:08:27 +05:30
|
|
|
heroChanges,
|
2020-08-21 21:41:07 +05:30
|
|
|
};
|
2019-02-27 23:57:45 +05:30
|
|
|
}
|
|
|
|
|
2020-09-08 18:09:33 +05:30
|
|
|
/**
|
|
|
|
* @package
|
|
|
|
* Called with the changes returned from `writeSync` to apply them and emit changes.
|
|
|
|
* No storage or network operations should be done here.
|
|
|
|
*/
|
2020-08-31 13:20:57 +05:30
|
|
|
afterSync({summaryChanges, newTimelineEntries, newLiveKey, removedPendingEvents, memberChanges, heroChanges}) {
|
2020-03-15 01:19:15 +05:30
|
|
|
this._syncWriter.afterSync(newLiveKey);
|
2020-09-03 19:06:17 +05:30
|
|
|
if (!this._summary.encryption && summaryChanges.encryption && !this._roomEncryption) {
|
2020-09-04 18:58:22 +05:30
|
|
|
this._enableEncryption(summaryChanges.encryption);
|
2020-09-03 19:06:17 +05:30
|
|
|
}
|
2020-08-31 13:20:57 +05:30
|
|
|
if (memberChanges.size) {
|
2020-08-19 19:42:49 +05:30
|
|
|
if (this._changedMembersDuringSync) {
|
2020-08-31 13:20:57 +05:30
|
|
|
for (const [userId, memberChange] of memberChanges.entries()) {
|
|
|
|
this._changedMembersDuringSync.set(userId, memberChange.member);
|
2020-08-19 19:42:49 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this._memberList) {
|
2020-08-31 13:20:57 +05:30
|
|
|
this._memberList.afterSync(memberChanges);
|
2020-08-19 19:42:49 +05:30
|
|
|
}
|
|
|
|
}
|
2020-08-21 21:41:07 +05:30
|
|
|
let emitChange = false;
|
2020-03-15 01:16:49 +05:30
|
|
|
if (summaryChanges) {
|
2020-06-27 02:56:24 +05:30
|
|
|
this._summary.applyChanges(summaryChanges);
|
2020-08-21 22:33:21 +05:30
|
|
|
if (!this._summary.needsHeroes) {
|
2020-08-21 21:41:07 +05:30
|
|
|
this._heroes = null;
|
|
|
|
}
|
|
|
|
emitChange = true;
|
|
|
|
}
|
|
|
|
if (this._heroes && heroChanges) {
|
|
|
|
const oldName = this.name;
|
|
|
|
this._heroes.applyChanges(heroChanges, this._summary);
|
|
|
|
if (oldName !== this.name) {
|
|
|
|
emitChange = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (emitChange) {
|
2019-02-21 04:18:16 +05:30
|
|
|
this.emit("change");
|
2019-02-28 03:52:47 +05:30
|
|
|
this._emitCollectionChange(this);
|
2019-02-21 04:18:16 +05:30
|
|
|
}
|
2019-02-28 03:20:08 +05:30
|
|
|
if (this._timeline) {
|
|
|
|
this._timeline.appendLiveEntries(newTimelineEntries);
|
|
|
|
}
|
2019-07-27 02:03:33 +05:30
|
|
|
if (removedPendingEvents) {
|
|
|
|
this._sendQueue.emitRemovals(removedPendingEvents);
|
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
|
|
|
|
2020-09-10 15:41:43 +05:30
|
|
|
needsAfterSyncCompleted({memberChanges}) {
|
|
|
|
return this._roomEncryption?.needsToShareKeys(memberChanges);
|
|
|
|
}
|
|
|
|
|
2020-09-08 18:08:27 +05:30
|
|
|
/**
|
|
|
|
* Only called if the result of writeSync had `needsAfterSyncCompleted` set.
|
|
|
|
* Can be used to do longer running operations that resulted from the last sync,
|
|
|
|
* like network operations.
|
|
|
|
*/
|
|
|
|
async afterSyncCompleted({memberChanges}) {
|
|
|
|
if (this._roomEncryption) {
|
|
|
|
await this._roomEncryption.shareRoomKeyForMemberChanges(memberChanges, this._hsApi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @package */
|
2020-09-08 18:09:07 +05:30
|
|
|
async start() {
|
|
|
|
if (this._roomEncryption) {
|
|
|
|
try {
|
|
|
|
// if we got interrupted last time sending keys to newly joined members
|
|
|
|
await this._roomEncryption.shareRoomKeyToPendingMembers(this._hsApi);
|
|
|
|
} catch (err) {
|
|
|
|
// we should not throw here
|
|
|
|
console.error(`could not send out pending room keys for room ${this.id}`, err.stack);
|
|
|
|
}
|
|
|
|
}
|
2019-07-27 02:10:39 +05:30
|
|
|
this._sendQueue.resumeSending();
|
|
|
|
}
|
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @package */
|
2020-08-21 21:41:07 +05:30
|
|
|
async load(summary, txn) {
|
2020-08-17 14:18:00 +05:30
|
|
|
try {
|
|
|
|
this._summary.load(summary);
|
2020-09-03 19:06:17 +05:30
|
|
|
if (this._summary.encryption) {
|
2020-09-04 18:58:22 +05:30
|
|
|
this._enableEncryption(this._summary.encryption);
|
2020-09-03 19:06:17 +05:30
|
|
|
}
|
2020-08-21 21:41:07 +05:30
|
|
|
// need to load members for name?
|
2020-08-21 22:33:21 +05:30
|
|
|
if (this._summary.needsHeroes) {
|
2020-08-21 21:41:07 +05:30
|
|
|
this._heroes = new Heroes(this._roomId);
|
|
|
|
const changes = await this._heroes.calculateChanges(this._summary.heroes, [], txn);
|
|
|
|
this._heroes.applyChanges(changes, this._summary);
|
|
|
|
}
|
2020-08-17 14:18:00 +05:30
|
|
|
return this._syncWriter.load(txn);
|
|
|
|
} catch (err) {
|
|
|
|
throw new WrappedError(`Could not load room ${this._roomId}`, err);
|
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
2019-02-27 03:15:58 +05:30
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @public */
|
2019-07-27 02:03:33 +05:30
|
|
|
sendEvent(eventType, content) {
|
2020-03-31 01:03:04 +05:30
|
|
|
return this._sendQueue.enqueueEvent(eventType, content);
|
2019-07-27 02:03:33 +05:30
|
|
|
}
|
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @public */
|
2020-06-27 02:56:24 +05:30
|
|
|
async loadMemberList() {
|
2020-08-19 19:43:47 +05:30
|
|
|
if (this._memberList) {
|
2020-08-31 19:40:18 +05:30
|
|
|
// TODO: also await fetchOrLoadMembers promise here
|
2020-08-19 19:43:47 +05:30
|
|
|
this._memberList.retain();
|
|
|
|
return this._memberList;
|
|
|
|
} else {
|
2020-08-19 20:28:19 +05:30
|
|
|
const members = await fetchOrLoadMembers({
|
2020-08-19 20:14:09 +05:30
|
|
|
summary: this._summary,
|
|
|
|
roomId: this._roomId,
|
|
|
|
hsApi: this._hsApi,
|
|
|
|
storage: this._storage,
|
2020-09-09 13:20:03 +05:30
|
|
|
syncToken: this._getSyncToken(),
|
2020-08-19 20:14:09 +05:30
|
|
|
// to handle race between /members and /sync
|
|
|
|
setChangedMembersMap: map => this._changedMembersDuringSync = map,
|
|
|
|
});
|
2020-08-19 19:43:47 +05:30
|
|
|
this._memberList = new MemberList({
|
|
|
|
members,
|
|
|
|
closeCallback: () => { this._memberList = null; }
|
|
|
|
});
|
|
|
|
return this._memberList;
|
2020-06-27 02:56:24 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 04:10:40 +05:30
|
|
|
/** @public */
|
|
|
|
async fillGap(fragmentEntry, amount) {
|
2020-08-19 19:43:47 +05:30
|
|
|
// TODO move some/all of this out of Room
|
2020-08-17 21:11:10 +05:30
|
|
|
if (fragmentEntry.edgeReached) {
|
|
|
|
return;
|
|
|
|
}
|
2020-03-22 04:10:40 +05:30
|
|
|
const response = await this._hsApi.messages(this._roomId, {
|
|
|
|
from: fragmentEntry.token,
|
|
|
|
dir: fragmentEntry.direction.asApiString(),
|
|
|
|
limit: amount,
|
2020-08-20 18:09:03 +05:30
|
|
|
filter: {
|
|
|
|
lazy_load_members: true,
|
|
|
|
include_redundant_members: true,
|
|
|
|
}
|
2020-03-22 04:10:40 +05:30
|
|
|
}).response();
|
2020-03-22 04:37:37 +05:30
|
|
|
|
2020-09-10 15:39:17 +05:30
|
|
|
const txn = await this._storage.readWriteTxn([
|
2020-03-22 04:37:37 +05:30
|
|
|
this._storage.storeNames.pendingEvents,
|
|
|
|
this._storage.storeNames.timelineEvents,
|
|
|
|
this._storage.storeNames.timelineFragments,
|
2020-09-10 15:39:17 +05:30
|
|
|
]);
|
2020-03-22 04:37:37 +05:30
|
|
|
let removedPendingEvents;
|
2020-03-31 00:16:52 +05:30
|
|
|
let gapResult;
|
2020-03-22 04:37:37 +05:30
|
|
|
try {
|
|
|
|
// detect remote echos of pending messages in the gap
|
|
|
|
removedPendingEvents = this._sendQueue.removeRemoteEchos(response.chunk, txn);
|
|
|
|
// write new events into gap
|
|
|
|
const gapWriter = new GapWriter({
|
|
|
|
roomId: this._roomId,
|
|
|
|
storage: this._storage,
|
2020-09-04 18:58:22 +05:30
|
|
|
fragmentIdComparer: this._fragmentIdComparer,
|
2020-03-22 04:37:37 +05:30
|
|
|
});
|
2020-03-31 00:16:52 +05:30
|
|
|
gapResult = await gapWriter.writeFragmentFill(fragmentEntry, response, txn);
|
2020-03-22 04:37:37 +05:30
|
|
|
} catch (err) {
|
|
|
|
txn.abort();
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
await txn.complete();
|
2020-09-10 15:39:17 +05:30
|
|
|
if (this._roomEncryption) {
|
2020-09-10 20:10:30 +05:30
|
|
|
const decryptRequest = this._decryptEntries(DecryptionSource.Timeline, gapResult.entries);
|
|
|
|
await decryptRequest.complete();
|
2020-09-10 15:39:17 +05:30
|
|
|
}
|
2020-03-31 00:16:52 +05:30
|
|
|
// once txn is committed, update in-memory state & emit events
|
|
|
|
for (const fragment of gapResult.fragments) {
|
|
|
|
this._fragmentIdComparer.add(fragment);
|
|
|
|
}
|
2020-03-22 04:37:37 +05:30
|
|
|
if (removedPendingEvents) {
|
|
|
|
this._sendQueue.emitRemovals(removedPendingEvents);
|
|
|
|
}
|
2020-03-22 04:10:40 +05:30
|
|
|
if (this._timeline) {
|
2020-03-31 00:16:52 +05:30
|
|
|
this._timeline.addGapEntries(gapResult.entries);
|
2020-03-22 04:10:40 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @public */
|
2019-02-27 03:15:58 +05:30
|
|
|
get name() {
|
2020-08-21 21:41:07 +05:30
|
|
|
if (this._heroes) {
|
|
|
|
return this._heroes.roomName;
|
|
|
|
}
|
2019-02-27 03:15:58 +05:30
|
|
|
return this._summary.name;
|
|
|
|
}
|
2019-02-27 03:57:06 +05:30
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @public */
|
2019-02-27 03:57:06 +05:30
|
|
|
get id() {
|
|
|
|
return this._roomId;
|
|
|
|
}
|
2019-02-28 03:20:08 +05:30
|
|
|
|
2020-08-20 21:02:55 +05:30
|
|
|
get avatarUrl() {
|
2020-08-21 21:41:07 +05:30
|
|
|
if (this._summary.avatarUrl) {
|
|
|
|
return this._summary.avatarUrl;
|
|
|
|
} else if (this._heroes) {
|
|
|
|
return this._heroes.roomAvatarUrl;
|
|
|
|
}
|
|
|
|
return null;
|
2020-08-20 21:02:55 +05:30
|
|
|
}
|
|
|
|
|
2020-08-21 15:26:45 +05:30
|
|
|
get lastMessageTimestamp() {
|
|
|
|
return this._summary.lastMessageTimestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
get isUnread() {
|
|
|
|
return this._summary.isUnread;
|
|
|
|
}
|
|
|
|
|
|
|
|
get notificationCount() {
|
|
|
|
return this._summary.notificationCount;
|
|
|
|
}
|
2020-08-21 19:20:32 +05:30
|
|
|
|
|
|
|
get highlightCount() {
|
|
|
|
return this._summary.highlightCount;
|
|
|
|
}
|
2020-08-21 15:26:45 +05:30
|
|
|
|
2020-08-28 00:22:51 +05:30
|
|
|
get isLowPriority() {
|
|
|
|
const tags = this._summary.tags;
|
|
|
|
return !!(tags && tags['m.lowpriority']);
|
|
|
|
}
|
|
|
|
|
2020-08-28 18:06:00 +05:30
|
|
|
get isEncrypted() {
|
|
|
|
return !!this._summary.encryption;
|
|
|
|
}
|
|
|
|
|
2020-08-31 12:23:47 +05:30
|
|
|
get isTrackingMembers() {
|
|
|
|
return this._summary.isTrackingMembers;
|
|
|
|
}
|
|
|
|
|
2020-08-21 18:46:57 +05:30
|
|
|
async _getLastEventId() {
|
|
|
|
const lastKey = this._syncWriter.lastMessageKey;
|
|
|
|
if (lastKey) {
|
|
|
|
const txn = await this._storage.readTxn([
|
|
|
|
this._storage.storeNames.timelineEvents,
|
|
|
|
]);
|
|
|
|
const eventEntry = await txn.timelineEvents.get(this._roomId, lastKey);
|
|
|
|
return eventEntry?.event?.event_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 15:39:17 +05:30
|
|
|
get _isTimelineOpen() {
|
|
|
|
return !!this._timeline;
|
|
|
|
}
|
|
|
|
|
2020-08-21 15:26:10 +05:30
|
|
|
async clearUnread() {
|
2020-08-21 18:46:57 +05:30
|
|
|
if (this.isUnread || this.notificationCount) {
|
2020-08-21 17:41:42 +05:30
|
|
|
const txn = await this._storage.readWriteTxn([
|
|
|
|
this._storage.storeNames.roomSummary,
|
|
|
|
]);
|
|
|
|
let data;
|
|
|
|
try {
|
|
|
|
data = this._summary.writeClearUnread(txn);
|
|
|
|
} catch (err) {
|
|
|
|
txn.abort();
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
await txn.complete();
|
|
|
|
this._summary.applyChanges(data);
|
|
|
|
this.emit("change");
|
|
|
|
this._emitCollectionChange(this);
|
2020-08-21 18:53:25 +05:30
|
|
|
|
|
|
|
try {
|
|
|
|
const lastEventId = await this._getLastEventId();
|
|
|
|
if (lastEventId) {
|
|
|
|
await this._hsApi.receipt(this._roomId, "m.read", lastEventId);
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
// ignore ConnectionError
|
|
|
|
if (err.name !== "ConnectionError") {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
2020-08-21 15:26:10 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-19 20:28:28 +05:30
|
|
|
/** @public */
|
2020-09-10 20:10:30 +05:30
|
|
|
openTimeline() {
|
2019-02-28 03:20:08 +05:30
|
|
|
if (this._timeline) {
|
|
|
|
throw new Error("not dealing with load race here for now");
|
|
|
|
}
|
2020-05-07 22:44:30 +05:30
|
|
|
console.log(`opening the timeline for ${this._roomId}`);
|
2019-02-28 03:20:08 +05:30
|
|
|
this._timeline = new Timeline({
|
|
|
|
roomId: this.id,
|
|
|
|
storage: this._storage,
|
2019-05-12 23:56:03 +05:30
|
|
|
fragmentIdComparer: this._fragmentIdComparer,
|
2019-07-27 02:03:33 +05:30
|
|
|
pendingEvents: this._sendQueue.pendingEvents,
|
2020-05-07 22:44:30 +05:30
|
|
|
closeCallback: () => {
|
|
|
|
console.log(`closing the timeline for ${this._roomId}`);
|
|
|
|
this._timeline = null;
|
2020-09-04 15:39:19 +05:30
|
|
|
if (this._roomEncryption) {
|
|
|
|
this._roomEncryption.notifyTimelineClosed();
|
|
|
|
}
|
2020-05-07 22:44:30 +05:30
|
|
|
},
|
2019-07-29 13:53:15 +05:30
|
|
|
user: this._user,
|
2019-02-28 03:20:08 +05:30
|
|
|
});
|
2020-09-04 18:58:22 +05:30
|
|
|
if (this._roomEncryption) {
|
2020-09-10 15:39:17 +05:30
|
|
|
this._timeline.enableEncryption(this._decryptEntries.bind(this, DecryptionSource.Timeline));
|
2020-09-04 18:58:22 +05:30
|
|
|
}
|
2019-02-28 03:20:08 +05:30
|
|
|
return this._timeline;
|
|
|
|
}
|
2020-05-09 23:32:08 +05:30
|
|
|
|
2020-08-20 19:10:43 +05:30
|
|
|
get mediaRepository() {
|
|
|
|
return this._hsApi.mediaRepository;
|
2020-05-09 23:32:08 +05:30
|
|
|
}
|
2020-08-31 17:41:08 +05:30
|
|
|
|
|
|
|
/** @package */
|
|
|
|
writeIsTrackingMembers(value, txn) {
|
|
|
|
return this._summary.writeIsTrackingMembers(value, txn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @package */
|
|
|
|
applyIsTrackingMembersChanges(changes) {
|
|
|
|
this._summary.applyChanges(changes);
|
|
|
|
}
|
2019-02-21 04:18:16 +05:30
|
|
|
}
|
2019-02-28 03:20:08 +05:30
|
|
|
|
2020-09-10 20:10:30 +05:30
|
|
|
class DecryptionRequest {
|
|
|
|
constructor(decryptFn) {
|
|
|
|
this._cancelled = false;
|
|
|
|
this.preparation = null;
|
|
|
|
this._promise = decryptFn(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
complete() {
|
|
|
|
return this._promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
get cancelled() {
|
|
|
|
return this._cancelled;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
this._cancelled = true;
|
|
|
|
if (this.preparation) {
|
|
|
|
this.preparation.dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|