forked from mystiq/hydrogen-web
147 lines
4.1 KiB
JavaScript
147 lines
4.1 KiB
JavaScript
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
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 {getPrevContentFromStateEvent} from "../common.js";
|
|
|
|
export const EVENT_TYPE = "m.room.member";
|
|
|
|
export class RoomMember {
|
|
constructor(data) {
|
|
this._data = data;
|
|
}
|
|
|
|
static fromUserId(roomId, userId, membership) {
|
|
return new RoomMember({roomId, userId, membership});
|
|
}
|
|
|
|
static fromMemberEvent(roomId, memberEvent) {
|
|
const userId = memberEvent?.state_key;
|
|
if (typeof userId !== "string") {
|
|
return;
|
|
}
|
|
const content = memberEvent.content;
|
|
const prevContent = getPrevContentFromStateEvent(memberEvent);
|
|
const membership = content?.membership;
|
|
// fall back to prev_content for these as synapse doesn't (always?)
|
|
// put them on content for "leave" memberships
|
|
const displayName = content?.displayname || prevContent?.displayname;
|
|
const avatarUrl = content?.avatar_url || prevContent?.avatar_url;
|
|
return this._validateAndCreateMember(roomId, userId, membership, displayName, avatarUrl);
|
|
}
|
|
/**
|
|
* Creates a (historical) member from a member event that is the next member event
|
|
* after the point in time where we need a member for. This will use `prev_content`.
|
|
*/
|
|
static fromReplacingMemberEvent(roomId, memberEvent) {
|
|
const userId = memberEvent && memberEvent.state_key;
|
|
if (typeof userId !== "string") {
|
|
return;
|
|
}
|
|
const content = getPrevContentFromStateEvent(memberEvent);
|
|
return this._validateAndCreateMember(roomId, userId,
|
|
content?.membership,
|
|
content?.displayname,
|
|
content?.avatar_url
|
|
);
|
|
}
|
|
|
|
static _validateAndCreateMember(roomId, userId, membership, displayName, avatarUrl) {
|
|
if (typeof membership !== "string") {
|
|
return;
|
|
}
|
|
return new RoomMember({
|
|
roomId,
|
|
userId,
|
|
membership,
|
|
avatarUrl,
|
|
displayName,
|
|
});
|
|
}
|
|
|
|
get membership() {
|
|
return this._data.membership;
|
|
}
|
|
|
|
/**
|
|
* @return {String?} the display name, if any
|
|
*/
|
|
get displayName() {
|
|
return this._data.displayName;
|
|
}
|
|
|
|
/**
|
|
* @return {String} the display name or userId
|
|
*/
|
|
get name() {
|
|
return this._data.displayName || this._data.userId;
|
|
}
|
|
|
|
/**
|
|
* @return {String?} the avatar mxc url, if any
|
|
*/
|
|
get avatarUrl() {
|
|
return this._data.avatarUrl;
|
|
}
|
|
|
|
get roomId() {
|
|
return this._data.roomId;
|
|
}
|
|
|
|
get userId() {
|
|
return this._data.userId;
|
|
}
|
|
|
|
serialize() {
|
|
return this._data;
|
|
}
|
|
|
|
equals(other) {
|
|
const data = this._data;
|
|
const otherData = other._data;
|
|
return data.roomId === otherData.roomId &&
|
|
data.userId === otherData.userId &&
|
|
data.membership === otherData.membership &&
|
|
data.displayName === otherData.displayName &&
|
|
data.avatarUrl === otherData.avatarUrl;
|
|
}
|
|
}
|
|
|
|
export class MemberChange {
|
|
constructor(member, previousMembership) {
|
|
this.member = member;
|
|
this.previousMembership = previousMembership;
|
|
}
|
|
|
|
get roomId() {
|
|
return this.member.roomId;
|
|
}
|
|
|
|
get userId() {
|
|
return this.member.userId;
|
|
}
|
|
|
|
get membership() {
|
|
return this.member.membership;
|
|
}
|
|
|
|
get hasLeft() {
|
|
return this.previousMembership === "join" && this.membership !== "join";
|
|
}
|
|
|
|
get hasJoined() {
|
|
return this.previousMembership !== "join" && this.membership === "join";
|
|
}
|
|
}
|