mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-17 00:51:44 +03:00
255 lines
7.8 KiB
JavaScript
255 lines
7.8 KiB
JavaScript
/*
|
|
Copyright 2019 New Vector Ltd
|
|
Copyright 2019 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 { MATRIXTO_URL_PATTERN } from '../linkify-matrix';
|
|
import { walkDOMDepthFirst } from "./dom";
|
|
|
|
const REGEX_MATRIXTO = new RegExp(MATRIXTO_URL_PATTERN);
|
|
|
|
function parseAtRoomMentions(text, partCreator) {
|
|
const ATROOM = "@room";
|
|
const parts = [];
|
|
text.split(ATROOM).forEach((textPart, i, arr) => {
|
|
if (textPart.length) {
|
|
parts.push(partCreator.plain(textPart));
|
|
}
|
|
// it's safe to never append @room after the last textPart
|
|
// as split will report an empty string at the end if
|
|
// `text` ended in @room.
|
|
const isLast = i === arr.length - 1;
|
|
if (!isLast) {
|
|
parts.push(partCreator.atRoomPill(ATROOM));
|
|
}
|
|
});
|
|
return parts;
|
|
}
|
|
|
|
function parseLink(a, partCreator) {
|
|
const {href} = a;
|
|
const pillMatch = REGEX_MATRIXTO.exec(href) || [];
|
|
const resourceId = pillMatch[1]; // The room/user ID
|
|
const prefix = pillMatch[2]; // The first character of prefix
|
|
switch (prefix) {
|
|
case "@":
|
|
return partCreator.userPill(a.textContent, resourceId);
|
|
case "#":
|
|
return partCreator.roomPill(resourceId);
|
|
default: {
|
|
if (href === a.textContent) {
|
|
return partCreator.plain(a.textContent);
|
|
} else {
|
|
return partCreator.plain(`[${a.textContent}](${href})`);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function parseCodeBlock(n, partCreator) {
|
|
const parts = [];
|
|
const preLines = ("```\n" + n.textContent + "```").split("\n");
|
|
preLines.forEach((l, i) => {
|
|
parts.push(partCreator.plain(l));
|
|
if (i < preLines.length - 1) {
|
|
parts.push(partCreator.newline());
|
|
}
|
|
});
|
|
return parts;
|
|
}
|
|
|
|
function parseElement(n, partCreator, state) {
|
|
switch (n.nodeName) {
|
|
case "A":
|
|
return parseLink(n, partCreator);
|
|
case "BR":
|
|
return partCreator.newline();
|
|
case "EM":
|
|
return partCreator.plain(`*${n.textContent}*`);
|
|
case "STRONG":
|
|
return partCreator.plain(`**${n.textContent}**`);
|
|
case "PRE":
|
|
return parseCodeBlock(n, partCreator);
|
|
case "CODE":
|
|
return partCreator.plain(`\`${n.textContent}\``);
|
|
case "DEL":
|
|
return partCreator.plain(`<del>${n.textContent}</del>`);
|
|
case "LI": {
|
|
const indent = " ".repeat(state.listDepth - 1);
|
|
if (n.parentElement.nodeName === "OL") {
|
|
return partCreator.plain(`${indent}1. `);
|
|
} else {
|
|
return partCreator.plain(`${indent}- `);
|
|
}
|
|
}
|
|
case "OL":
|
|
case "UL":
|
|
state.listDepth = (state.listDepth || 0) + 1;
|
|
// es-lint-disable-next-line no-fallthrough
|
|
default:
|
|
// don't textify block nodes we'll decend into
|
|
if (!checkDecendInto(n)) {
|
|
return partCreator.plain(n.textContent);
|
|
}
|
|
}
|
|
}
|
|
|
|
function checkDecendInto(node) {
|
|
switch (node.nodeName) {
|
|
case "PRE":
|
|
// a code block is textified in parseCodeBlock
|
|
// as we don't want to preserve markup in it,
|
|
// so no need to decend into it
|
|
return false;
|
|
default:
|
|
return checkBlockNode(node);
|
|
}
|
|
}
|
|
|
|
function checkBlockNode(node) {
|
|
switch (node.nodeName) {
|
|
case "PRE":
|
|
case "BLOCKQUOTE":
|
|
case "DIV":
|
|
case "P":
|
|
case "UL":
|
|
case "OL":
|
|
case "LI":
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function checkIgnored(n) {
|
|
if (n.nodeType === Node.TEXT_NODE) {
|
|
// riot adds \n text nodes in a lot of places,
|
|
// which should be ignored
|
|
return n.nodeValue === "\n";
|
|
} else if (n.nodeType === Node.ELEMENT_NODE) {
|
|
return n.nodeName === "MX-REPLY";
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function prefixQuoteLines(isFirstNode, parts, partCreator) {
|
|
const PREFIX = "> ";
|
|
// a newline (to append a > to) wouldn't be added to parts for the first line
|
|
// if there was no content before the BLOCKQUOTE, so handle that
|
|
if (isFirstNode) {
|
|
parts.splice(0, 0, partCreator.plain(PREFIX));
|
|
}
|
|
for (let i = 0; i < parts.length; i += 1) {
|
|
if (parts[i].type === "newline") {
|
|
parts.splice(i + 1, 0, partCreator.plain(PREFIX));
|
|
i += 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
function parseHtmlMessage(html, partCreator) {
|
|
// no nodes from parsing here should be inserted in the document,
|
|
// as scripts in event handlers, etc would be executed then.
|
|
// we're only taking text, so that is fine
|
|
const rootNode = new DOMParser().parseFromString(html, "text/html").body;
|
|
const parts = [];
|
|
let lastNode;
|
|
let inQuote = false;
|
|
const state = {};
|
|
|
|
function onNodeEnter(n) {
|
|
if (checkIgnored(n)) {
|
|
return false;
|
|
}
|
|
if (n.nodeName === "BLOCKQUOTE") {
|
|
inQuote = true;
|
|
}
|
|
|
|
const newParts = [];
|
|
if (lastNode && (checkBlockNode(lastNode) || checkBlockNode(n))) {
|
|
newParts.push(partCreator.newline());
|
|
}
|
|
|
|
if (n.nodeType === Node.TEXT_NODE) {
|
|
newParts.push(...parseAtRoomMentions(n.nodeValue, partCreator));
|
|
} else if (n.nodeType === Node.ELEMENT_NODE) {
|
|
const parseResult = parseElement(n, partCreator, state);
|
|
if (parseResult) {
|
|
if (Array.isArray(parseResult)) {
|
|
newParts.push(...parseResult);
|
|
} else {
|
|
newParts.push(parseResult);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (newParts.length && inQuote) {
|
|
const isFirstPart = parts.length === 0;
|
|
prefixQuoteLines(isFirstPart, newParts, partCreator);
|
|
}
|
|
|
|
parts.push(...newParts);
|
|
|
|
// extra newline after quote, only if there something behind it...
|
|
if (lastNode && lastNode.nodeName === "BLOCKQUOTE") {
|
|
parts.push(partCreator.newline());
|
|
}
|
|
lastNode = null;
|
|
return checkDecendInto(n);
|
|
}
|
|
|
|
function onNodeLeave(n) {
|
|
if (checkIgnored(n)) {
|
|
return;
|
|
}
|
|
switch (n.nodeName) {
|
|
case "BLOCKQUOTE":
|
|
inQuote = false;
|
|
break;
|
|
case "OL":
|
|
case "UL":
|
|
state.listDepth -= 1;
|
|
break;
|
|
}
|
|
lastNode = n;
|
|
}
|
|
|
|
walkDOMDepthFirst(rootNode, onNodeEnter, onNodeLeave);
|
|
|
|
return parts;
|
|
}
|
|
|
|
export function parseEvent(event, partCreator) {
|
|
const content = event.getContent();
|
|
let parts;
|
|
if (content.format === "org.matrix.custom.html") {
|
|
parts = parseHtmlMessage(content.formatted_body || "", partCreator);
|
|
} else {
|
|
const body = content.body || "";
|
|
const lines = body.split("\n");
|
|
parts = lines.reduce((parts, line, i) => {
|
|
const isLast = i === lines.length - 1;
|
|
const newParts = parseAtRoomMentions(line, partCreator);
|
|
if (!isLast) {
|
|
newParts.push(partCreator.newline());
|
|
}
|
|
return parts.concat(newParts);
|
|
}, []);
|
|
}
|
|
if (content.msgtype === "m.emote") {
|
|
parts.unshift(partCreator.plain("/me "));
|
|
}
|
|
return parts;
|
|
}
|