PeerTube/server/middlewares/validators/feeds.ts

56 lines
2.6 KiB
TypeScript
Raw Normal View History

import * as express from 'express'
import { param, query } from 'express-validator/check'
2019-03-19 09:26:50 +01:00
import { doesAccountIdExist, isAccountNameValid, doesAccountNameWithHostExist } from '../../helpers/custom-validators/accounts'
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
import { logger } from '../../helpers/logger'
import { areValidationErrors } from './utils'
import { isValidRSSFeed } from '../../helpers/custom-validators/feeds'
2019-03-19 09:26:50 +01:00
import { doesVideoChannelIdExist, doesVideoChannelNameWithHostExist } from '../../helpers/custom-validators/video-channels'
import { doesVideoExist } from '../../helpers/custom-validators/videos'
2018-08-17 15:45:42 +02:00
import { isActorPreferredUsernameValid } from '../../helpers/custom-validators/activitypub/actor'
2018-06-08 20:34:37 +02:00
const videoFeedsValidator = [
param('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
query('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
query('accountId').optional().custom(isIdOrUUIDValid),
query('accountName').optional().custom(isAccountNameValid),
2018-06-08 20:34:37 +02:00
query('videoChannelId').optional().custom(isIdOrUUIDValid),
2018-08-17 15:45:42 +02:00
query('videoChannelName').optional().custom(isActorPreferredUsernameValid),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking feeds parameters', { parameters: req.query })
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (req.query.accountId && !await doesAccountIdExist(req.query.accountId, res)) return
if (req.query.videoChannelId && !await doesVideoChannelIdExist(req.query.videoChannelId, res)) return
if (req.query.accountName && !await doesAccountNameWithHostExist(req.query.accountName, res)) return
if (req.query.videoChannelName && !await doesVideoChannelNameWithHostExist(req.query.videoChannelName, res)) return
return next()
}
]
2018-06-08 20:34:37 +02:00
const videoCommentsFeedsValidator = [
param('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
query('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
query('videoId').optional().custom(isIdOrUUIDValid),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking feeds parameters', { parameters: req.query })
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (req.query.videoId && !await doesVideoExist(req.query.videoId, res)) return
2018-06-08 20:34:37 +02:00
return next()
}
]
// ---------------------------------------------------------------------------
export {
2018-06-08 20:34:37 +02:00
videoFeedsValidator,
videoCommentsFeedsValidator
}