]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/themes.ts
Merge branch 'release/3.2.0' into develop
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / themes.ts
CommitLineData
345da516 1import * as express from 'express'
c8861d5d 2import { param } from 'express-validator'
345da516
C
3import { logger } from '../../helpers/logger'
4import { areValidationErrors } from './utils'
5import { isPluginNameValid, isPluginVersionValid } from '../../helpers/custom-validators/plugins'
6import { PluginManager } from '../../lib/plugins/plugin-manager'
7import { isSafePath } from '../../helpers/custom-validators/misc'
2d53be02 8import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
345da516
C
9
10const serveThemeCSSValidator = [
11 param('themeName').custom(isPluginNameValid).withMessage('Should have a valid theme name'),
12 param('themeVersion').custom(isPluginVersionValid).withMessage('Should have a valid theme version'),
13 param('staticEndpoint').custom(isSafePath).withMessage('Should have a valid static endpoint'),
14
15 (req: express.Request, res: express.Response, next: express.NextFunction) => {
16 logger.debug('Checking serveThemeCSS parameters', { parameters: req.params })
17
18 if (areValidationErrors(req, res)) return
19
e1c55031 20 const theme = PluginManager.Instance.getRegisteredThemeByShortName(req.params.themeName)
345da516
C
21
22 if (!theme || theme.version !== req.params.themeVersion) {
2d53be02 23 return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
345da516
C
24 }
25
26 if (theme.css.includes(req.params.staticEndpoint) === false) {
2d53be02 27 return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
345da516
C
28 }
29
30 res.locals.registeredPlugin = theme
31
32 return next()
33 }
34]
35
36// ---------------------------------------------------------------------------
37
38export {
39 serveThemeCSSValidator
40}