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