-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathmarkdown.service.ts
190 lines (144 loc) · 5.71 KB
/
markdown.service.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import { Injectable, inject } from '@angular/core'
import {
buildVideoLink,
COMPLETE_RULES,
decorateVideoLink,
ENHANCED_RULES,
ENHANCED_WITH_HTML_RULES,
TEXT_RULES,
TEXT_WITH_HTML_RULES
} from '@peertube/peertube-core-utils'
import MarkdownIt from 'markdown-it'
import { HtmlRendererService } from './html-renderer.service'
type MarkdownParsers = {
textMarkdownIt: MarkdownIt
textWithHTMLMarkdownIt: MarkdownIt
enhancedMarkdownIt: MarkdownIt
enhancedWithHTMLMarkdownIt: MarkdownIt
unsafeMarkdownIt: MarkdownIt
customPageMarkdownIt: MarkdownIt
}
type MarkdownConfig = {
rules: string[]
html: boolean
breaks: boolean
escape?: boolean
}
type MarkdownParserConfigs = {
[id in keyof MarkdownParsers]: MarkdownConfig
}
@Injectable()
export class MarkdownService {
private htmlRenderer = inject(HtmlRendererService)
private markdownParsers: MarkdownParsers = {
textMarkdownIt: null,
textWithHTMLMarkdownIt: null,
enhancedMarkdownIt: null,
enhancedWithHTMLMarkdownIt: null,
unsafeMarkdownIt: null,
customPageMarkdownIt: null
}
private parsersConfig: MarkdownParserConfigs = {
textMarkdownIt: { rules: TEXT_RULES, breaks: true, html: false },
textWithHTMLMarkdownIt: { rules: TEXT_WITH_HTML_RULES, breaks: true, html: true, escape: true },
enhancedMarkdownIt: { rules: ENHANCED_RULES, breaks: true, html: false },
enhancedWithHTMLMarkdownIt: { rules: ENHANCED_WITH_HTML_RULES, breaks: true, html: true, escape: true },
unsafeMarkdownIt: { rules: COMPLETE_RULES, breaks: true, html: true, escape: false },
customPageMarkdownIt: { rules: COMPLETE_RULES, breaks: false, html: true, escape: true }
}
private emojiModule: any
textMarkdownToHTML (options: {
markdown: string
withHtml?: boolean // default false
withEmoji?: boolean // default false
}) {
const { markdown, withHtml = false, withEmoji = false } = options
if (withHtml) return this.render({ name: 'textWithHTMLMarkdownIt', markdown, withEmoji })
return this.render({ name: 'textMarkdownIt', markdown, withEmoji })
}
enhancedMarkdownToHTML (options: {
markdown: string
withHtml?: boolean // default false
withEmoji?: boolean // default false
}) {
const { markdown, withHtml = false, withEmoji = false } = options
if (withHtml) return this.render({ name: 'enhancedWithHTMLMarkdownIt', markdown, withEmoji })
return this.render({ name: 'enhancedMarkdownIt', markdown, withEmoji })
}
markdownToUnsafeHTML (options: { markdown: string }) {
return this.render({ name: 'unsafeMarkdownIt', markdown: options.markdown, withEmoji: true })
}
customPageMarkdownToHTML (options: {
markdown: string
additionalAllowedTags: string[]
}) {
const { markdown, additionalAllowedTags } = options
return this.render({ name: 'customPageMarkdownIt', markdown, withEmoji: true, additionalAllowedTags })
}
// ---------------------------------------------------------------------------
processVideoTimestamps (videoShortUUID: string, html: string) {
return html.replace(/\b((\d{1,2}):)?(\d{1,2}):(\d{1,2})\b/g, function (str, _, h, m, s) {
const t = (3600 * +(h || 0)) + (60 * +(m || 0)) + (+(s || 0))
const url = decorateVideoLink({
url: buildVideoLink({ shortUUID: videoShortUUID }),
startTime: t
})
// Sync class name with timestamp-route-transformer directive
return `<a class="video-timestamp" href="${url}">${str}</a>`
})
}
private async render (options: {
name: keyof MarkdownParsers
markdown: string
withEmoji: boolean
additionalAllowedTags?: string[]
}) {
const { name, markdown, withEmoji, additionalAllowedTags } = options
if (!markdown) return ''
const config = this.parsersConfig[name]
if (!this.markdownParsers[name]) {
this.markdownParsers[name] = await this.createMarkdownIt(config)
if (withEmoji) {
if (!this.emojiModule) {
this.emojiModule = (await import('markdown-it-emoji/lib/light.mjs')).default
}
this.markdownParsers[name].use(this.emojiModule as MarkdownIt.PluginSimple)
}
}
const html = this.markdownParsers[name].render(markdown)
if (config.escape) {
if (name === 'customPageMarkdownIt') {
return this.htmlRenderer.toCustomPageSafeHtml(html, additionalAllowedTags)
}
return this.htmlRenderer.toSimpleSafeHtml(html)
}
return html
}
private async createMarkdownIt (config: MarkdownConfig) {
const MarkdownItClass = (await import('markdown-it')).default
const markdownIt = new MarkdownItClass('zero', { linkify: true, breaks: config.breaks, html: config.html })
for (const rule of config.rules) {
markdownIt.enable(rule)
}
this.setTargetToLinks(markdownIt)
return markdownIt
}
private setTargetToLinks (markdownIt: MarkdownIt) {
// Snippet from markdown-it documentation: https://github.com/markdown-it/markdown-it/blob/master/docs/architecture.md#renderer
const defaultRender = markdownIt.renderer.rules.link_open || function (tokens, idx, options, env, self) {
return self.renderToken(tokens, idx, options)
}
markdownIt.renderer.rules.link_open = function (tokens, index, options, env, self) {
const token = tokens[index]
const targetIndex = token.attrIndex('target')
if (targetIndex < 0) token.attrPush([ 'target', '_blank' ])
else token.attrs[targetIndex][1] = '_blank'
const relValues = 'noopener noreferrer ugc'
const relIndex = token.attrIndex('rel')
if (relIndex < 0) token.attrPush([ 'rel', relValues ])
else token.attrs[relIndex][1] = relValues
// pass token to default renderer.*
return defaultRender(tokens, index, options, env, self)
}
}
}