2021-05-10 22:11:43 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {reduceStateEvents} from "./RoomSummary.js";
|
|
|
|
import {BaseRoom} from "./BaseRoom.js";
|
2021-05-12 15:49:05 +05:30
|
|
|
import {RoomMember, EVENT_TYPE as MEMBER_EVENT_TYPE} from "./members/RoomMember.js";
|
2021-05-10 22:11:43 +05:30
|
|
|
|
|
|
|
export class ArchivedRoom extends BaseRoom {
|
|
|
|
constructor(options) {
|
|
|
|
super(options);
|
2021-05-11 19:39:58 +05:30
|
|
|
// archived rooms are reference counted,
|
|
|
|
// as they are not kept in memory when not needed
|
|
|
|
this._releaseCallback = options.releaseCallback;
|
2021-05-12 19:08:54 +05:30
|
|
|
this._forgetCallback = options.forgetCallback;
|
2021-05-11 19:39:58 +05:30
|
|
|
this._retentionCount = 1;
|
2021-05-11 16:37:31 +05:30
|
|
|
/**
|
|
|
|
Some details from our own member event when being kicked or banned.
|
|
|
|
We can't get this from the member store, because we don't store the reason field there.
|
|
|
|
*/
|
2021-05-10 22:11:43 +05:30
|
|
|
this._kickDetails = null;
|
2021-05-11 16:37:11 +05:30
|
|
|
this._kickedBy = null;
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
|
2021-05-11 19:39:58 +05:30
|
|
|
retain() {
|
|
|
|
this._retentionCount += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
release() {
|
|
|
|
this._retentionCount -= 1;
|
|
|
|
if (this._retentionCount === 0) {
|
|
|
|
this._releaseCallback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 22:11:43 +05:30
|
|
|
async _getKickAuthor(sender, txn) {
|
|
|
|
const senderMember = await txn.roomMembers.get(this.id, sender);
|
|
|
|
if (senderMember) {
|
|
|
|
return new RoomMember(senderMember);
|
|
|
|
} else {
|
|
|
|
return RoomMember.fromUserId(this.id, sender, "join");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async load(archivedRoomSummary, txn, log) {
|
|
|
|
const {summary, kickDetails} = archivedRoomSummary;
|
|
|
|
this._kickDetails = kickDetails;
|
|
|
|
if (this._kickDetails) {
|
2021-05-11 16:37:11 +05:30
|
|
|
this._kickedBy = await this._getKickAuthor(this._kickDetails.sender, txn);
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
return super.load(summary, txn, log);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @package */
|
|
|
|
async writeSync(joinedSummaryData, roomResponse, membership, txn, log) {
|
|
|
|
log.set("id", this.id);
|
|
|
|
if (membership === "leave") {
|
|
|
|
const newKickDetails = findKickDetails(roomResponse, this._user.id);
|
|
|
|
if (newKickDetails || joinedSummaryData) {
|
|
|
|
const kickDetails = newKickDetails || this._kickDetails;
|
2021-05-11 16:37:11 +05:30
|
|
|
let kickedBy;
|
2021-05-10 22:11:43 +05:30
|
|
|
if (newKickDetails) {
|
2021-05-11 16:37:11 +05:30
|
|
|
kickedBy = await this._getKickAuthor(newKickDetails.sender, txn);
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
const summaryData = joinedSummaryData || this._summary.data;
|
|
|
|
txn.archivedRoomSummary.set({
|
|
|
|
summary: summaryData.serialize(),
|
|
|
|
kickDetails,
|
|
|
|
});
|
2021-05-11 16:37:11 +05:30
|
|
|
return {kickDetails, kickedBy, summaryData};
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
} else if (membership === "join") {
|
|
|
|
txn.archivedRoomSummary.remove(this.id);
|
|
|
|
}
|
|
|
|
// always return object
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package
|
|
|
|
* Called with the changes returned from `writeSync` to apply them and emit changes.
|
|
|
|
* No storage or network operations should be done here.
|
|
|
|
*/
|
2021-05-11 16:37:11 +05:30
|
|
|
afterSync({summaryData, kickDetails, kickedBy}, log) {
|
2021-05-11 16:35:02 +05:30
|
|
|
log.set("id", this.id);
|
2021-05-10 22:11:43 +05:30
|
|
|
if (summaryData) {
|
|
|
|
this._summary.applyChanges(summaryData);
|
|
|
|
}
|
|
|
|
if (kickDetails) {
|
|
|
|
this._kickDetails = kickDetails;
|
|
|
|
}
|
2021-05-11 16:37:11 +05:30
|
|
|
if (kickedBy) {
|
|
|
|
this._kickedBy = kickedBy;
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
this._emitUpdate();
|
|
|
|
}
|
|
|
|
|
2021-05-11 16:37:31 +05:30
|
|
|
get isKicked() {
|
|
|
|
return this._kickDetails?.membership === "leave";
|
|
|
|
}
|
|
|
|
|
|
|
|
get isBanned() {
|
|
|
|
return this._kickDetails?.membership === "ban";
|
|
|
|
}
|
|
|
|
|
|
|
|
get kickedBy() {
|
|
|
|
return this._kickedBy;
|
|
|
|
}
|
|
|
|
|
|
|
|
get kickReason() {
|
|
|
|
return this._kickDetails?.reason;
|
|
|
|
}
|
|
|
|
|
|
|
|
isArchived() {
|
|
|
|
return true;
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
|
2021-05-12 19:08:54 +05:30
|
|
|
forget(log = null) {
|
|
|
|
return this._platform.logger.wrapOrRun(log, "forget room", async log => {
|
|
|
|
log.set("id", this.id);
|
|
|
|
await this._hsApi.forget(this.id, {log}).response();
|
|
|
|
const storeNames = this._storage.storeNames;
|
|
|
|
const txn = await this._storage.readWriteTxn([
|
|
|
|
storeNames.roomState,
|
|
|
|
storeNames.archivedRoomSummary,
|
|
|
|
storeNames.roomMembers,
|
|
|
|
storeNames.timelineEvents,
|
|
|
|
storeNames.timelineFragments,
|
2021-09-30 13:19:45 +05:30
|
|
|
storeNames.timelineRelations,
|
2021-05-12 19:08:54 +05:30
|
|
|
storeNames.pendingEvents,
|
|
|
|
storeNames.inboundGroupSessions,
|
|
|
|
storeNames.groupSessionDecryptions,
|
|
|
|
storeNames.operations,
|
|
|
|
]);
|
|
|
|
|
|
|
|
txn.roomState.removeAllForRoom(this.id);
|
|
|
|
txn.archivedRoomSummary.remove(this.id);
|
|
|
|
txn.roomMembers.removeAllForRoom(this.id);
|
|
|
|
txn.timelineEvents.removeAllForRoom(this.id);
|
|
|
|
txn.timelineFragments.removeAllForRoom(this.id);
|
2021-09-30 13:19:45 +05:30
|
|
|
txn.timelineRelations.removeAllForRoom(this.id);
|
2021-05-12 19:08:54 +05:30
|
|
|
txn.pendingEvents.removeAllForRoom(this.id);
|
|
|
|
txn.inboundGroupSessions.removeAllForRoom(this.id);
|
|
|
|
txn.groupSessionDecryptions.removeAllForRoom(this.id);
|
|
|
|
await txn.operations.removeAllForScope(this.id);
|
|
|
|
|
|
|
|
await txn.complete();
|
2021-05-10 22:11:43 +05:30
|
|
|
|
2021-05-12 19:08:54 +05:30
|
|
|
this._retentionCount = 0;
|
|
|
|
this._releaseCallback();
|
|
|
|
|
|
|
|
this._forgetCallback(this.id);
|
|
|
|
});
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
2021-05-18 14:37:46 +05:30
|
|
|
|
|
|
|
join(log = null) {
|
|
|
|
return this._platform.logger.wrapOrRun(log, "rejoin archived room", async log => {
|
|
|
|
await this._hsApi.join(this.id, {log}).response();
|
|
|
|
});
|
|
|
|
}
|
2021-05-10 22:11:43 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
function findKickDetails(roomResponse, ownUserId) {
|
|
|
|
const kickEvent = reduceStateEvents(roomResponse, (kickEvent, event) => {
|
2021-05-12 15:49:05 +05:30
|
|
|
if (event.type === MEMBER_EVENT_TYPE) {
|
2021-05-10 22:11:43 +05:30
|
|
|
// did we get kicked?
|
|
|
|
if (event.state_key === ownUserId && event.sender !== event.state_key) {
|
|
|
|
kickEvent = event;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return kickEvent;
|
|
|
|
}, null);
|
|
|
|
if (kickEvent) {
|
|
|
|
return {
|
|
|
|
// this is different from the room membership in the sync section, which can only be leave
|
|
|
|
membership: kickEvent.content?.membership, // could be leave or ban
|
|
|
|
reason: kickEvent.content?.reason,
|
|
|
|
sender: kickEvent.sender,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function tests() {
|
|
|
|
function createMemberEvent(sender, target, membership, reason) {
|
|
|
|
return {
|
|
|
|
sender,
|
|
|
|
state_key: target,
|
|
|
|
type: "m.room.member",
|
|
|
|
content: { reason, membership }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
const bob = "@bob:hs.tld";
|
|
|
|
const alice = "@alice:hs.tld";
|
|
|
|
|
|
|
|
return {
|
|
|
|
"ban/kick sets kickDetails from state event": assert => {
|
|
|
|
const reason = "Bye!";
|
|
|
|
const leaveEvent = createMemberEvent(alice, bob, "ban", reason);
|
|
|
|
const kickDetails = findKickDetails({state: {events: [leaveEvent]}}, bob);
|
|
|
|
assert.equal(kickDetails.membership, "ban");
|
|
|
|
assert.equal(kickDetails.reason, reason);
|
|
|
|
assert.equal(kickDetails.sender, alice);
|
|
|
|
},
|
|
|
|
"ban/kick sets kickDetails from timeline state event, taking precedence over state": assert => {
|
|
|
|
const reason = "Bye!";
|
|
|
|
const inviteEvent = createMemberEvent(alice, bob, "invite");
|
|
|
|
const leaveEvent = createMemberEvent(alice, bob, "ban", reason);
|
|
|
|
const kickDetails = findKickDetails({
|
|
|
|
state: { events: [inviteEvent] },
|
|
|
|
timeline: {events: [leaveEvent] }
|
|
|
|
}, bob);
|
|
|
|
assert.equal(kickDetails.membership, "ban");
|
|
|
|
assert.equal(kickDetails.reason, reason);
|
|
|
|
assert.equal(kickDetails.sender, alice);
|
|
|
|
},
|
|
|
|
"leaving without being kicked doesn't produce kickDetails": assert => {
|
|
|
|
const leaveEvent = createMemberEvent(bob, bob, "leave");
|
|
|
|
const kickDetails = findKickDetails({state: {events: [leaveEvent]}}, bob);
|
|
|
|
assert.equal(kickDetails, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|