X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fvalidators%2Fvideos%2Fvideo-watch.ts;h=d83710a647647e071c67c0c118fd501d77281ac6;hb=3318147300b4f998adf728eb0a5a14a4c1829c51;hp=c38ad8a10d284d18a1e9c3eb288007530ff6fe4f;hpb=8b9a525a180cc9f3a98c334cc052dcfc8f36dcd4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/videos/video-watch.ts b/server/middlewares/validators/videos/video-watch.ts index c38ad8a10..d83710a64 100644 --- a/server/middlewares/validators/videos/video-watch.ts +++ b/server/middlewares/validators/videos/video-watch.ts @@ -1,27 +1,30 @@ -import { body, param } from 'express-validator/check' -import * as express from 'express' -import { isIdOrUUIDValid } from '../../../helpers/custom-validators/misc' -import { isVideoExist } from '../../../helpers/custom-validators/videos' -import { areValidationErrors } from '../utils' +import express from 'express' +import { body } from 'express-validator' +import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes' +import { toIntOrNull } from '../../../helpers/custom-validators/misc' import { logger } from '../../../helpers/logger' -import { UserModel } from '../../../models/account/user' +import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from '../shared' const videoWatchingValidator = [ - param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'), + isValidVideoIdParam('videoId'), + body('currentTime') - .toInt() + .customSanitizer(toIntOrNull) .isInt().withMessage('Should have correct current time'), async (req: express.Request, res: express.Response, next: express.NextFunction) => { logger.debug('Checking videoWatching parameters', { parameters: req.body }) if (areValidationErrors(req, res)) return - if (!await isVideoExist(req.params.videoId, res, 'id')) return + if (!await doesVideoExist(req.params.videoId, res, 'id')) return - const user = res.locals.oauth.token.User as UserModel + const user = res.locals.oauth.token.User if (user.videosHistoryEnabled === false) { logger.warn('Cannot set videos to watch by user %d: videos history is disabled.', user.id) - return res.status(409).end() + return res.fail({ + status: HttpStatusCode.CONFLICT_409, + message: 'Video history is disabled' + }) } return next()