]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/client-html.ts
Remove unnecessary NPM_RUN_BUILD_OPTS docker arg
[github/Chocobozzz/PeerTube.git] / server / lib / client-html.ts
CommitLineData
41fb13c3 1import express from 'express'
b49f22d8
C
2import { readFile } from 'fs-extra'
3import { join } from 'path'
4import validator from 'validator'
55cb8bc7 5import { toCompleteUUID } from '@server/helpers/custom-validators/misc'
f8360396 6import { root } from '@shared/core-utils'
aea0b0e7 7import { escapeHTML } from '@shared/core-utils/renderer'
f304a158 8import { sha256 } from '@shared/extra-utils'
aea0b0e7 9import { HTMLServerConfig } from '@shared/models'
bd45d503 10import { buildFileLocale, getDefaultLocale, is18nLocale, POSSIBLE_LOCALES } from '../../shared/core-utils/i18n/i18n'
c0e8b12e 11import { HttpStatusCode } from '../../shared/models/http/http-error-codes'
b49f22d8 12import { VideoPlaylistPrivacy, VideoPrivacy } from '../../shared/models/videos'
06aad801 13import { isTestInstance } from '../helpers/core-utils'
b49f22d8 14import { logger } from '../helpers/logger'
aea0b0e7 15import { mdToPlainText } from '../helpers/markdown'
b49f22d8 16import { CONFIG } from '../initializers/config'
8d987ec6 17import {
b49f22d8 18 ACCEPT_HEADERS,
2cb03dc1 19 ACTOR_IMAGES_SIZE,
8d987ec6
K
20 CUSTOM_HTML_TAG_COMMENTS,
21 EMBED_SIZE,
f2eb23cd 22 FILES_CONTENT_HASH,
b49f22d8
C
23 PLUGIN_GLOBAL_CSS_PATH,
24 WEBSERVER
8d987ec6 25} from '../initializers/constants'
92bf2f62 26import { AccountModel } from '../models/account/account'
e5dbd508 27import { getActivityStreamDuration } from '../models/video/formatter/video-format-utils'
b49f22d8 28import { VideoModel } from '../models/video/video'
92bf2f62 29import { VideoChannelModel } from '../models/video/video-channel'
b49f22d8 30import { VideoPlaylistModel } from '../models/video/video-playlist'
8d987ec6 31import { MAccountActor, MChannelActor } from '../types/models'
2539932e 32import { ServerConfigManager } from './server-config-manager'
e032aec9 33
6fad8e51
C
34type Tags = {
35 ogType: string
b96777c3 36 twitterCard: 'player' | 'summary' | 'summary_large_image'
6fad8e51
C
37 schemaType: string
38
39 list?: {
40 numberOfItems: number
41 }
42
55cb8bc7
C
43 escapedSiteName: string
44 escapedTitle: string
45 escapedDescription: string
46
6fad8e51 47 url: string
106fa224 48 originUrl: string
6fad8e51 49
352819ef
C
50 disallowIndexation?: boolean
51
6fad8e51
C
52 embed?: {
53 url: string
54 createdAt: string
55 duration?: string
56 views?: number
57 }
58
59 image: {
60 url: string
61 width?: number
62 height?: number
63 }
64}
65
f2eb23cd 66class ClientHtml {
e032aec9 67
a1587156 68 private static htmlCache: { [path: string]: string } = {}
e032aec9
C
69
70 static invalidCache () {
3e753302
C
71 logger.info('Cleaning HTML cache.')
72
e032aec9
C
73 ClientHtml.htmlCache = {}
74 }
75
9aac4423 76 static async getDefaultHTMLPage (req: express.Request, res: express.Response, paramLang?: string) {
7738273b
RK
77 const html = paramLang
78 ? await ClientHtml.getIndexHTML(req, res, paramLang)
79 : await ClientHtml.getIndexHTML(req, res)
e032aec9 80
9aac4423
C
81 let customHtml = ClientHtml.addTitleTag(html)
82 customHtml = ClientHtml.addDescriptionTag(customHtml)
e032aec9 83
9aac4423 84 return customHtml
e032aec9
C
85 }
86
d4a8e7a6
C
87 static async getWatchHTMLPage (videoIdArg: string, req: express.Request, res: express.Response) {
88 const videoId = toCompleteUUID(videoIdArg)
89
e032aec9 90 // Let Angular application handle errors
92bf2f62 91 if (!validator.isInt(videoId) && !validator.isUUID(videoId, 4)) {
2d53be02 92 res.status(HttpStatusCode.NOT_FOUND_404)
e032aec9
C
93 return ClientHtml.getIndexHTML(req, res)
94 }
95
96 const [ html, video ] = await Promise.all([
97 ClientHtml.getIndexHTML(req, res),
d636ab58 98 VideoModel.loadWithBlacklist(videoId)
e032aec9
C
99 ])
100
101 // Let Angular application handle errors
22a73cb8 102 if (!video || video.privacy === VideoPrivacy.PRIVATE || video.privacy === VideoPrivacy.INTERNAL || video.VideoBlacklist) {
2d53be02 103 res.status(HttpStatusCode.NOT_FOUND_404)
c08579e1 104 return html
e032aec9 105 }
55cb8bc7 106 const description = mdToPlainText(video.description)
e032aec9 107
55cb8bc7
C
108 let customHtml = ClientHtml.addTitleTag(html, video.name)
109 customHtml = ClientHtml.addDescriptionTag(customHtml, description)
8d987ec6
K
110
111 const url = WEBSERVER.URL + video.getWatchStaticPath()
106fa224 112 const originUrl = video.url
55cb8bc7
C
113 const title = video.name
114 const siteName = CONFIG.INSTANCE.NAME
8d987ec6
K
115
116 const image = {
117 url: WEBSERVER.URL + video.getPreviewStaticPath()
118 }
119
120 const embed = {
121 url: WEBSERVER.URL + video.getEmbedStaticPath(),
122 createdAt: video.createdAt.toISOString(),
123 duration: getActivityStreamDuration(video.duration),
124 views: video.views
125 }
126
127 const ogType = 'video'
128 const twitterCard = CONFIG.SERVICES.TWITTER.WHITELISTED ? 'player' : 'summary_large_image'
129 const schemaType = 'VideoObject'
130
106fa224 131 customHtml = ClientHtml.addTags(customHtml, {
a59f210f
C
132 url,
133 originUrl,
55cb8bc7
C
134 escapedSiteName: escapeHTML(siteName),
135 escapedTitle: escapeHTML(title),
136 escapedDescription: escapeHTML(description),
a59f210f
C
137 image,
138 embed,
139 ogType,
140 twitterCard,
141 schemaType
106fa224 142 })
8d987ec6
K
143
144 return customHtml
145 }
146
d4a8e7a6
C
147 static async getWatchPlaylistHTMLPage (videoPlaylistIdArg: string, req: express.Request, res: express.Response) {
148 const videoPlaylistId = toCompleteUUID(videoPlaylistIdArg)
149
8d987ec6
K
150 // Let Angular application handle errors
151 if (!validator.isInt(videoPlaylistId) && !validator.isUUID(videoPlaylistId, 4)) {
2d53be02 152 res.status(HttpStatusCode.NOT_FOUND_404)
8d987ec6
K
153 return ClientHtml.getIndexHTML(req, res)
154 }
155
156 const [ html, videoPlaylist ] = await Promise.all([
157 ClientHtml.getIndexHTML(req, res),
158 VideoPlaylistModel.loadWithAccountAndChannel(videoPlaylistId, null)
159 ])
160
161 // Let Angular application handle errors
162 if (!videoPlaylist || videoPlaylist.privacy === VideoPlaylistPrivacy.PRIVATE) {
2d53be02 163 res.status(HttpStatusCode.NOT_FOUND_404)
8d987ec6
K
164 return html
165 }
166
55cb8bc7
C
167 const description = mdToPlainText(videoPlaylist.description)
168
169 let customHtml = ClientHtml.addTitleTag(html, videoPlaylist.name)
170 customHtml = ClientHtml.addDescriptionTag(customHtml, description)
8d987ec6 171
a892c54a 172 const url = WEBSERVER.URL + videoPlaylist.getWatchStaticPath()
106fa224 173 const originUrl = videoPlaylist.url
55cb8bc7
C
174 const title = videoPlaylist.name
175 const siteName = CONFIG.INSTANCE.NAME
8d987ec6
K
176
177 const image = {
178 url: videoPlaylist.getThumbnailUrl()
179 }
180
6fad8e51
C
181 const embed = {
182 url: WEBSERVER.URL + videoPlaylist.getEmbedStaticPath(),
183 createdAt: videoPlaylist.createdAt.toISOString()
184 }
185
8d987ec6 186 const list = {
6fad8e51 187 numberOfItems: videoPlaylist.get('videosLength') as number
8d987ec6
K
188 }
189
190 const ogType = 'video'
6fad8e51 191 const twitterCard = CONFIG.SERVICES.TWITTER.WHITELISTED ? 'player' : 'summary'
8d987ec6
K
192 const schemaType = 'ItemList'
193
106fa224 194 customHtml = ClientHtml.addTags(customHtml, {
a59f210f
C
195 url,
196 originUrl,
55cb8bc7
C
197 escapedSiteName: escapeHTML(siteName),
198 escapedTitle: escapeHTML(title),
199 escapedDescription: escapeHTML(description),
a59f210f 200 embed,
a59f210f
C
201 image,
202 list,
203 ogType,
204 twitterCard,
205 schemaType
106fa224 206 })
92bf2f62
C
207
208 return customHtml
209 }
210
211 static async getAccountHTMLPage (nameWithHost: string, req: express.Request, res: express.Response) {
9a911038
K
212 const accountModelPromise = AccountModel.loadByNameWithHost(nameWithHost)
213 return this.getAccountOrChannelHTMLPage(() => accountModelPromise, req, res)
92bf2f62
C
214 }
215
216 static async getVideoChannelHTMLPage (nameWithHost: string, req: express.Request, res: express.Response) {
9a911038
K
217 const videoChannelModelPromise = VideoChannelModel.loadByNameWithHostAndPopulateAccount(nameWithHost)
218 return this.getAccountOrChannelHTMLPage(() => videoChannelModelPromise, req, res)
219 }
220
221 static async getActorHTMLPage (nameWithHost: string, req: express.Request, res: express.Response) {
012580d9
C
222 const [ account, channel ] = await Promise.all([
223 AccountModel.loadByNameWithHost(nameWithHost),
224 VideoChannelModel.loadByNameWithHostAndPopulateAccount(nameWithHost)
225 ])
9a911038 226
012580d9 227 return this.getAccountOrChannelHTMLPage(() => Promise.resolve(account || channel), req, res)
92bf2f62
C
228 }
229
cf649c2e
C
230 static async getEmbedHTML () {
231 const path = ClientHtml.getEmbedPath()
cf649c2e 232
b9da21bd 233 if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path]
cf649c2e
C
234
235 const buffer = await readFile(path)
2539932e 236 const serverConfig = await ServerConfigManager.Instance.getHTMLServerConfig()
cf649c2e
C
237
238 let html = buffer.toString()
239 html = await ClientHtml.addAsyncPluginCSS(html)
2564d97e 240 html = ClientHtml.addCustomCSS(html)
915e2bbb 241 html = ClientHtml.addTitleTag(html)
aea0b0e7
C
242 html = ClientHtml.addDescriptionTag(html)
243 html = ClientHtml.addServerConfig(html, serverConfig)
cf649c2e
C
244
245 ClientHtml.htmlCache[path] = html
246
247 return html
248 }
249
92bf2f62 250 private static async getAccountOrChannelHTMLPage (
b49f22d8 251 loader: () => Promise<MAccountActor | MChannelActor>,
92bf2f62
C
252 req: express.Request,
253 res: express.Response
254 ) {
255 const [ html, entity ] = await Promise.all([
256 ClientHtml.getIndexHTML(req, res),
257 loader()
258 ])
259
260 // Let Angular application handle errors
261 if (!entity) {
2d53be02 262 res.status(HttpStatusCode.NOT_FOUND_404)
92bf2f62
C
263 return ClientHtml.getIndexHTML(req, res)
264 }
265
55cb8bc7
C
266 const description = mdToPlainText(entity.description)
267
268 let customHtml = ClientHtml.addTitleTag(html, entity.getDisplayName())
269 customHtml = ClientHtml.addDescriptionTag(customHtml, description)
8d987ec6 270
a59f210f 271 const url = entity.getLocalUrl()
106fa224 272 const originUrl = entity.Actor.url
55cb8bc7
C
273 const siteName = CONFIG.INSTANCE.NAME
274 const title = entity.getDisplayName()
8d987ec6
K
275
276 const image = {
277 url: entity.Actor.getAvatarUrl(),
2cb03dc1
C
278 width: ACTOR_IMAGES_SIZE.AVATARS.width,
279 height: ACTOR_IMAGES_SIZE.AVATARS.height
8d987ec6
K
280 }
281
282 const ogType = 'website'
283 const twitterCard = 'summary'
284 const schemaType = 'ProfilePage'
285
a59f210f
C
286 customHtml = ClientHtml.addTags(customHtml, {
287 url,
288 originUrl,
55cb8bc7
C
289 escapedTitle: escapeHTML(title),
290 escapedSiteName: escapeHTML(siteName),
291 escapedDescription: escapeHTML(description),
a59f210f
C
292 image,
293 ogType,
294 twitterCard,
352819ef
C
295 schemaType,
296 disallowIndexation: !entity.Actor.isOwned()
a59f210f 297 })
9aac4423
C
298
299 return customHtml
300 }
301
302 private static async getIndexHTML (req: express.Request, res: express.Response, paramLang?: string) {
303 const path = ClientHtml.getIndexPath(req, res, paramLang)
b9da21bd 304 if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path]
9aac4423
C
305
306 const buffer = await readFile(path)
2539932e 307 const serverConfig = await ServerConfigManager.Instance.getHTMLServerConfig()
9aac4423
C
308
309 let html = buffer.toString()
310
caf2aaf4
K
311 html = ClientHtml.addManifestContentHash(html)
312 html = ClientHtml.addFaviconContentHash(html)
313 html = ClientHtml.addLogoContentHash(html)
9aac4423 314 html = ClientHtml.addCustomCSS(html)
aea0b0e7 315 html = ClientHtml.addServerConfig(html, serverConfig)
a8b666e9 316 html = await ClientHtml.addAsyncPluginCSS(html)
9aac4423 317
a1587156 318 ClientHtml.htmlCache[path] = html
9aac4423
C
319
320 return html
e032aec9
C
321 }
322
7738273b 323 private static getIndexPath (req: express.Request, res: express.Response, paramLang: string) {
e032aec9
C
324 let lang: string
325
326 // Check param lang validity
327 if (paramLang && is18nLocale(paramLang)) {
328 lang = paramLang
329
330 // Save locale in cookies
331 res.cookie('clientLanguage', lang, {
6dd9de95 332 secure: WEBSERVER.SCHEME === 'https',
bc90883f 333 sameSite: 'none',
e032aec9
C
334 maxAge: 1000 * 3600 * 24 * 90 // 3 months
335 })
336
337 } else if (req.cookies.clientLanguage && is18nLocale(req.cookies.clientLanguage)) {
338 lang = req.cookies.clientLanguage
339 } else {
340 lang = req.acceptsLanguages(POSSIBLE_LOCALES) || getDefaultLocale()
341 }
342
450de91e
C
343 logger.debug(
344 'Serving %s HTML language', buildFileLocale(lang),
345 { cookie: req.cookies?.clientLanguage, paramLang, acceptLanguage: req.headers['accept-language'] }
346 )
347
f8360396 348 return join(root(), 'client', 'dist', buildFileLocale(lang), 'index.html')
e032aec9
C
349 }
350
cf649c2e 351 private static getEmbedPath () {
f8360396 352 return join(root(), 'client', 'dist', 'standalone', 'videos', 'embed.html')
cf649c2e
C
353 }
354
caf2aaf4
K
355 private static addManifestContentHash (htmlStringPage: string) {
356 return htmlStringPage.replace('[manifestContentHash]', FILES_CONTENT_HASH.MANIFEST)
357 }
358
1fdf8edb 359 private static addFaviconContentHash (htmlStringPage: string) {
caf2aaf4
K
360 return htmlStringPage.replace('[faviconContentHash]', FILES_CONTENT_HASH.FAVICON)
361 }
362
1fdf8edb 363 private static addLogoContentHash (htmlStringPage: string) {
caf2aaf4
K
364 return htmlStringPage.replace('[logoContentHash]', FILES_CONTENT_HASH.LOGO)
365 }
366
9aac4423
C
367 private static addTitleTag (htmlStringPage: string, title?: string) {
368 let text = title || CONFIG.INSTANCE.NAME
369 if (title) text += ` - ${CONFIG.INSTANCE.NAME}`
370
55cb8bc7 371 const titleTag = `<title>${escapeHTML(text)}</title>`
e032aec9
C
372
373 return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.TITLE, titleTag)
374 }
375
9aac4423
C
376 private static addDescriptionTag (htmlStringPage: string, description?: string) {
377 const content = description || CONFIG.INSTANCE.SHORT_DESCRIPTION
55cb8bc7 378 const descriptionTag = `<meta name="description" content="${escapeHTML(content)}" />`
e032aec9
C
379
380 return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.DESCRIPTION, descriptionTag)
381 }
382
383 private static addCustomCSS (htmlStringPage: string) {
ffb321be 384 const styleTag = `<style class="custom-css-style">${CONFIG.INSTANCE.CUSTOMIZATIONS.CSS}</style>`
e032aec9
C
385
386 return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.CUSTOM_CSS, styleTag)
387 }
388
aea0b0e7 389 private static addServerConfig (htmlStringPage: string, serverConfig: HTMLServerConfig) {
b4c945f3
C
390 // Stringify the JSON object, and then stringify the string object so we can inject it into the HTML
391 const serverConfigString = JSON.stringify(JSON.stringify(serverConfig))
392 const configScriptTag = `<script type="application/javascript">window.PeerTubeServerConfig = ${serverConfigString}</script>`
aea0b0e7
C
393
394 return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.SERVER_CONFIG, configScriptTag)
395 }
396
a8b666e9
C
397 private static async addAsyncPluginCSS (htmlStringPage: string) {
398 const globalCSSContent = await readFile(PLUGIN_GLOBAL_CSS_PATH)
3e753302 399 if (globalCSSContent.byteLength === 0) return htmlStringPage
a8b666e9
C
400
401 const fileHash = sha256(globalCSSContent)
402 const linkTag = `<link rel="stylesheet" href="/plugins/global.css?hash=${fileHash}" />`
ffb321be
C
403
404 return htmlStringPage.replace('</head>', linkTag + '</head>')
405 }
406
6fad8e51 407 private static generateOpenGraphMetaTags (tags: Tags) {
8d987ec6
K
408 const metaTags = {
409 'og:type': tags.ogType,
55cb8bc7
C
410 'og:site_name': tags.escapedSiteName,
411 'og:title': tags.escapedTitle,
8d987ec6
K
412 'og:image': tags.image.url
413 }
414
415 if (tags.image.width && tags.image.height) {
416 metaTags['og:image:width'] = tags.image.width
417 metaTags['og:image:height'] = tags.image.height
418 }
e032aec9 419
8d987ec6 420 metaTags['og:url'] = tags.url
55cb8bc7 421 metaTags['og:description'] = tags.escapedDescription
e032aec9 422
8d987ec6
K
423 if (tags.embed) {
424 metaTags['og:video:url'] = tags.embed.url
425 metaTags['og:video:secure_url'] = tags.embed.url
426 metaTags['og:video:type'] = 'text/html'
427 metaTags['og:video:width'] = EMBED_SIZE.width
428 metaTags['og:video:height'] = EMBED_SIZE.height
429 }
e032aec9 430
8d987ec6
K
431 return metaTags
432 }
e032aec9 433
6fad8e51 434 private static generateStandardMetaTags (tags: Tags) {
8d987ec6 435 return {
55cb8bc7
C
436 name: tags.escapedTitle,
437 description: tags.escapedDescription,
8d987ec6
K
438 image: tags.image.url
439 }
440 }
e032aec9 441
6fad8e51 442 private static generateTwitterCardMetaTags (tags: Tags) {
8d987ec6
K
443 const metaTags = {
444 'twitter:card': tags.twitterCard,
e032aec9 445 'twitter:site': CONFIG.SERVICES.TWITTER.USERNAME,
55cb8bc7
C
446 'twitter:title': tags.escapedTitle,
447 'twitter:description': tags.escapedDescription,
8d987ec6 448 'twitter:image': tags.image.url
e032aec9
C
449 }
450
8d987ec6
K
451 if (tags.image.width && tags.image.height) {
452 metaTags['twitter:image:width'] = tags.image.width
453 metaTags['twitter:image:height'] = tags.image.height
454 }
455
b96777c3
C
456 if (tags.twitterCard === 'player') {
457 metaTags['twitter:player'] = tags.embed.url
458 metaTags['twitter:player:width'] = EMBED_SIZE.width
459 metaTags['twitter:player:height'] = EMBED_SIZE.height
460 }
461
8d987ec6
K
462 return metaTags
463 }
e032aec9 464
6fad8e51 465 private static generateSchemaTags (tags: Tags) {
8d987ec6 466 const schema = {
e032aec9 467 '@context': 'http://schema.org',
8d987ec6 468 '@type': tags.schemaType,
55cb8bc7
C
469 'name': tags.escapedTitle,
470 'description': tags.escapedDescription,
8d987ec6
K
471 'image': tags.image.url,
472 'url': tags.url
473 }
474
475 if (tags.list) {
476 schema['numberOfItems'] = tags.list.numberOfItems
477 schema['thumbnailUrl'] = tags.image.url
478 }
479
480 if (tags.embed) {
481 schema['embedUrl'] = tags.embed.url
482 schema['uploadDate'] = tags.embed.createdAt
6fad8e51
C
483
484 if (tags.embed.duration) schema['duration'] = tags.embed.duration
485 if (tags.embed.views) schema['iterationCount'] = tags.embed.views
486
8d987ec6
K
487 schema['thumbnailUrl'] = tags.image.url
488 schema['contentUrl'] = tags.url
489 }
490
491 return schema
492 }
493
6fad8e51 494 private static addTags (htmlStringPage: string, tagsValues: Tags) {
8d987ec6
K
495 const openGraphMetaTags = this.generateOpenGraphMetaTags(tagsValues)
496 const standardMetaTags = this.generateStandardMetaTags(tagsValues)
497 const twitterCardMetaTags = this.generateTwitterCardMetaTags(tagsValues)
498 const schemaTags = this.generateSchemaTags(tagsValues)
499
55cb8bc7 500 const { url, escapedTitle, embed, originUrl, disallowIndexation } = tagsValues
8d987ec6 501
55cb8bc7 502 const oembedLinkTags: { type: string, href: string, escapedTitle: string }[] = []
8d987ec6
K
503
504 if (embed) {
505 oembedLinkTags.push({
506 type: 'application/json+oembed',
507 href: WEBSERVER.URL + '/services/oembed?url=' + encodeURIComponent(url),
55cb8bc7 508 escapedTitle
8d987ec6 509 })
e032aec9
C
510 }
511
55cb8bc7 512 let tagsStr = ''
e032aec9
C
513
514 // Opengraph
515 Object.keys(openGraphMetaTags).forEach(tagName => {
a1587156 516 const tagValue = openGraphMetaTags[tagName]
e032aec9 517
55cb8bc7 518 tagsStr += `<meta property="${tagName}" content="${tagValue}" />`
e032aec9
C
519 })
520
8d987ec6
K
521 // Standard
522 Object.keys(standardMetaTags).forEach(tagName => {
523 const tagValue = standardMetaTags[tagName]
524
55cb8bc7 525 tagsStr += `<meta property="${tagName}" content="${tagValue}" />`
8d987ec6
K
526 })
527
528 // Twitter card
529 Object.keys(twitterCardMetaTags).forEach(tagName => {
530 const tagValue = twitterCardMetaTags[tagName]
531
55cb8bc7 532 tagsStr += `<meta property="${tagName}" content="${tagValue}" />`
8d987ec6
K
533 })
534
e032aec9
C
535 // OEmbed
536 for (const oembedLinkTag of oembedLinkTags) {
55cb8bc7 537 tagsStr += `<link rel="alternate" type="${oembedLinkTag.type}" href="${oembedLinkTag.href}" title="${oembedLinkTag.escapedTitle}" />`
e032aec9
C
538 }
539
540 // Schema.org
8d987ec6 541 if (schemaTags) {
55cb8bc7 542 tagsStr += `<script type="application/ld+json">${JSON.stringify(schemaTags)}</script>`
8d987ec6 543 }
92bf2f62 544
8d987ec6 545 // SEO, use origin URL
55cb8bc7 546 tagsStr += `<link rel="canonical" href="${originUrl}" />`
92bf2f62 547
352819ef 548 if (disallowIndexation) {
55cb8bc7 549 tagsStr += `<meta name="robots" content="noindex" />`
352819ef
C
550 }
551
55cb8bc7 552 return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.META_TAGS, tagsStr)
e032aec9
C
553 }
554}
f2eb23cd 555
5fc44b57 556function sendHTML (html: string, res: express.Response, localizedHTML: boolean = false) {
f2eb23cd
RK
557 res.set('Content-Type', 'text/html; charset=UTF-8')
558
5fc44b57 559 if (localizedHTML) {
560 res.set('Vary', 'Accept-Language')
561 }
562
f2eb23cd
RK
563 return res.send(html)
564}
565
566async function serveIndexHTML (req: express.Request, res: express.Response) {
8bd67ef6 567 if (req.accepts(ACCEPT_HEADERS) === 'html' || !req.headers.accept) {
f2eb23cd
RK
568 try {
569 await generateHTMLPage(req, res, req.params.language)
570 return
571 } catch (err) {
572 logger.error('Cannot generate HTML page.', err)
76148b27 573 return res.status(HttpStatusCode.INTERNAL_SERVER_ERROR_500).end()
f2eb23cd
RK
574 }
575 }
576
76148b27 577 return res.status(HttpStatusCode.NOT_ACCEPTABLE_406).end()
f2eb23cd
RK
578}
579
580// ---------------------------------------------------------------------------
581
582export {
583 ClientHtml,
584 sendHTML,
585 serveIndexHTML
586}
587
588async function generateHTMLPage (req: express.Request, res: express.Response, paramLang?: string) {
589 const html = await ClientHtml.getDefaultHTMLPage(req, res, paramLang)
590
5fc44b57 591 return sendHTML(html, res, true)
f2eb23cd 592}