]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/feeds.ts
Merge branch 'master' into develop
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / feeds.ts
CommitLineData
244e76a5
RK
1import * as express from 'express'
2import { param, query } from 'express-validator/check'
0f6acda1 3import { doesAccountIdExist, isAccountNameValid, doesAccountNameWithHostExist } from '../../helpers/custom-validators/accounts'
244e76a5
RK
4import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
5import { logger } from '../../helpers/logger'
6import { areValidationErrors } from './utils'
7import { isValidRSSFeed } from '../../helpers/custom-validators/feeds'
0f6acda1
C
8import { doesVideoChannelIdExist, doesVideoChannelNameWithHostExist } from '../../helpers/custom-validators/video-channels'
9import { doesVideoExist } from '../../helpers/custom-validators/videos'
8a19bee1 10import { isActorPreferredUsernameValid } from '../../helpers/custom-validators/activitypub/actor'
244e76a5 11
fe3a55b0 12const videoFeedsValidator = [
244e76a5
RK
13 param('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
14 query('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
15 query('accountId').optional().custom(isIdOrUUIDValid),
16 query('accountName').optional().custom(isAccountNameValid),
fe3a55b0 17 query('videoChannelId').optional().custom(isIdOrUUIDValid),
8a19bee1 18 query('videoChannelName').optional().custom(isActorPreferredUsernameValid),
244e76a5
RK
19
20 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
21 logger.debug('Checking feeds parameters', { parameters: req.query })
22
23 if (areValidationErrors(req, res)) return
24
0f6acda1
C
25 if (req.query.accountId && !await doesAccountIdExist(req.query.accountId, res)) return
26 if (req.query.videoChannelId && !await doesVideoChannelIdExist(req.query.videoChannelId, res)) return
27 if (req.query.accountName && !await doesAccountNameWithHostExist(req.query.accountName, res)) return
28 if (req.query.videoChannelName && !await doesVideoChannelNameWithHostExist(req.query.videoChannelName, res)) return
244e76a5
RK
29
30 return next()
31 }
32]
33
fe3a55b0
C
34const videoCommentsFeedsValidator = [
35 param('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
36 query('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
37 query('videoId').optional().custom(isIdOrUUIDValid),
38
39 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
40 logger.debug('Checking feeds parameters', { parameters: req.query })
41
42 if (areValidationErrors(req, res)) return
43
0f6acda1 44 if (req.query.videoId && !await doesVideoExist(req.query.videoId, res)) return
fe3a55b0
C
45
46 return next()
47 }
48]
49
244e76a5
RK
50// ---------------------------------------------------------------------------
51
52export {
fe3a55b0
C
53 videoFeedsValidator,
54 videoCommentsFeedsValidator
244e76a5 55}