2019-05-01 15:58:32 +03:00
|
|
|
/*
|
2021-06-22 19:22:38 +03:00
|
|
|
Copyright 2019 - 2021 The Matrix.org Foundation C.I.C.
|
2019-05-01 15:58:32 +03: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-06-22 19:22:38 +03:00
|
|
|
import { Room } from 'matrix-js-sdk/src/models/room';
|
|
|
|
import { MatrixEvent, EventStatus } from 'matrix-js-sdk/src/models/event';
|
|
|
|
|
|
|
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
2019-05-24 15:41:24 +03:00
|
|
|
import shouldHideEvent from "../shouldHideEvent";
|
2021-06-22 19:22:38 +03:00
|
|
|
|
2019-05-01 15:58:32 +03:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2021-06-22 19:22:38 +03:00
|
|
|
export function isContentActionable(mxEvent: MatrixEvent): boolean {
|
2019-05-01 15:58:32 +03:00
|
|
|
const { status: eventStatus } = mxEvent;
|
|
|
|
|
|
|
|
// status is SENT before remote-echo, null after
|
|
|
|
const isSent = !eventStatus || eventStatus === EventStatus.SENT;
|
|
|
|
|
2020-05-23 10:43:15 +03:00
|
|
|
if (isSent && !mxEvent.isRedacted()) {
|
2020-03-27 03:50:41 +03:00
|
|
|
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') {
|
2019-05-01 15:58:32 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-15 17:53:49 +03:00
|
|
|
|
2021-06-22 19:22:38 +03:00
|
|
|
export function canEditContent(mxEvent: MatrixEvent): boolean {
|
2020-03-07 00:23:20 +03:00
|
|
|
if (mxEvent.status === EventStatus.CANCELLED || mxEvent.getType() !== "m.room.message" || mxEvent.isRedacted()) {
|
2019-06-14 12:01:34 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const content = mxEvent.getOriginalContent();
|
2021-06-29 15:11:58 +03:00
|
|
|
const { msgtype } = content;
|
2019-06-14 12:01:34 +03:00
|
|
|
return (msgtype === "m.text" || msgtype === "m.emote") &&
|
2019-11-06 14:44:32 +03:00
|
|
|
content.body && typeof content.body === 'string' &&
|
2019-05-15 17:53:49 +03:00
|
|
|
mxEvent.getSender() === MatrixClientPeg.get().getUserId();
|
|
|
|
}
|
2019-05-24 15:41:24 +03:00
|
|
|
|
2021-06-22 19:22:38 +03:00
|
|
|
export function canEditOwnEvent(mxEvent: MatrixEvent): boolean {
|
2019-05-27 17:41:03 +03:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2019-05-27 17:45:26 +03:00
|
|
|
const MAX_JUMP_DISTANCE = 100;
|
2021-06-22 19:22:38 +03:00
|
|
|
export function findEditableEvent(room: Room, isForward: boolean, fromEventId: string = undefined): MatrixEvent {
|
2019-05-24 15:41:24 +03:00
|
|
|
const liveTimeline = room.getLiveTimeline();
|
2019-06-12 12:19:17 +03:00
|
|
|
const events = liveTimeline.getEvents().concat(room.getPendingEvents());
|
2019-05-27 17:22:55 +03:00
|
|
|
const maxIdx = events.length - 1;
|
|
|
|
const inc = isForward ? 1 : -1;
|
|
|
|
const beginIdx = isForward ? 0 : maxIdx;
|
|
|
|
let endIdx = isForward ? maxIdx : 0;
|
|
|
|
if (!fromEventId) {
|
2019-05-27 17:45:26 +03:00
|
|
|
endIdx = Math.min(Math.max(0, beginIdx + (inc * MAX_JUMP_DISTANCE)), maxIdx);
|
2019-05-24 15:41:24 +03:00
|
|
|
}
|
2019-05-27 17:22:55 +03:00
|
|
|
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;
|
2019-05-27 17:45:26 +03:00
|
|
|
// don't look further than MAX_JUMP_DISTANCE events from `fromEventId`
|
2019-05-27 17:22:55 +03:00
|
|
|
// to not iterate potentially 1000nds of events on key up/down
|
2019-05-27 17:45:26 +03:00
|
|
|
endIdx = Math.min(Math.max(0, i + (inc * MAX_JUMP_DISTANCE)), maxIdx);
|
2019-05-27 17:41:03 +03:00
|
|
|
} else if (foundFromEventId && !shouldHideEvent(e) && canEditOwnEvent(e)) {
|
2019-05-27 17:22:55 +03:00
|
|
|
// otherwise look for editable event
|
|
|
|
return e;
|
2019-05-24 15:41:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-27 17:22:55 +03:00
|
|
|
|