mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-11 17:27:20 +03:00
300 lines
11 KiB
TypeScript
300 lines
11 KiB
TypeScript
/*
|
|
Copyright 2019 - 2021 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 { EventStatus, MatrixEvent } from 'matrix-js-sdk/src/models/event';
|
|
import { EventType, EVENT_VISIBILITY_CHANGE_TYPE, MsgType, RelationType } from "matrix-js-sdk/src/@types/event";
|
|
import { MatrixClient } from 'matrix-js-sdk/src/client';
|
|
import { logger } from 'matrix-js-sdk/src/logger';
|
|
import { LOCATION_EVENT_TYPE } from 'matrix-js-sdk/src/@types/location';
|
|
import { M_POLL_START } from "matrix-events-sdk";
|
|
|
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
|
import shouldHideEvent from "../shouldHideEvent";
|
|
import { getHandlerTile, haveTileForEvent } from "../components/views/rooms/EventTile";
|
|
import SettingsStore from "../settings/SettingsStore";
|
|
|
|
/**
|
|
* Returns whether an event should allow actions like reply, reactions, edit, etc.
|
|
* which effectively checks whether it's a regular message that has been sent and that we
|
|
* can display.
|
|
*
|
|
* @param {MatrixEvent} mxEvent The event to check
|
|
* @returns {boolean} true if actionable
|
|
*/
|
|
export function isContentActionable(mxEvent: MatrixEvent): boolean {
|
|
const { status: eventStatus } = mxEvent;
|
|
|
|
// status is SENT before remote-echo, null after
|
|
const isSent = !eventStatus || eventStatus === EventStatus.SENT;
|
|
|
|
if (isSent && !mxEvent.isRedacted()) {
|
|
if (mxEvent.getType() === 'm.room.message') {
|
|
const content = mxEvent.getContent();
|
|
if (content.msgtype && content.msgtype !== 'm.bad.encrypted' && content.hasOwnProperty('body')) {
|
|
return true;
|
|
}
|
|
} else if (
|
|
mxEvent.getType() === 'm.sticker' ||
|
|
M_POLL_START.matches(mxEvent.getType())
|
|
) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
export function canEditContent(mxEvent: MatrixEvent): boolean {
|
|
if (mxEvent.status === EventStatus.CANCELLED ||
|
|
mxEvent.getType() !== EventType.RoomMessage ||
|
|
mxEvent.isRedacted() ||
|
|
mxEvent.isRelation(RelationType.Replace) ||
|
|
mxEvent.getSender() !== MatrixClientPeg.get().getUserId()
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
const { msgtype, body } = mxEvent.getOriginalContent();
|
|
return (msgtype === MsgType.Text || msgtype === MsgType.Emote) && body && typeof body === 'string';
|
|
}
|
|
|
|
export function canEditOwnEvent(mxEvent: MatrixEvent): boolean {
|
|
// for now we only allow editing
|
|
// your own events. So this just call through
|
|
// In the future though, moderators will be able to
|
|
// edit other people's messages as well but we don't
|
|
// want findEditableEvent to return other people's events
|
|
// hence this method.
|
|
return canEditContent(mxEvent);
|
|
}
|
|
|
|
const MAX_JUMP_DISTANCE = 100;
|
|
export function findEditableEvent({
|
|
events,
|
|
isForward,
|
|
fromEventId,
|
|
}: {
|
|
events: MatrixEvent[];
|
|
isForward: boolean;
|
|
fromEventId?: string;
|
|
}): MatrixEvent {
|
|
const maxIdx = events.length - 1;
|
|
const inc = isForward ? 1 : -1;
|
|
const beginIdx = isForward ? 0 : maxIdx;
|
|
let endIdx = isForward ? maxIdx : 0;
|
|
if (!fromEventId) {
|
|
endIdx = Math.min(Math.max(0, beginIdx + (inc * MAX_JUMP_DISTANCE)), maxIdx);
|
|
}
|
|
let foundFromEventId = !fromEventId;
|
|
for (let i = beginIdx; i !== (endIdx + inc); i += inc) {
|
|
const e = events[i];
|
|
// find start event first
|
|
if (!foundFromEventId && e.getId() === fromEventId) {
|
|
foundFromEventId = true;
|
|
// don't look further than MAX_JUMP_DISTANCE events from `fromEventId`
|
|
// to not iterate potentially 1000nds of events on key up/down
|
|
endIdx = Math.min(Math.max(0, i + (inc * MAX_JUMP_DISTANCE)), maxIdx);
|
|
} else if (foundFromEventId && !shouldHideEvent(e) && canEditOwnEvent(e)) {
|
|
// otherwise look for editable event
|
|
return e;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* How we should render a message depending on its moderation state.
|
|
*/
|
|
enum MessageModerationState {
|
|
/**
|
|
* The message is visible to all.
|
|
*/
|
|
VISIBLE_FOR_ALL = "VISIBLE_FOR_ALL",
|
|
/**
|
|
* The message is hidden pending moderation and we're not a user who should
|
|
* see it nevertheless.
|
|
*/
|
|
HIDDEN_TO_CURRENT_USER = "HIDDEN_TO_CURRENT_USER",
|
|
/**
|
|
* The message is hidden pending moderation and we're either the author of
|
|
* the message or a moderator. In either case, we need to see the message
|
|
* with a marker.
|
|
*/
|
|
SEE_THROUGH_FOR_CURRENT_USER = "SEE_THROUGH_FOR_CURRENT_USER",
|
|
}
|
|
|
|
/**
|
|
* Determine whether a message should be displayed as hidden pending moderation.
|
|
*
|
|
* If MSC3531 is deactivated in settings, all messages are considered visible
|
|
* to all.
|
|
*/
|
|
export function getMessageModerationState(mxEvent: MatrixEvent): MessageModerationState {
|
|
if (!SettingsStore.getValue("feature_msc3531_hide_messages_pending_moderation")) {
|
|
return MessageModerationState.VISIBLE_FOR_ALL;
|
|
}
|
|
const visibility = mxEvent.messageVisibility();
|
|
if (visibility.visible) {
|
|
return MessageModerationState.VISIBLE_FOR_ALL;
|
|
}
|
|
|
|
// At this point, we know that the message is marked as hidden
|
|
// pending moderation. However, if we're the author or a moderator,
|
|
// we still need to display it.
|
|
|
|
const client = MatrixClientPeg.get();
|
|
if (mxEvent.sender?.userId === client.getUserId()) {
|
|
// We're the author, show the message.
|
|
return MessageModerationState.SEE_THROUGH_FOR_CURRENT_USER;
|
|
}
|
|
|
|
const room = client.getRoom(mxEvent.getRoomId());
|
|
if (EVENT_VISIBILITY_CHANGE_TYPE.name
|
|
&& room.currentState.maySendStateEvent(EVENT_VISIBILITY_CHANGE_TYPE.name, client.getUserId())
|
|
) {
|
|
// We're a moderator (as indicated by prefixed event name), show the message.
|
|
return MessageModerationState.SEE_THROUGH_FOR_CURRENT_USER;
|
|
}
|
|
if (EVENT_VISIBILITY_CHANGE_TYPE.altName
|
|
&& room.currentState.maySendStateEvent(EVENT_VISIBILITY_CHANGE_TYPE.altName, client.getUserId())
|
|
) {
|
|
// We're a moderator (as indicated by unprefixed event name), show the message.
|
|
return MessageModerationState.SEE_THROUGH_FOR_CURRENT_USER;
|
|
}
|
|
// For everybody else, hide the message.
|
|
return MessageModerationState.HIDDEN_TO_CURRENT_USER;
|
|
}
|
|
|
|
export function getEventDisplayInfo(mxEvent: MatrixEvent, hideEvent?: boolean): {
|
|
isInfoMessage: boolean;
|
|
tileHandler: string;
|
|
isBubbleMessage: boolean;
|
|
isLeftAlignedBubbleMessage: boolean;
|
|
noBubbleEvent: boolean;
|
|
isSeeingThroughMessageHiddenForModeration: boolean;
|
|
} {
|
|
const content = mxEvent.getContent();
|
|
const msgtype = content.msgtype;
|
|
const eventType = mxEvent.getType();
|
|
|
|
let isSeeingThroughMessageHiddenForModeration = false;
|
|
let tileHandler;
|
|
if (SettingsStore.getValue("feature_msc3531_hide_messages_pending_moderation")) {
|
|
switch (getMessageModerationState(mxEvent)) {
|
|
case MessageModerationState.VISIBLE_FOR_ALL:
|
|
// Default behavior, nothing to do.
|
|
break;
|
|
case MessageModerationState.HIDDEN_TO_CURRENT_USER:
|
|
// Hide message.
|
|
tileHandler = "messages.HiddenBody";
|
|
break;
|
|
case MessageModerationState.SEE_THROUGH_FOR_CURRENT_USER:
|
|
// Show message with a marker.
|
|
isSeeingThroughMessageHiddenForModeration = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!tileHandler) {
|
|
tileHandler = getHandlerTile(mxEvent);
|
|
}
|
|
|
|
// Info messages are basically information about commands processed on a room
|
|
let isBubbleMessage = (
|
|
eventType.startsWith("m.key.verification") ||
|
|
(eventType === EventType.RoomMessage && msgtype?.startsWith("m.key.verification")) ||
|
|
(eventType === EventType.RoomCreate) ||
|
|
(eventType === EventType.RoomEncryption) ||
|
|
(tileHandler === "messages.MJitsiWidgetEvent")
|
|
);
|
|
const isLeftAlignedBubbleMessage = (
|
|
!isBubbleMessage &&
|
|
eventType === EventType.CallInvite
|
|
);
|
|
let isInfoMessage = (
|
|
!isBubbleMessage &&
|
|
!isLeftAlignedBubbleMessage &&
|
|
eventType !== EventType.RoomMessage &&
|
|
eventType !== EventType.Sticker &&
|
|
eventType !== EventType.RoomCreate &&
|
|
!M_POLL_START.matches(eventType)
|
|
);
|
|
// Some non-info messages want to be rendered in the appropriate bubble column but without the bubble background
|
|
const noBubbleEvent = (
|
|
(eventType === EventType.RoomMessage && msgtype === MsgType.Emote) ||
|
|
M_POLL_START.matches(eventType) ||
|
|
LOCATION_EVENT_TYPE.matches(eventType) ||
|
|
(
|
|
eventType === EventType.RoomMessage &&
|
|
LOCATION_EVENT_TYPE.matches(msgtype)
|
|
)
|
|
);
|
|
|
|
// If we're showing hidden events in the timeline, we should use the
|
|
// source tile when there's no regular tile for an event and also for
|
|
// replace relations (which otherwise would display as a confusing
|
|
// duplicate of the thing they are replacing).
|
|
if ((hideEvent || !haveTileForEvent(mxEvent)) && SettingsStore.getValue("showHiddenEventsInTimeline")) {
|
|
tileHandler = "messages.ViewSourceEvent";
|
|
isBubbleMessage = false;
|
|
// Reuse info message avatar and sender profile styling
|
|
isInfoMessage = true;
|
|
}
|
|
|
|
return {
|
|
tileHandler,
|
|
isInfoMessage,
|
|
isBubbleMessage,
|
|
isLeftAlignedBubbleMessage,
|
|
noBubbleEvent,
|
|
isSeeingThroughMessageHiddenForModeration,
|
|
};
|
|
}
|
|
|
|
export function isVoiceMessage(mxEvent: MatrixEvent): boolean {
|
|
const content = mxEvent.getContent();
|
|
// MSC2516 is a legacy identifier. See https://github.com/matrix-org/matrix-doc/pull/3245
|
|
return (
|
|
!!content['org.matrix.msc2516.voice'] ||
|
|
!!content['org.matrix.msc3245.voice']
|
|
);
|
|
}
|
|
|
|
export async function fetchInitialEvent(
|
|
client: MatrixClient,
|
|
roomId: string,
|
|
eventId: string): Promise<MatrixEvent | null> {
|
|
let initialEvent: MatrixEvent;
|
|
|
|
try {
|
|
const eventData = await client.fetchRoomEvent(roomId, eventId);
|
|
initialEvent = new MatrixEvent(eventData);
|
|
} catch (e) {
|
|
logger.warn("Could not find initial event: " + eventId);
|
|
initialEvent = null;
|
|
}
|
|
|
|
if (initialEvent?.isThreadRelation) {
|
|
try {
|
|
const rootEventData = await client.fetchRoomEvent(roomId, initialEvent.threadRootId);
|
|
const rootEvent = new MatrixEvent(rootEventData);
|
|
const room = client.getRoom(roomId);
|
|
room.createThread(rootEvent);
|
|
} catch (e) {
|
|
logger.warn("Could not find root event: " + initialEvent.threadRootId);
|
|
}
|
|
}
|
|
|
|
return initialEvent;
|
|
}
|