PeerTube/server/middlewares/validators/videos/video-rates.ts

70 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-11-14 15:01:28 +01:00
import * as express from 'express'
2019-07-25 16:23:44 +02:00
import { body, param, query } from 'express-validator'
2019-04-09 11:21:36 +02:00
import { isIdOrUUIDValid } from '../../../helpers/custom-validators/misc'
import { isRatingValid } from '../../../helpers/custom-validators/video-rates'
2019-07-23 10:40:39 +02:00
import { isVideoRatingTypeValid } from '../../../helpers/custom-validators/videos'
2018-11-14 15:01:28 +01:00
import { logger } from '../../../helpers/logger'
import { areValidationErrors } from '../utils'
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
import { VideoRateType } from '../../../../shared/models/videos'
import { isAccountNameValid } from '../../../helpers/custom-validators/accounts'
2019-07-23 10:40:39 +02:00
import { doesVideoExist } from '../../../helpers/middlewares'
2018-11-14 15:01:28 +01:00
const videoUpdateRateValidator = [
param('id').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
body('rating').custom(isVideoRatingTypeValid).withMessage('Should have a valid rate type'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoRate parameters', { parameters: req.body })
if (areValidationErrors(req, res)) return
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.id, res)) return
2018-11-14 15:01:28 +01:00
return next()
}
]
const getAccountVideoRateValidatorFactory = function (rateType: VideoRateType) {
2018-11-14 15:01:28 +01:00
return [
param('name').custom(isAccountNameValid).withMessage('Should have a valid account name'),
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid videoId'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoCommentGetValidator parameters.', { parameters: req.params })
if (areValidationErrors(req, res)) return
const rate = await AccountVideoRateModel.loadLocalAndPopulateVideo(rateType, req.params.name, req.params.videoId)
if (!rate) {
return res.status(404)
.json({ error: 'Video rate not found' })
.end()
}
res.locals.accountVideoRate = rate
return next()
}
]
}
const videoRatingValidator = [
query('rating').optional().custom(isRatingValid).withMessage('Value must be one of "like" or "dislike"'),
2020-01-31 16:56:52 +01:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking rating parameter', { parameters: req.params })
if (areValidationErrors(req, res)) return
return next()
}
]
2018-11-14 15:01:28 +01:00
// ---------------------------------------------------------------------------
export {
videoUpdateRateValidator,
getAccountVideoRateValidatorFactory,
videoRatingValidator
2018-11-14 15:01:28 +01:00
}