diff options
author | Chocobozzz <me@florianbigard.com> | 2023-02-27 09:44:03 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-02-27 09:44:03 +0100 |
commit | d7ce9dca613d96889baa0c93063806268f68cce5 (patch) | |
tree | ba453ee3ff972b8838ff94006bfae9a3e1123a59 /server/middlewares/validators | |
parent | 4765348107ddd21cd2a0b86093859aa2e23ac0f1 (diff) | |
download | PeerTube-d7ce9dca613d96889baa0c93063806268f68cce5.tar.gz PeerTube-d7ce9dca613d96889baa0c93063806268f68cce5.tar.zst PeerTube-d7ce9dca613d96889baa0c93063806268f68cce5.zip |
Add additional check for playlistName
Diffstat (limited to 'server/middlewares/validators')
-rw-r--r-- | server/middlewares/validators/static.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/middlewares/validators/static.ts b/server/middlewares/validators/static.ts index d3d307787..45d56bcd6 100644 --- a/server/middlewares/validators/static.ts +++ b/server/middlewares/validators/static.ts | |||
@@ -2,7 +2,7 @@ import express from 'express' | |||
2 | import { query } from 'express-validator' | 2 | import { query } from 'express-validator' |
3 | import LRUCache from 'lru-cache' | 3 | import LRUCache from 'lru-cache' |
4 | import { basename, dirname } from 'path' | 4 | import { basename, dirname } from 'path' |
5 | import { exists, isUUIDValid, toBooleanOrNull } from '@server/helpers/custom-validators/misc' | 5 | import { exists, isSafePeerTubeFilenameWithoutExtension, isUUIDValid, toBooleanOrNull } from '@server/helpers/custom-validators/misc' |
6 | import { logger } from '@server/helpers/logger' | 6 | import { logger } from '@server/helpers/logger' |
7 | import { LRU_CACHE } from '@server/initializers/constants' | 7 | import { LRU_CACHE } from '@server/initializers/constants' |
8 | import { VideoModel } from '@server/models/video/video' | 8 | import { VideoModel } from '@server/models/video/video' |
@@ -69,6 +69,10 @@ const ensureCanAccessPrivateVideoHLSFiles = [ | |||
69 | .customSanitizer(toBooleanOrNull) | 69 | .customSanitizer(toBooleanOrNull) |
70 | .isBoolean().withMessage('Should be a valid reinjectVideoFileToken boolean'), | 70 | .isBoolean().withMessage('Should be a valid reinjectVideoFileToken boolean'), |
71 | 71 | ||
72 | query('playlistName') | ||
73 | .optional() | ||
74 | .customSanitizer(isSafePeerTubeFilenameWithoutExtension), | ||
75 | |||
72 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { | 76 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { |
73 | if (areValidationErrors(req, res)) return | 77 | if (areValidationErrors(req, res)) return |
74 | 78 | ||