mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
Inject server config in HTML
This commit is contained in:
parent
c76ecc3ff7
commit
aea0b0e7cd
15 changed files with 143 additions and 89 deletions
|
@ -2,12 +2,14 @@ import * as express from 'express'
|
|||
import { readFile } from 'fs-extra'
|
||||
import { join } from 'path'
|
||||
import validator from 'validator'
|
||||
import { escapeHTML } from '@shared/core-utils/renderer'
|
||||
import { HTMLServerConfig } from '@shared/models'
|
||||
import { buildFileLocale, getDefaultLocale, is18nLocale, POSSIBLE_LOCALES } from '../../shared/core-utils/i18n/i18n'
|
||||
import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'
|
||||
import { VideoPlaylistPrivacy, VideoPrivacy } from '../../shared/models/videos'
|
||||
import { isTestInstance, sha256 } from '../helpers/core-utils'
|
||||
import { escapeHTML } from '@shared/core-utils/renderer'
|
||||
import { logger } from '../helpers/logger'
|
||||
import { mdToPlainText } from '../helpers/markdown'
|
||||
import { CONFIG } from '../initializers/config'
|
||||
import {
|
||||
ACCEPT_HEADERS,
|
||||
|
@ -24,7 +26,7 @@ import { VideoChannelModel } from '../models/video/video-channel'
|
|||
import { getActivityStreamDuration } from '../models/video/video-format-utils'
|
||||
import { VideoPlaylistModel } from '../models/video/video-playlist'
|
||||
import { MAccountActor, MChannelActor } from '../types/models'
|
||||
import { mdToPlainText } from '../helpers/markdown'
|
||||
import { getHTMLServerConfig } from './config'
|
||||
|
||||
type Tags = {
|
||||
ogType: string
|
||||
|
@ -209,11 +211,14 @@ class ClientHtml {
|
|||
if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path]
|
||||
|
||||
const buffer = await readFile(path)
|
||||
const serverConfig = await getHTMLServerConfig()
|
||||
|
||||
let html = buffer.toString()
|
||||
html = await ClientHtml.addAsyncPluginCSS(html)
|
||||
html = ClientHtml.addCustomCSS(html)
|
||||
html = ClientHtml.addTitleTag(html)
|
||||
html = ClientHtml.addDescriptionTag(html)
|
||||
html = ClientHtml.addServerConfig(html, serverConfig)
|
||||
|
||||
ClientHtml.htmlCache[path] = html
|
||||
|
||||
|
@ -275,6 +280,7 @@ class ClientHtml {
|
|||
if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path]
|
||||
|
||||
const buffer = await readFile(path)
|
||||
const serverConfig = await getHTMLServerConfig()
|
||||
|
||||
let html = buffer.toString()
|
||||
|
||||
|
@ -283,6 +289,7 @@ class ClientHtml {
|
|||
html = ClientHtml.addFaviconContentHash(html)
|
||||
html = ClientHtml.addLogoContentHash(html)
|
||||
html = ClientHtml.addCustomCSS(html)
|
||||
html = ClientHtml.addServerConfig(html, serverConfig)
|
||||
html = await ClientHtml.addAsyncPluginCSS(html)
|
||||
|
||||
ClientHtml.htmlCache[path] = html
|
||||
|
@ -355,6 +362,13 @@ class ClientHtml {
|
|||
return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.CUSTOM_CSS, styleTag)
|
||||
}
|
||||
|
||||
private static addServerConfig (htmlStringPage: string, serverConfig: HTMLServerConfig) {
|
||||
const serverConfigString = JSON.stringify(serverConfig)
|
||||
const configScriptTag = `<script type="application/javascript">window.PeerTubeServerConfig = '${serverConfigString}'</script>`
|
||||
|
||||
return htmlStringPage.replace(CUSTOM_HTML_TAG_COMMENTS.SERVER_CONFIG, configScriptTag)
|
||||
}
|
||||
|
||||
private static async addAsyncPluginCSS (htmlStringPage: string) {
|
||||
const globalCSSContent = await readFile(PLUGIN_GLOBAL_CSS_PATH)
|
||||
if (globalCSSContent.byteLength === 0) return htmlStringPage
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue