X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fclient.ts;h=7a279d8d596aefdd0ce4aeacdc819a8315e63e44;hb=1d22d2514f7be14d51ed2ab78e13df5da2646546;hp=335a0e082f2d6b570c6e026bd34ea911ba518672;hpb=cf649c2ed918b3cc6bd4c92f38c7752174ac1e9a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/client.ts b/server/controllers/client.ts index 335a0e082..7a279d8d5 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts @@ -1,12 +1,13 @@ import * as express from 'express' import { constants, promises as fs } from 'fs' +import { readFile } from 'fs-extra' import { join } from 'path' import { CONFIG } from '@server/initializers/config' -import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '@shared/core-utils/i18n' +import { HttpStatusCode } from '@shared/core-utils' +import { buildFileLocale, getCompleteLocale, I18N_LOCALES, is18nLocale, LOCALE_FILES } from '@shared/core-utils/i18n' import { root } from '../helpers/core-utils' -import { logger } from '../helpers/logger' -import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants' -import { ClientHtml } from '../lib/client-html' +import { STATIC_MAX_AGE } from '../initializers/constants' +import { ClientHtml, sendHTML, serveIndexHTML } from '../lib/client-html' import { asyncMiddleware, embedCSP } from '../middlewares' const clientsRouter = express.Router() @@ -46,24 +47,11 @@ const testEmbedController = (req: express.Request, res: express.Response) => res clientsRouter.use('/videos/test-embed', testEmbedController) clientsRouter.use('/video-playlists/test-embed', testEmbedController) -// Static HTML/CSS/JS client files -const staticClientFiles = [ - 'ngsw-worker.js', - 'ngsw.json' -] - -for (const staticClientFile of staticClientFiles) { - const path = join(root(), 'client', 'dist', staticClientFile) - - clientsRouter.get(`/${staticClientFile}`, (req: express.Request, res: express.Response) => { - res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER }) - }) -} - // Dynamic PWA manifest -clientsRouter.get('/manifest.webmanifest', asyncMiddleware(generateManifest)) +clientsRouter.get(/\/client\/[^/]+\/manifest.webmanifest/, asyncMiddleware(generateManifest)) // Static client overrides +// Must be consistent with static client overrides redirections in /support/nginx/peertube const staticClientOverrides = [ 'assets/images/logo.svg', 'assets/images/favicon.png', @@ -86,7 +74,7 @@ clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE.C // 404 for static files not found clientsRouter.use('/client/*', (req: express.Request, res: express.Response) => { - res.sendStatus(404) + res.sendStatus(HttpStatusCode.NOT_FOUND_404) }) // Always serve index client page (the client is a single page application, let it handle routing) @@ -113,20 +101,7 @@ function serveServerTranslations (req: express.Request, res: express.Response) { return res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER }) } - return res.sendStatus(404) -} - -async function serveIndexHTML (req: express.Request, res: express.Response) { - if (req.accepts(ACCEPT_HEADERS) === 'html') { - try { - await generateHTMLPage(req, res, req.params.language) - return - } catch (err) { - logger.error('Cannot generate HTML page.', err) - } - } - - return res.status(404).end() + return res.sendStatus(HttpStatusCode.NOT_FOUND_404) } async function generateEmbedHtmlPage (req: express.Request, res: express.Response) { @@ -135,12 +110,6 @@ async function generateEmbedHtmlPage (req: express.Request, res: express.Respons return sendHTML(html, res) } -async function generateHTMLPage (req: express.Request, res: express.Response, paramLang?: string) { - const html = await ClientHtml.getDefaultHTMLPage(req, res, paramLang) - - return sendHTML(html, res) -} - async function generateWatchHtmlPage (req: express.Request, res: express.Response) { const html = await ClientHtml.getWatchHTMLPage(req.params.id + '', req, res) @@ -165,15 +134,9 @@ async function generateVideoChannelHtmlPage (req: express.Request, res: express. return sendHTML(html, res) } -function sendHTML (html: string, res: express.Response) { - res.set('Content-Type', 'text/html; charset=UTF-8') - - return res.send(html) -} - async function generateManifest (req: express.Request, res: express.Response) { const manifestPhysicalPath = join(root(), 'client', 'dist', 'manifest.webmanifest') - const manifestJson = await fs.readFile(manifestPhysicalPath, 'utf8') + const manifestJson = await readFile(manifestPhysicalPath, 'utf8') const manifest = JSON.parse(manifestJson) manifest.name = CONFIG.INSTANCE.NAME