2022-02-04 04:31:54 -05:00
|
|
|
import { getDefaultSanitizeOptions, getTextOnlySanitizeOptions, TEXT_WITH_HTML_RULES } from '@shared/core-utils'
|
2021-05-27 09:59:55 -04:00
|
|
|
|
2022-02-04 04:31:54 -05:00
|
|
|
const defaultSanitizeOptions = getDefaultSanitizeOptions()
|
|
|
|
const textOnlySanitizeOptions = getTextOnlySanitizeOptions()
|
2021-04-11 09:06:36 -04:00
|
|
|
|
|
|
|
const sanitizeHtml = require('sanitize-html')
|
|
|
|
const markdownItEmoji = require('markdown-it-emoji/light')
|
|
|
|
const MarkdownItClass = require('markdown-it')
|
|
|
|
|
2022-03-07 05:48:53 -05:00
|
|
|
const markdownItForSafeHtml = new MarkdownItClass('default', { linkify: true, breaks: true, html: true })
|
|
|
|
.enable(TEXT_WITH_HTML_RULES)
|
|
|
|
.use(markdownItEmoji)
|
|
|
|
|
|
|
|
const markdownItForPlainText = new MarkdownItClass('default', { linkify: false, breaks: true, html: false })
|
|
|
|
.use(markdownItEmoji)
|
|
|
|
.use(plainTextPlugin)
|
2021-04-11 09:06:36 -04:00
|
|
|
|
2022-01-31 04:07:38 -05:00
|
|
|
const toSafeHtml = (text: string) => {
|
2021-04-16 01:41:35 -04:00
|
|
|
if (!text) return ''
|
|
|
|
|
2021-04-11 09:06:36 -04:00
|
|
|
// Restore line feed
|
|
|
|
const textWithLineFeed = text.replace(/<br.?\/?>/g, '\r\n')
|
|
|
|
|
|
|
|
// Convert possible markdown (emojis, emphasis and lists) to html
|
2022-03-07 05:48:53 -05:00
|
|
|
const html = markdownItForSafeHtml.render(textWithLineFeed)
|
2021-04-11 09:06:36 -04:00
|
|
|
|
|
|
|
// Convert to safe Html
|
2022-02-04 04:31:54 -05:00
|
|
|
return sanitizeHtml(html, defaultSanitizeOptions)
|
2021-04-11 09:06:36 -04:00
|
|
|
}
|
|
|
|
|
2022-02-04 04:31:54 -05:00
|
|
|
const mdToOneLinePlainText = (text: string) => {
|
2021-04-16 01:41:35 -04:00
|
|
|
if (!text) return ''
|
|
|
|
|
2022-03-07 05:48:53 -05:00
|
|
|
markdownItForPlainText.render(text)
|
2021-04-12 05:43:29 -04:00
|
|
|
|
|
|
|
// Convert to safe Html
|
2022-03-07 05:48:53 -05:00
|
|
|
return sanitizeHtml(markdownItForPlainText.plainText, textOnlySanitizeOptions)
|
2021-04-12 05:43:29 -04:00
|
|
|
}
|
|
|
|
|
2021-04-11 09:06:36 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-04-12 05:43:29 -04:00
|
|
|
toSafeHtml,
|
2022-02-04 04:31:54 -05:00
|
|
|
mdToOneLinePlainText
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Thanks: https://github.com/wavesheep/markdown-it-plain-text
|
|
|
|
function plainTextPlugin (markdownIt: any) {
|
|
|
|
function plainTextRule (state: any) {
|
|
|
|
const text = scan(state.tokens)
|
|
|
|
|
2022-03-07 05:48:53 -05:00
|
|
|
markdownIt.plainText = text
|
2022-02-04 04:31:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function scan (tokens: any[]) {
|
2022-03-07 05:48:53 -05:00
|
|
|
let lastSeparator = ''
|
2022-02-04 04:31:54 -05:00
|
|
|
let text = ''
|
|
|
|
|
2022-03-07 05:48:53 -05:00
|
|
|
function buildSeparator (token: any) {
|
2022-02-04 04:31:54 -05:00
|
|
|
if (token.type === 'list_item_close') {
|
|
|
|
lastSeparator = ', '
|
2022-03-07 05:48:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (token.tag === 'br' || token.type === 'paragraph_close') {
|
2022-02-04 04:31:54 -05:00
|
|
|
lastSeparator = ' '
|
2022-03-07 05:48:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const token of tokens) {
|
|
|
|
buildSeparator(token)
|
|
|
|
|
|
|
|
if (token.type !== 'inline') continue
|
|
|
|
|
|
|
|
for (const child of token.children) {
|
|
|
|
buildSeparator(child)
|
|
|
|
|
|
|
|
if (!child.content) continue
|
|
|
|
|
|
|
|
text += lastSeparator + child.content
|
|
|
|
lastSeparator = ''
|
2022-02-04 04:31:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return text
|
|
|
|
}
|
|
|
|
|
|
|
|
markdownIt.core.ruler.push('plainText', plainTextRule)
|
2021-04-11 09:06:36 -04:00
|
|
|
}
|