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-04-11 08:26:41 -04:00
|
|
|
import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants'
|
2018-12-13 03:49:45 -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'
|
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-02-22 09:29:32 -05:00
|
|
|
const assetsImagesPath = join(root(), 'client', 'dist', 'assets', 'images')
|
2017-05-22 14:58:25 -04:00
|
|
|
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
|
|
|
|
2018-12-14 09:49:36 -05:00
|
|
|
clientsRouter.use(
|
2018-07-16 03:02:08 -04:00
|
|
|
'/videos/embed',
|
2018-12-13 03:49:45 -05:00
|
|
|
embedCSP,
|
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')
|
|
|
|
res.sendFile(embedPath)
|
|
|
|
}
|
|
|
|
)
|
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)
|
|
|
|
clientsRouter.use('/' + staticClientFile, express.static(path, { maxAge: STATIC_MAX_AGE }))
|
|
|
|
}
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE }))
|
2017-12-05 09:01:47 -05:00
|
|
|
clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))
|
2016-11-25 06:32:21 -05:00
|
|
|
|
2018-06-06 08:23:40 -04:00
|
|
|
clientsRouter.use('/client/locales/:locale/:file.json', function (req, res) {
|
2018-06-06 10:46:42 -04:00
|
|
|
const locale = req.params.locale
|
|
|
|
const file = req.params.file
|
|
|
|
|
2018-06-06 11:37:13 -04:00
|
|
|
if (is18nLocale(locale) && LOCALE_FILES.indexOf(file) !== -1) {
|
|
|
|
const completeLocale = getCompleteLocale(locale)
|
|
|
|
const completeFileLocale = buildFileLocale(completeLocale)
|
|
|
|
return res.sendFile(join(__dirname, `../../../client/dist/locale/${file}_${completeFileLocale}.json`))
|
2018-06-06 08:23:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.sendStatus(404)
|
|
|
|
})
|
|
|
|
|
2016-11-25 06:32:21 -05:00
|
|
|
// 404 for static files not found
|
2017-07-11 11:04:57 -04:00
|
|
|
clientsRouter.use('/client/*', (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2016-11-25 06:32:21 -05:00
|
|
|
res.sendStatus(404)
|
|
|
|
})
|
|
|
|
|
2018-05-31 12:12:15 -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
|
2018-07-19 10:17:54 -04:00
|
|
|
clientsRouter.use('/(:language)?', async function (req, res) {
|
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()
|
|
|
|
})
|
|
|
|
|
2016-11-11 04:55:07 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
clientsRouter
|
|
|
|
}
|
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
|
|
|
}
|