2019-05-22 17:16:32 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
2020-04-15 02:49:08 +03:00
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2019-05-22 17:16: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.
|
|
|
|
*/
|
|
|
|
|
2019-05-21 18:59:54 +03:00
|
|
|
import Markdown from '../Markdown';
|
2019-10-01 05:39:58 +03:00
|
|
|
import {makeGenericPermalink} from "../utils/permalinks/Permalinks";
|
2020-04-15 02:49:08 +03:00
|
|
|
import EditorModel from "./model";
|
2020-09-20 14:59:22 +03:00
|
|
|
import { AllHtmlEntities } from 'html-entities';
|
2020-10-10 18:32:49 +03:00
|
|
|
import SettingsStore from '../settings/SettingsStore';
|
2020-09-20 17:07:12 +03:00
|
|
|
import SdkConfig from '../SdkConfig';
|
2020-10-14 11:35:57 +03:00
|
|
|
import cheerio from 'cheerio';
|
2019-05-21 18:59:54 +03:00
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function mdSerialize(model: EditorModel) {
|
2019-05-14 12:37:16 +03:00
|
|
|
return model.parts.reduce((html, part) => {
|
|
|
|
switch (part.type) {
|
|
|
|
case "newline":
|
2019-05-21 18:59:54 +03:00
|
|
|
return html + "\n";
|
2019-05-14 12:37:16 +03:00
|
|
|
case "plain":
|
2019-08-21 16:27:50 +03:00
|
|
|
case "command":
|
2019-05-14 12:37:16 +03:00
|
|
|
case "pill-candidate":
|
2019-06-14 19:24:36 +03:00
|
|
|
case "at-room-pill":
|
2019-05-14 12:37:16 +03:00
|
|
|
return html + part.text;
|
|
|
|
case "room-pill":
|
2021-03-11 10:29:03 +03:00
|
|
|
// Here we use the resourceId for compatibility with non-rich text clients
|
|
|
|
// See https://github.com/vector-im/element-web/issues/16660
|
|
|
|
return html +
|
|
|
|
`[${part.resourceId.replace(/[[\\\]]/g, c => "\\" + c)}](${makeGenericPermalink(part.resourceId)})`;
|
2019-05-14 12:37:16 +03:00
|
|
|
case "user-pill":
|
2020-06-23 18:41:36 +03:00
|
|
|
return html +
|
|
|
|
`[${part.text.replace(/[[\\\]]/g, c => "\\" + c)}](${makeGenericPermalink(part.resourceId)})`;
|
2019-05-14 12:37:16 +03:00
|
|
|
}
|
|
|
|
}, "");
|
|
|
|
}
|
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function htmlSerializeIfNeeded(model: EditorModel, {forceHTML = false} = {}) {
|
2020-09-22 13:54:23 +03:00
|
|
|
let md = mdSerialize(model);
|
2020-09-20 14:59:22 +03:00
|
|
|
|
2020-10-10 18:32:49 +03:00
|
|
|
if (SettingsStore.getValue("feature_latex_maths")) {
|
2020-09-21 13:00:39 +03:00
|
|
|
const displayPattern = (SdkConfig.get()['latex_maths_delims'] || {})['display_pattern'] ||
|
|
|
|
"\\$\\$(([^$]|\\\\\\$)*)\\$\\$";
|
2020-11-10 21:18:53 +03:00
|
|
|
const inlinePattern = (SdkConfig.get()['latex_maths_delims'] || {})['inline_pattern'] ||
|
|
|
|
"\\$(([^$]|\\\\\\$)*)\\$";
|
2020-09-21 13:00:39 +03:00
|
|
|
|
2020-09-22 13:54:23 +03:00
|
|
|
md = md.replace(RegExp(displayPattern, "gm"), function(m, p1) {
|
2020-09-21 13:00:39 +03:00
|
|
|
const p1e = AllHtmlEntities.encode(p1);
|
2020-10-25 21:32:24 +03:00
|
|
|
return `<div data-mx-maths="${p1e}">\n\n</div>\n\n`;
|
2020-09-21 13:00:39 +03:00
|
|
|
});
|
|
|
|
|
2020-09-22 13:54:23 +03:00
|
|
|
md = md.replace(RegExp(inlinePattern, "gm"), function(m, p1) {
|
2020-09-21 13:00:39 +03:00
|
|
|
const p1e = AllHtmlEntities.encode(p1);
|
2020-10-14 11:35:57 +03:00
|
|
|
return `<span data-mx-maths="${p1e}"></span>`;
|
2020-09-20 14:59:22 +03:00
|
|
|
});
|
2020-10-25 21:32:24 +03:00
|
|
|
|
|
|
|
// make sure div tags always start on a new line, otherwise it will confuse
|
|
|
|
// the markdown parser
|
|
|
|
md = md.replace(/(.)<div/g, function(m, p1) { return `${p1}\n<div`; });
|
2020-09-20 14:59:22 +03:00
|
|
|
}
|
|
|
|
|
2019-05-21 18:59:54 +03:00
|
|
|
const parser = new Markdown(md);
|
2019-07-08 17:55:56 +03:00
|
|
|
if (!parser.isPlainText() || forceHTML) {
|
2020-10-14 11:35:57 +03:00
|
|
|
// feed Markdown output to HTML parser
|
|
|
|
const phtml = cheerio.load(parser.toHTML(),
|
|
|
|
{ _useHtmlParser2: true, decodeEntities: false })
|
|
|
|
|
|
|
|
// add fallback output for latex math, which should not be interpreted as markdown
|
2020-10-23 20:49:56 +03:00
|
|
|
phtml('div, span').each(function(i, e) {
|
|
|
|
const tex = phtml(e).attr('data-mx-maths')
|
2020-10-14 11:35:57 +03:00
|
|
|
if (tex) {
|
2020-10-23 20:49:56 +03:00
|
|
|
phtml(e).html(`<code>${tex}</code>`)
|
2020-10-14 11:35:57 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return phtml.html();
|
2019-05-21 18:59:54 +03:00
|
|
|
}
|
2020-06-04 00:36:48 +03:00
|
|
|
// ensure removal of escape backslashes in non-Markdown messages
|
|
|
|
if (md.indexOf("\\") > -1) {
|
|
|
|
return parser.toPlaintext();
|
|
|
|
}
|
2019-05-21 18:59:54 +03:00
|
|
|
}
|
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function textSerialize(model: EditorModel) {
|
2019-05-14 12:37:16 +03:00
|
|
|
return model.parts.reduce((text, part) => {
|
|
|
|
switch (part.type) {
|
|
|
|
case "newline":
|
|
|
|
return text + "\n";
|
|
|
|
case "plain":
|
2019-08-21 16:27:50 +03:00
|
|
|
case "command":
|
2019-05-14 12:37:16 +03:00
|
|
|
case "pill-candidate":
|
2019-06-14 19:24:36 +03:00
|
|
|
case "at-room-pill":
|
2019-05-14 12:37:16 +03:00
|
|
|
return text + part.text;
|
|
|
|
case "room-pill":
|
2021-03-11 20:50:35 +03:00
|
|
|
// Here we use the resourceId for compatibility with non-rich text clients
|
|
|
|
// See https://github.com/vector-im/element-web/issues/16660
|
|
|
|
return text + `${part.resourceId}`;
|
2019-05-14 12:37:16 +03:00
|
|
|
case "user-pill":
|
2019-08-30 12:51:29 +03:00
|
|
|
return text + `${part.text}`;
|
2019-05-14 12:37:16 +03:00
|
|
|
}
|
|
|
|
}, "");
|
|
|
|
}
|
2019-08-21 12:26:21 +03:00
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function containsEmote(model: EditorModel) {
|
2020-06-16 16:06:42 +03:00
|
|
|
return startsWith(model, "/me ", false);
|
2020-01-21 18:55:21 +03:00
|
|
|
}
|
|
|
|
|
2020-06-16 16:06:42 +03:00
|
|
|
export function startsWith(model: EditorModel, prefix: string, caseSensitive = true) {
|
2019-08-21 12:26:21 +03:00
|
|
|
const firstPart = model.parts[0];
|
2019-08-21 16:27:50 +03:00
|
|
|
// part type will be "plain" while editing,
|
|
|
|
// and "command" while composing a message.
|
2020-06-16 02:41:21 +03:00
|
|
|
let text = firstPart && firstPart.text;
|
2020-06-16 16:06:42 +03:00
|
|
|
if (!caseSensitive) {
|
2020-06-16 02:41:21 +03:00
|
|
|
prefix = prefix.toLowerCase();
|
|
|
|
text = text.toLowerCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
return firstPart && (firstPart.type === "plain" || firstPart.type === "command") && text.startsWith(prefix);
|
2019-08-21 12:26:21 +03:00
|
|
|
}
|
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function stripEmoteCommand(model: EditorModel) {
|
2019-08-21 12:26:21 +03:00
|
|
|
// trim "/me "
|
2020-01-21 18:55:21 +03:00
|
|
|
return stripPrefix(model, "/me ");
|
|
|
|
}
|
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function stripPrefix(model: EditorModel, prefix: string) {
|
2019-08-21 12:26:21 +03:00
|
|
|
model = model.clone();
|
2020-01-21 18:55:21 +03:00
|
|
|
model.removeText({index: 0, offset: 0}, prefix.length);
|
2019-08-21 12:26:21 +03:00
|
|
|
return model;
|
|
|
|
}
|
2019-09-02 18:53:14 +03:00
|
|
|
|
2020-04-15 02:49:08 +03:00
|
|
|
export function unescapeMessage(model: EditorModel) {
|
2019-09-02 18:53:14 +03:00
|
|
|
const {parts} = model;
|
|
|
|
if (parts.length) {
|
|
|
|
const firstPart = parts[0];
|
|
|
|
// only unescape \/ to / at start of editor
|
|
|
|
if (firstPart.type === "plain" && firstPart.text.startsWith("\\/")) {
|
|
|
|
model = model.clone();
|
|
|
|
model.removeText({index: 0, offset: 0}, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return model;
|
|
|
|
}
|