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

72 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-08-27 07:32:44 -05:00
import express from 'express'
2019-07-25 09:23:44 -05:00
import { body, param, query } from 'express-validator'
2021-07-16 03:42:24 -05:00
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
import { VideoRateType } from '../../../../shared/models/videos'
import { isAccountNameValid } from '../../../helpers/custom-validators/accounts'
import { isIdValid } from '../../../helpers/custom-validators/misc'
import { isRatingValid } from '../../../helpers/custom-validators/video-rates'
2019-07-23 03:40:39 -05:00
import { isVideoRatingTypeValid } from '../../../helpers/custom-validators/videos'
2018-11-14 08:01:28 -06:00
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
2022-06-22 02:44:08 -05:00
import { areValidationErrors, checkCanSeeVideo, doesVideoExist, isValidVideoIdParam } from '../shared'
2018-11-14 08:01:28 -06:00
const videoUpdateRateValidator = [
isValidVideoIdParam('id'),
body('rating')
.custom(isVideoRatingTypeValid),
2018-11-14 08:01:28 -06:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
2019-03-19 03:26:50 -05:00
if (!await doesVideoExist(req.params.id, res)) return
2018-11-14 08:01:28 -06:00
2022-06-22 02:44:08 -05:00
if (!await checkCanSeeVideo({ req, res, paramId: req.params.id, video: res.locals.videoAll })) return
2018-11-14 08:01:28 -06:00
return next()
}
]
const getAccountVideoRateValidatorFactory = function (rateType: VideoRateType) {
2018-11-14 08:01:28 -06:00
return [
param('name')
.custom(isAccountNameValid),
param('videoId')
.custom(isIdValid),
2018-11-14 08:01:28 -06:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
const rate = await AccountVideoRateModel.loadLocalAndPopulateVideo(rateType, req.params.name, +req.params.videoId)
2018-11-14 08:01:28 -06:00
if (!rate) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video rate not found'
})
2018-11-14 08:01:28 -06:00
}
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 09:56:52 -06:00
(req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
return next()
}
]
2018-11-14 08:01:28 -06:00
// ---------------------------------------------------------------------------
export {
videoUpdateRateValidator,
getAccountVideoRateValidatorFactory,
videoRatingValidator
2018-11-14 08:01:28 -06:00
}