2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2020-08-06 08:58:01 -04:00
|
|
|
import { constants, promises as fs } from 'fs'
|
2021-01-18 05:16:37 -05:00
|
|
|
import { readFile } from 'fs-extra'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { join } from 'path'
|
2021-03-23 12:18:18 -04:00
|
|
|
import { logger } from '@server/helpers/logger'
|
2020-08-06 08:58:01 -04:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
2021-03-23 12:18:18 -04:00
|
|
|
import { Hooks } from '@server/lib/plugins/hooks'
|
2021-01-18 05:59:14 -05:00
|
|
|
import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '@shared/core-utils/i18n'
|
2021-10-08 05:06:02 -04:00
|
|
|
import { HttpStatusCode } from '@shared/models'
|
2021-11-02 14:11:20 -04:00
|
|
|
import { root } from '@shared/core-utils'
|
2020-12-08 15:16:10 -05:00
|
|
|
import { STATIC_MAX_AGE } from '../initializers/constants'
|
|
|
|
import { ClientHtml, sendHTML, serveIndexHTML } from '../lib/client-html'
|
2021-11-12 08:19:56 -05:00
|
|
|
import { asyncMiddleware, embedCSP } from '../middlewares'
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const clientsRouter = express.Router()
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
const distPath = join(root(), 'client', 'dist')
|
2018-07-10 11:47:56 -04:00
|
|
|
const testEmbedPath = join(distPath, 'standalone', 'videos', 'test-embed.html')
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2017-10-16 04:05:49 -04:00
|
|
|
// Special route that add OpenGraph and oEmbed tags
|
2016-11-11 04:55:07 -05:00
|
|
|
// Do not use a template engine for a so little thing
|
2021-05-28 05:36:33 -04:00
|
|
|
clientsRouter.use([ '/w/p/:id', '/videos/watch/playlist/:id' ], asyncMiddleware(generateWatchPlaylistHtmlPage))
|
|
|
|
clientsRouter.use([ '/w/:id', '/videos/watch/:id' ], asyncMiddleware(generateWatchHtmlPage))
|
2021-04-23 19:44:39 -04:00
|
|
|
clientsRouter.use([ '/accounts/:nameWithHost', '/a/:nameWithHost' ], asyncMiddleware(generateAccountHtmlPage))
|
|
|
|
clientsRouter.use([ '/video-channels/:nameWithHost', '/c/:nameWithHost' ], asyncMiddleware(generateVideoChannelHtmlPage))
|
|
|
|
clientsRouter.use('/@:nameWithHost', asyncMiddleware(generateActorHtmlPage))
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2020-08-04 05:42:06 -04:00
|
|
|
const embedMiddlewares = [
|
|
|
|
CONFIG.CSP.ENABLED
|
|
|
|
? embedCSP
|
|
|
|
: (req: express.Request, res: express.Response, next: express.NextFunction) => next(),
|
2020-02-20 04:04:36 -05:00
|
|
|
|
2021-03-23 12:18:18 -04:00
|
|
|
// Set headers
|
2020-08-24 05:25:40 -04:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2018-07-16 03:02:08 -04:00
|
|
|
res.removeHeader('X-Frame-Options')
|
2020-08-24 05:25:40 -04:00
|
|
|
|
2020-06-02 11:15:24 -04:00
|
|
|
// Don't cache HTML file since it's an index to the immutable JS/CSS files
|
2020-08-24 05:25:40 -04:00
|
|
|
res.setHeader('Cache-Control', 'public, max-age=0')
|
|
|
|
|
|
|
|
next()
|
|
|
|
},
|
|
|
|
|
|
|
|
asyncMiddleware(generateEmbedHtmlPage)
|
2020-08-04 05:42:06 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
clientsRouter.use('/videos/embed', ...embedMiddlewares)
|
|
|
|
clientsRouter.use('/video-playlists/embed', ...embedMiddlewares)
|
2020-08-05 08:16:39 -04:00
|
|
|
|
|
|
|
const testEmbedController = (req: express.Request, res: express.Response) => res.sendFile(testEmbedPath)
|
|
|
|
|
|
|
|
clientsRouter.use('/videos/test-embed', testEmbedController)
|
|
|
|
clientsRouter.use('/video-playlists/test-embed', testEmbedController)
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2020-07-10 04:20:11 -04:00
|
|
|
// Dynamic PWA manifest
|
2021-01-19 04:47:04 -05:00
|
|
|
clientsRouter.get('/manifest.webmanifest', asyncMiddleware(generateManifest))
|
2020-07-10 04:20:11 -04:00
|
|
|
|
|
|
|
// Static client overrides
|
2020-11-16 04:34:05 -05:00
|
|
|
// Must be consistent with static client overrides redirections in /support/nginx/peertube
|
2020-07-10 04:20:11 -04:00
|
|
|
const staticClientOverrides = [
|
|
|
|
'assets/images/logo.svg',
|
|
|
|
'assets/images/favicon.png',
|
|
|
|
'assets/images/icons/icon-36x36.png',
|
|
|
|
'assets/images/icons/icon-48x48.png',
|
|
|
|
'assets/images/icons/icon-72x72.png',
|
|
|
|
'assets/images/icons/icon-96x96.png',
|
|
|
|
'assets/images/icons/icon-144x144.png',
|
|
|
|
'assets/images/icons/icon-192x192.png',
|
2021-10-12 07:50:40 -04:00
|
|
|
'assets/images/icons/icon-512x512.png',
|
|
|
|
'assets/images/default-playlist.jpg',
|
|
|
|
'assets/images/default-avatar-account.png',
|
2022-02-28 02:34:43 -05:00
|
|
|
'assets/images/default-avatar-account-48x48.png',
|
|
|
|
'assets/images/default-avatar-video-channel.png',
|
|
|
|
'assets/images/default-avatar-video-channel-48x48.png'
|
2020-07-10 04:20:11 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
for (const staticClientOverride of staticClientOverrides) {
|
|
|
|
const overridePhysicalPath = join(CONFIG.STORAGE.CLIENT_OVERRIDES_DIR, staticClientOverride)
|
|
|
|
clientsRouter.use(`/client/${staticClientOverride}`, asyncMiddleware(serveClientOverride(overridePhysicalPath)))
|
|
|
|
}
|
|
|
|
|
2019-07-25 10:56:41 -04:00
|
|
|
clientsRouter.use('/client/locales/:locale/:file.json', serveServerTranslations)
|
2019-07-29 09:20:36 -04:00
|
|
|
clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE.CLIENT }))
|
2019-07-25 10:56:41 -04:00
|
|
|
|
|
|
|
// 404 for static files not found
|
|
|
|
clientsRouter.use('/client/*', (req: express.Request, res: express.Response) => {
|
2021-05-31 19:36:53 -04:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404).end()
|
2019-07-25 10:56:41 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
// Always serve index client page (the client is a single page application, let it handle routing)
|
|
|
|
// Try to provide the right language index.html
|
|
|
|
clientsRouter.use('/(:language)?', asyncMiddleware(serveIndexHTML))
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
clientsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
function serveServerTranslations (req: express.Request, res: express.Response) {
|
2018-06-06 10:46:42 -04:00
|
|
|
const locale = req.params.locale
|
|
|
|
const file = req.params.file
|
|
|
|
|
2020-02-28 10:03:39 -05:00
|
|
|
if (is18nLocale(locale) && LOCALE_FILES.includes(file)) {
|
2018-06-06 11:37:13 -04:00
|
|
|
const completeLocale = getCompleteLocale(locale)
|
|
|
|
const completeFileLocale = buildFileLocale(completeLocale)
|
2019-07-29 09:20:36 -04:00
|
|
|
|
2019-11-07 09:33:23 -05:00
|
|
|
const path = join(__dirname, `../../../client/dist/locale/${file}.${completeFileLocale}.json`)
|
2019-07-29 09:20:36 -04:00
|
|
|
return res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
|
2018-06-06 08:23:40 -04:00
|
|
|
}
|
|
|
|
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.status(HttpStatusCode.NOT_FOUND_404).end()
|
2019-07-25 10:56:41 -04:00
|
|
|
}
|
2016-11-25 06:32:21 -05:00
|
|
|
|
2020-08-24 05:25:40 -04:00
|
|
|
async function generateEmbedHtmlPage (req: express.Request, res: express.Response) {
|
2021-03-23 12:18:18 -04:00
|
|
|
const hookName = req.originalUrl.startsWith('/video-playlists/')
|
|
|
|
? 'filter:html.embed.video-playlist.allowed.result'
|
|
|
|
: 'filter:html.embed.video.allowed.result'
|
|
|
|
|
|
|
|
const allowParameters = { req }
|
|
|
|
|
|
|
|
const allowedResult = await Hooks.wrapFun(
|
|
|
|
isEmbedAllowed,
|
|
|
|
allowParameters,
|
|
|
|
hookName
|
|
|
|
)
|
|
|
|
|
|
|
|
if (!allowedResult || allowedResult.allowed !== true) {
|
|
|
|
logger.info('Embed is not allowed.', { allowedResult })
|
|
|
|
|
|
|
|
return sendHTML(allowedResult?.html || '', res)
|
|
|
|
}
|
|
|
|
|
2020-08-24 05:25:40 -04:00
|
|
|
const html = await ClientHtml.getEmbedHTML()
|
|
|
|
|
|
|
|
return sendHTML(html, res)
|
|
|
|
}
|
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
async function generateWatchHtmlPage (req: express.Request, res: express.Response) {
|
|
|
|
const html = await ClientHtml.getWatchHTMLPage(req.params.id + '', req, res)
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2021-12-02 03:14:54 -05:00
|
|
|
return sendHTML(html, res, true)
|
2016-11-11 04:55:07 -05:00
|
|
|
}
|
|
|
|
|
2020-07-31 05:29:15 -04:00
|
|
|
async function generateWatchPlaylistHtmlPage (req: express.Request, res: express.Response) {
|
|
|
|
const html = await ClientHtml.getWatchPlaylistHTMLPage(req.params.id + '', req, res)
|
|
|
|
|
2021-12-02 03:14:54 -05:00
|
|
|
return sendHTML(html, res, true)
|
2020-07-31 05:29:15 -04:00
|
|
|
}
|
|
|
|
|
2019-02-21 08:06:10 -05:00
|
|
|
async function generateAccountHtmlPage (req: express.Request, res: express.Response) {
|
|
|
|
const html = await ClientHtml.getAccountHTMLPage(req.params.nameWithHost, req, res)
|
|
|
|
|
2021-12-02 03:14:54 -05:00
|
|
|
return sendHTML(html, res, true)
|
2019-02-21 08:06:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async function generateVideoChannelHtmlPage (req: express.Request, res: express.Response) {
|
|
|
|
const html = await ClientHtml.getVideoChannelHTMLPage(req.params.nameWithHost, req, res)
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-12-02 03:14:54 -05:00
|
|
|
return sendHTML(html, res, true)
|
2021-04-23 19:44:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function generateActorHtmlPage (req: express.Request, res: express.Response) {
|
|
|
|
const html = await ClientHtml.getActorHTMLPage(req.params.nameWithHost, req, res)
|
2019-02-21 08:06:10 -05:00
|
|
|
|
2021-12-02 03:14:54 -05:00
|
|
|
return sendHTML(html, res, true)
|
2019-02-21 08:06:10 -05:00
|
|
|
}
|
|
|
|
|
2020-07-10 04:20:11 -04:00
|
|
|
async function generateManifest (req: express.Request, res: express.Response) {
|
|
|
|
const manifestPhysicalPath = join(root(), 'client', 'dist', 'manifest.webmanifest')
|
2021-01-18 05:16:37 -05:00
|
|
|
const manifestJson = await readFile(manifestPhysicalPath, 'utf8')
|
2020-07-10 04:20:11 -04:00
|
|
|
const manifest = JSON.parse(manifestJson)
|
|
|
|
|
|
|
|
manifest.name = CONFIG.INSTANCE.NAME
|
|
|
|
manifest.short_name = CONFIG.INSTANCE.NAME
|
|
|
|
manifest.description = CONFIG.INSTANCE.SHORT_DESCRIPTION
|
|
|
|
|
|
|
|
res.json(manifest)
|
|
|
|
}
|
|
|
|
|
|
|
|
function serveClientOverride (path: string) {
|
|
|
|
return async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
try {
|
|
|
|
await fs.access(path, constants.F_OK)
|
|
|
|
// Serve override client
|
|
|
|
res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
|
|
|
|
} catch {
|
|
|
|
// Serve dist client
|
|
|
|
next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-23 12:18:18 -04:00
|
|
|
|
|
|
|
type AllowedResult = { allowed: boolean, html?: string }
|
|
|
|
function isEmbedAllowed (_object: {
|
|
|
|
req: express.Request
|
|
|
|
}): AllowedResult {
|
|
|
|
return { allowed: true }
|
|
|
|
}
|