2017-06-05 15:53:49 -04:00
|
|
|
import * as express from 'express'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { join } from 'path'
|
2018-07-18 03:52:46 -04:00
|
|
|
import { root } from '../helpers/core-utils'
|
2019-07-29 10:30:01 -04:00
|
|
|
import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants'
|
2020-02-20 04:04:36 -05:00
|
|
|
import { asyncMiddleware, embedCSP } from '../middlewares'
|
2018-07-18 03:52:46 -04:00
|
|
|
import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '../../shared/models/i18n/i18n'
|
|
|
|
import { ClientHtml } from '../lib/client-html'
|
2018-07-19 10:17:54 -04:00
|
|
|
import { logger } from '../helpers/logger'
|
2020-02-20 04:04:36 -05:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
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')
|
|
|
|
const embedPath = join(distPath, 'standalone', 'videos', 'embed.html')
|
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
|
2018-12-14 09:49:36 -05:00
|
|
|
clientsRouter.use('/videos/watch/:id', asyncMiddleware(generateWatchHtmlPage))
|
2019-02-21 08:06:10 -05:00
|
|
|
clientsRouter.use('/accounts/:nameWithHost', asyncMiddleware(generateAccountHtmlPage))
|
|
|
|
clientsRouter.use('/video-channels/:nameWithHost', asyncMiddleware(generateVideoChannelHtmlPage))
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2020-02-20 04:04:36 -05:00
|
|
|
const embedCSPMiddleware = CONFIG.CSP.ENABLED
|
|
|
|
? embedCSP
|
|
|
|
: (req: express.Request, res: express.Response, next: express.NextFunction) => next()
|
|
|
|
|
2018-12-14 09:49:36 -05:00
|
|
|
clientsRouter.use(
|
2018-07-16 03:02:08 -04:00
|
|
|
'/videos/embed',
|
2020-02-20 04:04:36 -05:00
|
|
|
embedCSPMiddleware,
|
2018-12-14 09:49:36 -05:00
|
|
|
(req: express.Request, res: express.Response) => {
|
2018-07-16 03:02:08 -04:00
|
|
|
res.removeHeader('X-Frame-Options')
|
2020-06-02 11:15:24 -04:00
|
|
|
// Don't cache HTML file since it's an index to the immutable JS/CSS files
|
|
|
|
res.sendFile(embedPath, { maxAge: 0 })
|
2018-07-16 03:02:08 -04:00
|
|
|
}
|
|
|
|
)
|
2018-12-14 09:49:36 -05:00
|
|
|
clientsRouter.use(
|
|
|
|
'/videos/test-embed',
|
|
|
|
(req: express.Request, res: express.Response) => res.sendFile(testEmbedPath)
|
|
|
|
)
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// Static HTML/CSS/JS client files
|
2018-02-22 08:15:23 -05:00
|
|
|
|
|
|
|
const staticClientFiles = [
|
2018-09-19 12:27:10 -04:00
|
|
|
'manifest.webmanifest',
|
2018-02-22 08:15:23 -05:00
|
|
|
'ngsw-worker.js',
|
|
|
|
'ngsw.json'
|
|
|
|
]
|
|
|
|
for (const staticClientFile of staticClientFiles) {
|
|
|
|
const path = join(root(), 'client', 'dist', staticClientFile)
|
|
|
|
|
2019-07-29 09:20:36 -04:00
|
|
|
clientsRouter.get('/' + staticClientFile, (req: express.Request, res: express.Response) => {
|
|
|
|
res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
|
|
|
|
})
|
|
|
|
}
|
2016-11-25 06:32:21 -05:00
|
|
|
|
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) => {
|
|
|
|
res.sendStatus(404)
|
|
|
|
})
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
|
|
|
return res.sendStatus(404)
|
2019-07-25 10:56:41 -04:00
|
|
|
}
|
2016-11-25 06:32:21 -05:00
|
|
|
|
2019-07-25 10:56:41 -04:00
|
|
|
async function serveIndexHTML (req: express.Request, res: express.Response) {
|
2018-05-31 12:12:15 -04:00
|
|
|
if (req.accepts(ACCEPT_HEADERS) === 'html') {
|
2018-07-19 10:17:54 -04:00
|
|
|
try {
|
|
|
|
await generateHTMLPage(req, res, req.params.language)
|
|
|
|
return
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot generate HTML page.', err)
|
|
|
|
}
|
2018-05-31 12:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.status(404).end()
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|
2016-11-11 04:55:07 -05:00
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
async function generateHTMLPage (req: express.Request, res: express.Response, paramLang?: string) {
|
2018-12-14 09:49:36 -05:00
|
|
|
const html = await ClientHtml.getDefaultHTMLPage(req, res, paramLang)
|
2018-05-31 12:12:15 -04:00
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
return sendHTML(html, res)
|
2018-05-31 12:12:15 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
return sendHTML(html, res)
|
2016-11-11 04:55:07 -05: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)
|
|
|
|
|
|
|
|
return sendHTML(html, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function generateVideoChannelHtmlPage (req: express.Request, res: express.Response) {
|
|
|
|
const html = await ClientHtml.getVideoChannelHTMLPage(req.params.nameWithHost, req, res)
|
|
|
|
|
|
|
|
return sendHTML(html, res)
|
|
|
|
}
|
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
function sendHTML (html: string, res: express.Response) {
|
|
|
|
res.set('Content-Type', 'text/html; charset=UTF-8')
|
2017-10-25 05:55:06 -04:00
|
|
|
|
2018-07-18 03:52:46 -04:00
|
|
|
return res.send(html)
|
2016-11-11 04:55:07 -05:00
|
|
|
}
|