]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/client.ts
Merge branch 'release/1.4.0' into develop
[github/Chocobozzz/PeerTube.git] / server / controllers / client.ts
1 import * as express from 'express'
2 import { join } from 'path'
3 import { root } from '../helpers/core-utils'
4 import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants'
5 import { asyncMiddleware, embedCSP } from '../middlewares'
6 import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '../../shared/models/i18n/i18n'
7 import { ClientHtml } from '../lib/client-html'
8 import { logger } from '../helpers/logger'
9
10 const clientsRouter = express.Router()
11
12 const distPath = join(root(), 'client', 'dist')
13 const embedPath = join(distPath, 'standalone', 'videos', 'embed.html')
14 const testEmbedPath = join(distPath, 'standalone', 'videos', 'test-embed.html')
15
16 // Special route that add OpenGraph and oEmbed tags
17 // Do not use a template engine for a so little thing
18 clientsRouter.use('/videos/watch/:id', asyncMiddleware(generateWatchHtmlPage))
19 clientsRouter.use('/accounts/:nameWithHost', asyncMiddleware(generateAccountHtmlPage))
20 clientsRouter.use('/video-channels/:nameWithHost', asyncMiddleware(generateVideoChannelHtmlPage))
21
22 clientsRouter.use(
23 '/videos/embed',
24 embedCSP,
25 (req: express.Request, res: express.Response) => {
26 res.removeHeader('X-Frame-Options')
27 res.sendFile(embedPath)
28 }
29 )
30 clientsRouter.use(
31 '/videos/test-embed',
32 (req: express.Request, res: express.Response) => res.sendFile(testEmbedPath)
33 )
34
35 // Static HTML/CSS/JS client files
36
37 const staticClientFiles = [
38 'manifest.webmanifest',
39 'ngsw-worker.js',
40 'ngsw.json'
41 ]
42 for (const staticClientFile of staticClientFiles) {
43 const path = join(root(), 'client', 'dist', staticClientFile)
44
45 clientsRouter.get('/' + staticClientFile, (req: express.Request, res: express.Response) => {
46 res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
47 })
48 }
49
50 clientsRouter.use('/client/locales/:locale/:file.json', serveServerTranslations)
51 clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE.CLIENT }))
52
53 // 404 for static files not found
54 clientsRouter.use('/client/*', (req: express.Request, res: express.Response) => {
55 res.sendStatus(404)
56 })
57
58 // Always serve index client page (the client is a single page application, let it handle routing)
59 // Try to provide the right language index.html
60 clientsRouter.use('/(:language)?', asyncMiddleware(serveIndexHTML))
61
62 // ---------------------------------------------------------------------------
63
64 export {
65 clientsRouter
66 }
67
68 // ---------------------------------------------------------------------------
69
70 async function serveServerTranslations (req: express.Request, res: express.Response) {
71 const locale = req.params.locale
72 const file = req.params.file
73
74 if (is18nLocale(locale) && LOCALE_FILES.indexOf(file) !== -1) {
75 const completeLocale = getCompleteLocale(locale)
76 const completeFileLocale = buildFileLocale(completeLocale)
77
78 const path = join(__dirname, `../../../client/dist/locale/${file}_${completeFileLocale}.json`)
79 return res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
80 }
81
82 return res.sendStatus(404)
83 }
84
85 async function serveIndexHTML (req: express.Request, res: express.Response) {
86 if (req.accepts(ACCEPT_HEADERS) === 'html') {
87 try {
88 await generateHTMLPage(req, res, req.params.language)
89 return
90 } catch (err) {
91 logger.error('Cannot generate HTML page.', err)
92 }
93 }
94
95 return res.status(404).end()
96 }
97
98 async function generateHTMLPage (req: express.Request, res: express.Response, paramLang?: string) {
99 const html = await ClientHtml.getDefaultHTMLPage(req, res, paramLang)
100
101 return sendHTML(html, res)
102 }
103
104 async function generateWatchHtmlPage (req: express.Request, res: express.Response) {
105 const html = await ClientHtml.getWatchHTMLPage(req.params.id + '', req, res)
106
107 return sendHTML(html, res)
108 }
109
110 async function generateAccountHtmlPage (req: express.Request, res: express.Response) {
111 const html = await ClientHtml.getAccountHTMLPage(req.params.nameWithHost, req, res)
112
113 return sendHTML(html, res)
114 }
115
116 async function generateVideoChannelHtmlPage (req: express.Request, res: express.Response) {
117 const html = await ClientHtml.getVideoChannelHTMLPage(req.params.nameWithHost, req, res)
118
119 return sendHTML(html, res)
120 }
121
122 function sendHTML (html: string, res: express.Response) {
123 res.set('Content-Type', 'text/html; charset=UTF-8')
124
125 return res.send(html)
126 }