2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2021-05-21 16:59:29 +02:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
2020-08-05 18:38:55 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-05-07 16:13:49 +02:00
|
|
|
import {SortedArray, MappedList, ConcatList, ObservableArray} from "../../../observable/index.js";
|
2020-09-10 16:40:30 +02:00
|
|
|
import {Disposables} from "../../../utils/Disposables.js";
|
2020-04-20 21:26:39 +02:00
|
|
|
import {Direction} from "./Direction.js";
|
|
|
|
import {TimelineReader} from "./persistence/TimelineReader.js";
|
|
|
|
import {PendingEventEntry} from "./entries/PendingEventEntry.js";
|
2021-03-03 14:53:22 +01:00
|
|
|
import {RoomMember} from "../members/RoomMember.js";
|
2021-05-31 13:52:03 +02:00
|
|
|
import {PowerLevels} from "./PowerLevels.js";
|
2019-02-27 22:50:08 +01:00
|
|
|
|
2020-04-20 21:26:39 +02:00
|
|
|
export class Timeline {
|
2021-03-03 14:53:22 +01:00
|
|
|
constructor({roomId, storage, closeCallback, fragmentIdComparer, pendingEvents, clock}) {
|
2019-02-27 22:50:08 +01:00
|
|
|
this._roomId = roomId;
|
|
|
|
this._storage = storage;
|
|
|
|
this._closeCallback = closeCallback;
|
2019-05-12 20:26:03 +02:00
|
|
|
this._fragmentIdComparer = fragmentIdComparer;
|
2020-09-10 16:40:30 +02:00
|
|
|
this._disposables = new Disposables();
|
2021-05-21 16:59:29 +02:00
|
|
|
this._pendingEvents = pendingEvents;
|
|
|
|
this._clock = clock;
|
|
|
|
this._remoteEntries = null;
|
2021-03-03 14:53:22 +01:00
|
|
|
this._ownMember = null;
|
2019-05-19 20:49:46 +02:00
|
|
|
this._timelineReader = new TimelineReader({
|
|
|
|
roomId: this._roomId,
|
|
|
|
storage: this._storage,
|
|
|
|
fragmentIdComparer: this._fragmentIdComparer
|
|
|
|
});
|
2020-09-10 16:40:30 +02:00
|
|
|
this._readerRequest = null;
|
2021-05-21 16:59:29 +02:00
|
|
|
this._allEntries = null;
|
2021-05-31 13:52:03 +02:00
|
|
|
this._powerLevels = null;
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @package */
|
2021-04-08 16:30:46 +02:00
|
|
|
async load(user, membership, log) {
|
2021-05-31 13:52:03 +02:00
|
|
|
const txn = await this._storage.readTxn(this._timelineReader.readTxnStores.concat(
|
|
|
|
this._storage.storeNames.roomMembers,
|
|
|
|
this._storage.storeNames.roomState
|
|
|
|
));
|
2021-03-03 14:53:22 +01:00
|
|
|
const memberData = await txn.roomMembers.get(this._roomId, user.id);
|
2021-04-08 16:30:46 +02:00
|
|
|
if (memberData) {
|
|
|
|
this._ownMember = new RoomMember(memberData);
|
|
|
|
} else {
|
|
|
|
// this should never happen, as our own join into the room would have
|
|
|
|
// made us receive our own member event, but just to be on the safe side and not crash,
|
|
|
|
// fall back to bare user id
|
|
|
|
this._ownMember = RoomMember.fromUserId(this._roomId, user.id, membership);
|
|
|
|
}
|
2021-03-03 14:53:22 +01:00
|
|
|
// it should be fine to not update the local entries,
|
|
|
|
// as they should only populate once the view subscribes to it
|
|
|
|
// if they are populated already, the sender profile would be empty
|
|
|
|
|
2021-06-02 15:06:30 +02:00
|
|
|
this._powerLevels = await this._loadPowerLevels(txn);
|
2020-09-10 16:40:30 +02:00
|
|
|
// 30 seems to be a good amount to fill the entire screen
|
2021-03-15 12:56:40 +01:00
|
|
|
const readerRequest = this._disposables.track(this._timelineReader.readFromEnd(30, txn, log));
|
2020-09-10 16:40:30 +02:00
|
|
|
try {
|
|
|
|
const entries = await readerRequest.complete();
|
2021-05-21 16:59:29 +02:00
|
|
|
this._setupEntries(entries);
|
2020-09-10 16:40:30 +02:00
|
|
|
} finally {
|
|
|
|
this._disposables.disposeTracked(readerRequest);
|
|
|
|
}
|
2021-06-02 15:06:30 +02:00
|
|
|
// txn should be assumed to have finished here, as decryption will close it.
|
2021-05-31 13:52:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async _loadPowerLevels(txn) {
|
|
|
|
const powerLevelsState = await txn.roomState.get(this._roomId, "m.room.power_levels", "");
|
|
|
|
if (powerLevelsState) {
|
|
|
|
return new PowerLevels({
|
|
|
|
powerLevelEvent: powerLevelsState.event,
|
|
|
|
ownUserId: this._ownMember.userId
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const createState = await txn.roomState.get(this._roomId, "m.room.create", "");
|
2021-06-02 18:41:52 +02:00
|
|
|
if (createState) {
|
|
|
|
return new PowerLevels({
|
|
|
|
createEvent: createState.event,
|
|
|
|
ownUserId: this._ownMember.userId
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return new PowerLevels({ownUserId: this._ownMember.userId});
|
|
|
|
}
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
|
|
|
|
2021-05-21 16:59:29 +02:00
|
|
|
_setupEntries(timelineEntries) {
|
|
|
|
this._remoteEntries = new SortedArray((a, b) => a.compare(b));
|
|
|
|
this._remoteEntries.setManySorted(timelineEntries);
|
|
|
|
if (this._pendingEvents) {
|
|
|
|
this._localEntries = new MappedList(this._pendingEvents, pe => {
|
|
|
|
const pee = new PendingEventEntry({pendingEvent: pe, member: this._ownMember, clock: this._clock});
|
|
|
|
this._applyAndEmitLocalRelationChange(pee.pendingEvent, target => target.addLocalRelation(pee));
|
|
|
|
return pee;
|
|
|
|
}, (pee, params) => {
|
|
|
|
// is sending but redacted, who do we detect that here to remove the relation?
|
|
|
|
pee.notifyUpdate(params);
|
|
|
|
}, pee => {
|
|
|
|
this._applyAndEmitLocalRelationChange(pee.pendingEvent, target => target.removeLocalRelation(pee));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this._localEntries = new ObservableArray();
|
|
|
|
}
|
|
|
|
this._allEntries = new ConcatList(this._remoteEntries, this._localEntries);
|
|
|
|
}
|
|
|
|
|
|
|
|
_applyAndEmitLocalRelationChange(pe, updater) {
|
2021-05-31 10:47:32 +02:00
|
|
|
const updateOrFalse = e => {
|
|
|
|
const params = updater(e);
|
|
|
|
return params ? params : false;
|
|
|
|
};
|
|
|
|
// first, look in local entries based on txn id
|
2021-05-21 16:59:29 +02:00
|
|
|
const foundInLocalEntries = this._localEntries.findAndUpdate(
|
|
|
|
e => e.id === pe.relatedTxnId,
|
2021-05-31 10:47:32 +02:00
|
|
|
updateOrFalse,
|
2021-05-21 16:59:29 +02:00
|
|
|
);
|
2021-05-31 10:47:32 +02:00
|
|
|
// now look in remote entries based on event id
|
2021-05-21 16:59:29 +02:00
|
|
|
if (!foundInLocalEntries && pe.relatedEventId) {
|
2021-05-31 10:47:32 +02:00
|
|
|
this._remoteEntries.findAndUpdate(
|
|
|
|
e => e.id === pe.relatedEventId,
|
|
|
|
updateOrFalse
|
|
|
|
);
|
2021-05-21 16:59:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-03 14:53:22 +01:00
|
|
|
updateOwnMember(member) {
|
|
|
|
this._ownMember = member;
|
|
|
|
}
|
|
|
|
|
2020-09-04 15:28:22 +02:00
|
|
|
replaceEntries(entries) {
|
2021-05-31 16:24:42 +02:00
|
|
|
this._addLocalRelationsToNewRemoteEntries(entries);
|
2020-09-04 15:28:22 +02:00
|
|
|
for (const entry of entries) {
|
2021-05-31 16:24:42 +02:00
|
|
|
this._remoteEntries.update(entry);
|
2020-09-04 15:28:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-31 16:24:42 +02:00
|
|
|
_addLocalRelationsToNewRemoteEntries(entries) {
|
2021-06-02 18:42:46 +02:00
|
|
|
// because it is not safe to iterate a derived observable collection
|
|
|
|
// before it has any subscriptions, we bail out if this isn't
|
|
|
|
// the case yet. This can happen when sync adds or replaces entries
|
|
|
|
// before load has finished and the view has subscribed to the timeline.
|
|
|
|
//
|
|
|
|
// Once the subscription is setup, MappedList will set up the local
|
|
|
|
// relations as needed with _applyAndEmitLocalRelationChange,
|
|
|
|
// so we're not missing anything by bailing out.
|
|
|
|
if (!this._localEntries.hasSubscriptions) {
|
|
|
|
return;
|
|
|
|
}
|
2021-05-21 16:59:29 +02:00
|
|
|
// find any local relations to this new remote event
|
|
|
|
for (const pee of this._localEntries) {
|
|
|
|
// this will work because we set relatedEventId when removing remote echos
|
|
|
|
if (pee.relatedEventId) {
|
2021-05-31 16:24:42 +02:00
|
|
|
const relationTarget = entries.find(e => e.id === pee.relatedEventId);
|
2021-05-21 16:59:29 +02:00
|
|
|
// no need to emit here as this entry is about to be added
|
|
|
|
relationTarget?.addLocalRelation(pee);
|
|
|
|
}
|
|
|
|
}
|
2021-05-31 16:24:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @package */
|
|
|
|
addOrReplaceEntries(newEntries) {
|
|
|
|
this._addLocalRelationsToNewRemoteEntries(newEntries);
|
2019-07-29 19:53:58 +02:00
|
|
|
this._remoteEntries.setManySorted(newEntries);
|
2019-03-09 00:41:06 +01:00
|
|
|
}
|
2020-03-21 23:40:40 +01:00
|
|
|
|
2019-06-01 17:39:23 +02:00
|
|
|
// tries to prepend `amount` entries to the `entries` list.
|
2021-03-02 19:29:55 +01:00
|
|
|
/**
|
|
|
|
* [loadAtTop description]
|
|
|
|
* @param {[type]} amount [description]
|
|
|
|
* @return {boolean} true if the top of the timeline has been reached
|
|
|
|
*
|
|
|
|
*/
|
2019-03-09 00:41:06 +01:00
|
|
|
async loadAtTop(amount) {
|
2020-10-13 13:10:35 +02:00
|
|
|
if (this._disposables.isDisposed) {
|
2021-03-02 19:29:55 +01:00
|
|
|
return true;
|
2020-10-13 13:10:35 +02:00
|
|
|
}
|
2019-07-29 19:58:35 +02:00
|
|
|
const firstEventEntry = this._remoteEntries.array.find(e => !!e.eventType);
|
2019-06-16 17:29:33 +02:00
|
|
|
if (!firstEventEntry) {
|
2021-03-02 19:29:55 +01:00
|
|
|
return true;
|
2019-03-09 00:41:06 +01:00
|
|
|
}
|
2020-09-10 16:40:30 +02:00
|
|
|
const readerRequest = this._disposables.track(this._timelineReader.readFrom(
|
2019-06-16 17:29:33 +02:00
|
|
|
firstEventEntry.asEventKey(),
|
2019-06-02 15:15:26 +02:00
|
|
|
Direction.Backward,
|
|
|
|
amount
|
2020-09-10 16:40:30 +02:00
|
|
|
));
|
|
|
|
try {
|
|
|
|
const entries = await readerRequest.complete();
|
2021-05-27 10:27:44 +02:00
|
|
|
this.addOrReplaceEntries(entries);
|
2021-03-02 19:29:55 +01:00
|
|
|
return entries.length < amount;
|
2020-09-10 16:40:30 +02:00
|
|
|
} finally {
|
|
|
|
this._disposables.disposeTracked(readerRequest);
|
|
|
|
}
|
2019-03-08 20:03:18 +01:00
|
|
|
}
|
|
|
|
|
2020-10-30 15:19:51 +01:00
|
|
|
getByEventId(eventId) {
|
|
|
|
for (let i = 0; i < this._remoteEntries.length; i += 1) {
|
|
|
|
const entry = this._remoteEntries.get(i);
|
|
|
|
if (entry.id === eventId) {
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
}
|
2021-05-21 16:59:29 +02:00
|
|
|
return null;
|
2020-10-30 15:19:51 +01:00
|
|
|
}
|
|
|
|
|
2019-02-27 22:50:08 +01:00
|
|
|
/** @public */
|
|
|
|
get entries() {
|
2019-07-29 19:53:58 +02:00
|
|
|
return this._allEntries;
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
|
|
|
|
2021-03-01 22:30:33 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @return {Array<EventEntry>} remote event entries, should not be modified
|
|
|
|
*/
|
|
|
|
get remoteEntries() {
|
|
|
|
return this._remoteEntries.array;
|
|
|
|
}
|
|
|
|
|
2019-02-27 22:50:08 +01:00
|
|
|
/** @public */
|
2020-09-10 17:43:01 +02:00
|
|
|
dispose() {
|
2020-05-04 22:21:56 +02:00
|
|
|
if (this._closeCallback) {
|
2020-09-10 17:43:01 +02:00
|
|
|
this._disposables.dispose();
|
2020-05-04 22:21:56 +02:00
|
|
|
this._closeCallback();
|
|
|
|
this._closeCallback = null;
|
|
|
|
}
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
2020-09-04 15:28:22 +02:00
|
|
|
|
2021-05-31 13:52:03 +02:00
|
|
|
/** @internal */
|
2020-09-04 15:28:22 +02:00
|
|
|
enableEncryption(decryptEntries) {
|
|
|
|
this._timelineReader.enableEncryption(decryptEntries);
|
|
|
|
}
|
2021-05-31 13:52:03 +02:00
|
|
|
|
|
|
|
get powerLevels() {
|
|
|
|
return this._powerLevels;
|
|
|
|
}
|
2021-05-31 15:18:44 +02:00
|
|
|
|
|
|
|
get me() {
|
|
|
|
return this._ownMember;
|
|
|
|
}
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
2021-06-02 18:41:03 +02:00
|
|
|
|
|
|
|
import {FragmentIdComparer} from "./FragmentIdComparer.js";
|
|
|
|
import {Clock as MockClock} from "../../../mocks/Clock.js";
|
|
|
|
import {createMockStorage} from "../../../mocks/Storage.js";
|
|
|
|
import {createEvent, withTextBody, withSender} from "../../../mocks/event.js";
|
|
|
|
import {NullLogItem} from "../../../logging/NullLogger.js";
|
|
|
|
import {EventEntry} from "./entries/EventEntry.js";
|
|
|
|
import {User} from "../../User.js";
|
|
|
|
import {PendingEvent} from "../sending/PendingEvent.js";
|
|
|
|
|
|
|
|
export function tests() {
|
|
|
|
const fragmentIdComparer = new FragmentIdComparer([]);
|
|
|
|
const roomId = "$abc";
|
|
|
|
return {
|
|
|
|
"adding or replacing entries before subscribing to entries does not loose local relations": async assert => {
|
|
|
|
const pendingEvents = new ObservableArray();
|
|
|
|
const timeline = new Timeline({
|
|
|
|
roomId,
|
|
|
|
storage: await createMockStorage(),
|
|
|
|
closeCallback: () => {},
|
|
|
|
fragmentIdComparer,
|
|
|
|
pendingEvents,
|
|
|
|
clock: new MockClock(),
|
|
|
|
});
|
|
|
|
// 1. load timeline
|
|
|
|
await timeline.load(new User("@alice:hs.tld"), "join", new NullLogItem());
|
|
|
|
// 2. test replaceEntries and addOrReplaceEntries don't fail
|
|
|
|
const event1 = withTextBody("hi!", withSender("@bob:hs.tld", createEvent("m.room.message", "!abc")));
|
|
|
|
const entry1 = new EventEntry({event: event1, fragmentId: 1, eventIndex: 1}, fragmentIdComparer);
|
|
|
|
timeline.replaceEntries([entry1]);
|
|
|
|
const event2 = withTextBody("hi bob!", withSender("@alice:hs.tld", createEvent("m.room.message", "!def")));
|
|
|
|
const entry2 = new EventEntry({event: event2, fragmentId: 1, eventIndex: 2}, fragmentIdComparer);
|
|
|
|
timeline.addOrReplaceEntries([entry2]);
|
|
|
|
// 3. add local relation (redaction)
|
|
|
|
pendingEvents.append(new PendingEvent({data: {
|
|
|
|
roomId,
|
|
|
|
queueIndex: 1,
|
|
|
|
eventType: "m.room.redaction",
|
|
|
|
txnId: "t123",
|
|
|
|
content: {},
|
|
|
|
relatedEventId: event2.event_id
|
|
|
|
}}));
|
|
|
|
// 4. subscribe (it's now safe to iterate timeline.entries)
|
|
|
|
timeline.entries.subscribe({});
|
|
|
|
// 5. check the local relation got correctly aggregated
|
|
|
|
assert.equal(Array.from(timeline.entries)[0].isRedacting, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|