]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/client.ts
add client overrides to nginx configuration (#3297)
[github/Chocobozzz/PeerTube.git] / server / controllers / client.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
bd45d503 2import { constants, promises as fs } from 'fs'
65fcc311 3import { join } from 'path'
bd45d503
C
4import { CONFIG } from '@server/initializers/config'
5import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '@shared/core-utils/i18n'
e032aec9 6import { root } from '../helpers/core-utils'
bd45d503 7import { logger } from '../helpers/logger'
34dd7cb4 8import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants'
e032aec9 9import { ClientHtml } from '../lib/client-html'
bd45d503 10import { asyncMiddleware, embedCSP } from '../middlewares'
830bcd0f 11
65fcc311 12const clientsRouter = express.Router()
830bcd0f 13
e02643f3 14const distPath = join(root(), 'client', 'dist')
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
8d987ec6 19clientsRouter.use('/videos/watch/playlist/:id', asyncMiddleware(generateWatchPlaylistHtmlPage))
9aac4423 20clientsRouter.use('/videos/watch/:id', asyncMiddleware(generateWatchHtmlPage))
92bf2f62
C
21clientsRouter.use('/accounts/:nameWithHost', asyncMiddleware(generateAccountHtmlPage))
22clientsRouter.use('/video-channels/:nameWithHost', asyncMiddleware(generateVideoChannelHtmlPage))
830bcd0f 23
5abc96fc
C
24const embedMiddlewares = [
25 CONFIG.CSP.ENABLED
26 ? embedCSP
27 : (req: express.Request, res: express.Response, next: express.NextFunction) => next(),
dfab4fa9 28
cf649c2e 29 (req: express.Request, res: express.Response, next: express.NextFunction) => {
d00e2393 30 res.removeHeader('X-Frame-Options')
cf649c2e 31
78646451 32 // Don't cache HTML file since it's an index to the immutable JS/CSS files
cf649c2e
C
33 res.setHeader('Cache-Control', 'public, max-age=0')
34
35 next()
36 },
37
38 asyncMiddleware(generateEmbedHtmlPage)
5abc96fc
C
39]
40
41clientsRouter.use('/videos/embed', ...embedMiddlewares)
42clientsRouter.use('/video-playlists/embed', ...embedMiddlewares)
9054a8b6
C
43
44const testEmbedController = (req: express.Request, res: express.Response) => res.sendFile(testEmbedPath)
45
46clientsRouter.use('/videos/test-embed', testEmbedController)
47clientsRouter.use('/video-playlists/test-embed', testEmbedController)
830bcd0f 48
79530164 49// Static HTML/CSS/JS client files
78967fca 50const staticClientFiles = [
78967fca
C
51 'ngsw-worker.js',
52 'ngsw.json'
53]
caf2aaf4 54
78967fca
C
55for (const staticClientFile of staticClientFiles) {
56 const path = join(root(), 'client', 'dist', staticClientFile)
78967fca 57
caf2aaf4 58 clientsRouter.get(`/${staticClientFile}`, (req: express.Request, res: express.Response) => {
cd4cb177
C
59 res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
60 })
61}
79530164 62
caf2aaf4
K
63// Dynamic PWA manifest
64clientsRouter.get('/manifest.webmanifest', asyncMiddleware(generateManifest))
65
66// Static client overrides
8872828d 67// Must be consistent with static client overrides redirections in /support/nginx/peertube
caf2aaf4
K
68const staticClientOverrides = [
69 'assets/images/logo.svg',
70 'assets/images/favicon.png',
71 'assets/images/icons/icon-36x36.png',
72 'assets/images/icons/icon-48x48.png',
73 'assets/images/icons/icon-72x72.png',
74 'assets/images/icons/icon-96x96.png',
75 'assets/images/icons/icon-144x144.png',
76 'assets/images/icons/icon-192x192.png',
77 'assets/images/icons/icon-512x512.png'
78]
79
80for (const staticClientOverride of staticClientOverrides) {
81 const overridePhysicalPath = join(CONFIG.STORAGE.CLIENT_OVERRIDES_DIR, staticClientOverride)
82 clientsRouter.use(`/client/${staticClientOverride}`, asyncMiddleware(serveClientOverride(overridePhysicalPath)))
83}
84
552d95b1 85clientsRouter.use('/client/locales/:locale/:file.json', serveServerTranslations)
cd4cb177 86clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE.CLIENT }))
552d95b1
C
87
88// 404 for static files not found
89clientsRouter.use('/client/*', (req: express.Request, res: express.Response) => {
90 res.sendStatus(404)
91})
92
93// Always serve index client page (the client is a single page application, let it handle routing)
94// Try to provide the right language index.html
95clientsRouter.use('/(:language)?', asyncMiddleware(serveIndexHTML))
96
97// ---------------------------------------------------------------------------
98
99export {
100 clientsRouter
101}
102
103// ---------------------------------------------------------------------------
104
a1587156 105function serveServerTranslations (req: express.Request, res: express.Response) {
7ce44a74
C
106 const locale = req.params.locale
107 const file = req.params.file
108
bdd428a6 109 if (is18nLocale(locale) && LOCALE_FILES.includes(file)) {
74b7c6d4
C
110 const completeLocale = getCompleteLocale(locale)
111 const completeFileLocale = buildFileLocale(completeLocale)
cd4cb177 112
350131cb 113 const path = join(__dirname, `../../../client/dist/locale/${file}.${completeFileLocale}.json`)
cd4cb177 114 return res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
e945b184
C
115 }
116
117 return res.sendStatus(404)
552d95b1 118}
79530164 119
552d95b1 120async function serveIndexHTML (req: express.Request, res: express.Response) {
989e526a 121 if (req.accepts(ACCEPT_HEADERS) === 'html') {
57c36b27
C
122 try {
123 await generateHTMLPage(req, res, req.params.language)
124 return
125 } catch (err) {
126 logger.error('Cannot generate HTML page.', err)
127 }
989e526a
C
128 }
129
130 return res.status(404).end()
65fcc311 131}
830bcd0f 132
cf649c2e
C
133async function generateEmbedHtmlPage (req: express.Request, res: express.Response) {
134 const html = await ClientHtml.getEmbedHTML()
135
136 return sendHTML(html, res)
137}
138
e032aec9 139async function generateHTMLPage (req: express.Request, res: express.Response, paramLang?: string) {
9aac4423 140 const html = await ClientHtml.getDefaultHTMLPage(req, res, paramLang)
989e526a 141
e032aec9 142 return sendHTML(html, res)
989e526a
C
143}
144
e032aec9
C
145async function generateWatchHtmlPage (req: express.Request, res: express.Response) {
146 const html = await ClientHtml.getWatchHTMLPage(req.params.id + '', req, res)
830bcd0f 147
e032aec9 148 return sendHTML(html, res)
830bcd0f
C
149}
150
8d987ec6
K
151async function generateWatchPlaylistHtmlPage (req: express.Request, res: express.Response) {
152 const html = await ClientHtml.getWatchPlaylistHTMLPage(req.params.id + '', req, res)
153
154 return sendHTML(html, res)
155}
156
92bf2f62
C
157async function generateAccountHtmlPage (req: express.Request, res: express.Response) {
158 const html = await ClientHtml.getAccountHTMLPage(req.params.nameWithHost, req, res)
159
160 return sendHTML(html, res)
161}
162
163async function generateVideoChannelHtmlPage (req: express.Request, res: express.Response) {
164 const html = await ClientHtml.getVideoChannelHTMLPage(req.params.nameWithHost, req, res)
165
166 return sendHTML(html, res)
167}
168
e032aec9
C
169function sendHTML (html: string, res: express.Response) {
170 res.set('Content-Type', 'text/html; charset=UTF-8')
eb080476 171
e032aec9 172 return res.send(html)
830bcd0f 173}
caf2aaf4
K
174
175async function generateManifest (req: express.Request, res: express.Response) {
176 const manifestPhysicalPath = join(root(), 'client', 'dist', 'manifest.webmanifest')
177 const manifestJson = await fs.readFile(manifestPhysicalPath, 'utf8')
178 const manifest = JSON.parse(manifestJson)
179
180 manifest.name = CONFIG.INSTANCE.NAME
181 manifest.short_name = CONFIG.INSTANCE.NAME
182 manifest.description = CONFIG.INSTANCE.SHORT_DESCRIPTION
183
184 res.json(manifest)
185}
186
187function serveClientOverride (path: string) {
188 return async (req: express.Request, res: express.Response, next: express.NextFunction) => {
189 try {
190 await fs.access(path, constants.F_OK)
191 // Serve override client
192 res.sendFile(path, { maxAge: STATIC_MAX_AGE.SERVER })
193 } catch {
194 // Serve dist client
195 next()
196 }
197 }
198}