]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/client.ts
Bumped to version v1.2.0
[github/Chocobozzz/PeerTube.git] / server / controllers / client.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
65fcc311 2import { join } from 'path'
e032aec9
C
3import { root } from '../helpers/core-utils'
4import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers'
5e755fff 5import { asyncMiddleware, embedCSP } from '../middlewares'
e032aec9
C
6import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '../../shared/models/i18n/i18n'
7import { ClientHtml } from '../lib/client-html'
57c36b27 8import { logger } from '../helpers/logger'
830bcd0f 9
65fcc311 10const clientsRouter = express.Router()
830bcd0f 11
e02643f3 12const distPath = join(root(), 'client', 'dist')
1f30a185 13const assetsImagesPath = join(root(), 'client', 'dist', 'assets', 'images')
e02643f3 14const embedPath = join(distPath, 'standalone', 'videos', 'embed.html')
99941732 15const testEmbedPath = join(distPath, 'standalone', 'videos', 'test-embed.html')
830bcd0f 16
d8755eed 17// Special route that add OpenGraph and oEmbed tags
830bcd0f 18// Do not use a template engine for a so little thing
9aac4423 19clientsRouter.use('/videos/watch/:id', asyncMiddleware(generateWatchHtmlPage))
830bcd0f 20
9aac4423 21clientsRouter.use(
d00e2393 22 '/videos/embed',
5e755fff 23 embedCSP,
9aac4423 24 (req: express.Request, res: express.Response) => {
d00e2393
RK
25 res.removeHeader('X-Frame-Options')
26 res.sendFile(embedPath)
27 }
28)
9aac4423
C
29clientsRouter.use(
30 '/videos/test-embed',
31 (req: express.Request, res: express.Response) => res.sendFile(testEmbedPath)
32)
830bcd0f 33
79530164 34// Static HTML/CSS/JS client files
78967fca
C
35
36const staticClientFiles = [
fcc7c060 37 'manifest.webmanifest',
78967fca
C
38 'ngsw-worker.js',
39 'ngsw.json'
40]
41for (const staticClientFile of staticClientFiles) {
42 const path = join(root(), 'client', 'dist', staticClientFile)
43 clientsRouter.use('/' + staticClientFile, express.static(path, { maxAge: STATIC_MAX_AGE }))
44}
45
65fcc311 46clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE }))
6bafac54 47clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))
79530164 48
e945b184 49clientsRouter.use('/client/locales/:locale/:file.json', function (req, res) {
7ce44a74
C
50 const locale = req.params.locale
51 const file = req.params.file
52
74b7c6d4
C
53 if (is18nLocale(locale) && LOCALE_FILES.indexOf(file) !== -1) {
54 const completeLocale = getCompleteLocale(locale)
55 const completeFileLocale = buildFileLocale(completeLocale)
56 return res.sendFile(join(__dirname, `../../../client/dist/locale/${file}_${completeFileLocale}.json`))
e945b184
C
57 }
58
59 return res.sendStatus(404)
60})
61
79530164 62// 404 for static files not found
075f16ca 63clientsRouter.use('/client/*', (req: express.Request, res: express.Response, next: express.NextFunction) => {
79530164
C
64 res.sendStatus(404)
65})
66
989e526a
C
67// Always serve index client page (the client is a single page application, let it handle routing)
68// Try to provide the right language index.html
57c36b27 69clientsRouter.use('/(:language)?', async function (req, res) {
989e526a 70 if (req.accepts(ACCEPT_HEADERS) === 'html') {
57c36b27
C
71 try {
72 await generateHTMLPage(req, res, req.params.language)
73 return
74 } catch (err) {
75 logger.error('Cannot generate HTML page.', err)
76 }
989e526a
C
77 }
78
79 return res.status(404).end()
80})
81
830bcd0f
C
82// ---------------------------------------------------------------------------
83
65fcc311
C
84export {
85 clientsRouter
86}
830bcd0f
C
87
88// ---------------------------------------------------------------------------
89
e032aec9 90async function generateHTMLPage (req: express.Request, res: express.Response, paramLang?: string) {
9aac4423 91 const html = await ClientHtml.getDefaultHTMLPage(req, res, paramLang)
989e526a 92
e032aec9 93 return sendHTML(html, res)
989e526a
C
94}
95
e032aec9
C
96async function generateWatchHtmlPage (req: express.Request, res: express.Response) {
97 const html = await ClientHtml.getWatchHTMLPage(req.params.id + '', req, res)
830bcd0f 98
e032aec9 99 return sendHTML(html, res)
830bcd0f
C
100}
101
e032aec9
C
102function sendHTML (html: string, res: express.Response) {
103 res.set('Content-Type', 'text/html; charset=UTF-8')
eb080476 104
e032aec9 105 return res.send(html)
830bcd0f 106}