X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fvalidators%2Fvideos%2Fvideo-watch.ts;h=d83710a647647e071c67c0c118fd501d77281ac6;hb=3318147300b4f998adf728eb0a5a14a4c1829c51;hp=00c739d31f5ddb48af7a27a9726f272818fc93f1;hpb=76148b27f7501bac061992136852be4303370c8d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/validators/videos/video-watch.ts b/server/middlewares/validators/videos/video-watch.ts index 00c739d31..d83710a64 100644 --- a/server/middlewares/validators/videos/video-watch.ts +++ b/server/middlewares/validators/videos/video-watch.ts @@ -1,13 +1,13 @@ -import { body, param } from 'express-validator' -import * as express from 'express' -import { isIdOrUUIDValid, toIntOrNull } from '../../../helpers/custom-validators/misc' -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 { doesVideoExist } from '../../../helpers/middlewares' -import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes' +import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from '../shared' const videoWatchingValidator = [ - param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'), + isValidVideoIdParam('videoId'), + body('currentTime') .customSanitizer(toIntOrNull) .isInt().withMessage('Should have correct current time'),