2017-06-08 18:02:30 -04:00
|
|
|
import {
|
|
|
|
cook as cookIt,
|
|
|
|
setup as setupIt,
|
|
|
|
} from "pretty-text/engines/discourse-markdown-it";
|
2020-09-02 12:04:14 -04:00
|
|
|
import { deepMerge } from "discourse-common/lib/object";
|
2021-12-07 12:33:45 -05:00
|
|
|
import deprecated from "discourse-common/lib/deprecated";
|
2016-06-14 14:31:51 -04:00
|
|
|
|
2017-07-14 08:27:28 -04:00
|
|
|
export function registerOption() {
|
2021-12-07 12:33:45 -05:00
|
|
|
deprecated(
|
|
|
|
"`registerOption() from `pretty-text` is deprecated. Use `helper.registerOptions()` instead.",
|
|
|
|
{
|
|
|
|
since: "2.8.0.beta9",
|
|
|
|
dropFrom: "2.9.0.beta1",
|
|
|
|
}
|
|
|
|
);
|
2016-06-14 14:31:51 -04:00
|
|
|
}
|
|
|
|
|
2022-02-23 01:13:46 -05:00
|
|
|
// see also: __optInput in PrettyText#cook and PrettyText#markdown,
|
|
|
|
// the options are passed here and must be explicitly allowed with
|
|
|
|
// the const options & state below
|
2016-06-14 14:31:51 -04:00
|
|
|
export function buildOptions(state) {
|
2016-07-07 03:52:56 -04:00
|
|
|
const {
|
|
|
|
siteSettings,
|
|
|
|
getURL,
|
|
|
|
lookupAvatar,
|
2017-11-03 09:51:40 -04:00
|
|
|
lookupPrimaryUserGroup,
|
2016-07-07 03:52:56 -04:00
|
|
|
getTopicInfo,
|
|
|
|
topicId,
|
2022-02-23 01:13:46 -05:00
|
|
|
forceQuoteLink,
|
2016-07-07 03:52:56 -04:00
|
|
|
categoryHashtagLookup,
|
|
|
|
userId,
|
|
|
|
getCurrentUser,
|
2017-06-08 18:02:30 -04:00
|
|
|
currentUser,
|
2017-06-28 13:47:22 -04:00
|
|
|
lookupAvatarByPostNumber,
|
2017-11-03 09:51:40 -04:00
|
|
|
lookupPrimaryUserGroupByPostNumber,
|
2017-11-20 16:28:03 -05:00
|
|
|
formatUsername,
|
2017-07-19 15:08:54 -04:00
|
|
|
emojiUnicodeReplacer,
|
2019-05-28 21:00:25 -04:00
|
|
|
lookupUploadUrls,
|
2017-07-21 13:20:45 -04:00
|
|
|
previewing,
|
2019-07-31 13:33:49 -04:00
|
|
|
censoredRegexp,
|
2020-05-27 14:11:52 -04:00
|
|
|
disableEmojis,
|
|
|
|
customEmojiTranslation,
|
2021-06-02 01:36:49 -04:00
|
|
|
watchedWordsReplace,
|
|
|
|
watchedWordsLink,
|
2022-01-06 02:27:12 -05:00
|
|
|
featuresOverride,
|
|
|
|
markdownItRules,
|
2022-01-27 22:02:02 -05:00
|
|
|
additionalOptions,
|
2016-07-07 03:52:56 -04:00
|
|
|
} = state;
|
2016-06-14 14:31:51 -04:00
|
|
|
|
2022-01-06 02:28:32 -05:00
|
|
|
let features = {};
|
2016-06-14 14:31:51 -04:00
|
|
|
|
2017-07-14 08:27:28 -04:00
|
|
|
if (state.features) {
|
2020-09-02 12:04:14 -04:00
|
|
|
features = deepMerge(features, state.features);
|
2017-07-14 08:27:28 -04:00
|
|
|
}
|
|
|
|
|
2016-06-14 14:31:51 -04:00
|
|
|
const options = {
|
|
|
|
sanitize: true,
|
|
|
|
getURL,
|
|
|
|
features,
|
|
|
|
lookupAvatar,
|
2017-11-03 09:51:40 -04:00
|
|
|
lookupPrimaryUserGroup,
|
2016-06-14 14:31:51 -04:00
|
|
|
getTopicInfo,
|
|
|
|
topicId,
|
2022-02-23 01:13:46 -05:00
|
|
|
forceQuoteLink,
|
2016-06-14 14:31:51 -04:00
|
|
|
categoryHashtagLookup,
|
2016-07-07 03:52:56 -04:00
|
|
|
userId,
|
|
|
|
getCurrentUser,
|
|
|
|
currentUser,
|
2017-06-08 18:02:30 -04:00
|
|
|
lookupAvatarByPostNumber,
|
2017-11-03 09:51:40 -04:00
|
|
|
lookupPrimaryUserGroupByPostNumber,
|
2017-11-20 16:28:03 -05:00
|
|
|
formatUsername,
|
2017-06-28 13:47:22 -04:00
|
|
|
emojiUnicodeReplacer,
|
2019-05-28 21:00:25 -04:00
|
|
|
lookupUploadUrls,
|
2019-07-31 13:33:49 -04:00
|
|
|
censoredRegexp,
|
2020-05-27 14:11:52 -04:00
|
|
|
customEmojiTranslation,
|
2017-06-08 18:02:30 -04:00
|
|
|
allowedHrefSchemes: siteSettings.allowed_href_schemes
|
|
|
|
? siteSettings.allowed_href_schemes.split("|")
|
|
|
|
: null,
|
2017-09-01 12:08:39 -04:00
|
|
|
allowedIframes: siteSettings.allowed_iframes
|
|
|
|
? siteSettings.allowed_iframes.split("|")
|
|
|
|
: [],
|
2017-07-19 15:08:54 -04:00
|
|
|
markdownIt: true,
|
2019-06-03 03:41:26 -04:00
|
|
|
previewing,
|
|
|
|
disableEmojis,
|
2021-06-02 01:36:49 -04:00
|
|
|
watchedWordsReplace,
|
|
|
|
watchedWordsLink,
|
2022-01-06 02:27:12 -05:00
|
|
|
featuresOverride,
|
|
|
|
markdownItRules,
|
2022-01-27 22:02:02 -05:00
|
|
|
additionalOptions,
|
2016-06-14 14:31:51 -04:00
|
|
|
};
|
|
|
|
|
2017-07-14 08:27:28 -04:00
|
|
|
// note, this will mutate options due to the way the API is designed
|
|
|
|
// may need a refactor
|
|
|
|
setupIt(options, siteSettings, state);
|
2016-06-14 14:31:51 -04:00
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class {
|
|
|
|
constructor(opts) {
|
2017-07-14 08:27:28 -04:00
|
|
|
if (!opts) {
|
|
|
|
opts = buildOptions({ siteSettings: {} });
|
|
|
|
}
|
|
|
|
this.opts = opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
disableSanitizer() {
|
|
|
|
this.opts.sanitizer = this.opts.discourse.sanitizer = (ident) => ident;
|
2016-06-14 14:31:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
cook(raw) {
|
|
|
|
if (!raw || raw.length === 0) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-06-08 18:02:30 -04:00
|
|
|
let result;
|
2017-07-14 08:27:28 -04:00
|
|
|
result = cookIt(raw, this.opts);
|
2016-06-14 14:31:51 -04:00
|
|
|
return result ? result : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
sanitize(html) {
|
2017-07-14 08:27:28 -04:00
|
|
|
return this.opts.sanitizer(html).trim();
|
2016-06-14 14:31:51 -04:00
|
|
|
}
|
|
|
|
}
|