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

35 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-07-25 16:23:44 +02:00
import { body, param } from 'express-validator'
2018-10-05 11:15:06 +02:00
import * as express from 'express'
2019-07-25 16:23:44 +02:00
import { isIdOrUUIDValid, toIntOrNull } from '../../../helpers/custom-validators/misc'
2018-10-05 11:15:06 +02:00
import { areValidationErrors } from '../utils'
import { logger } from '../../../helpers/logger'
2019-07-23 10:40:39 +02:00
import { doesVideoExist } from '../../../helpers/middlewares'
2018-10-05 11:15:06 +02:00
const videoWatchingValidator = [
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
body('currentTime')
2019-07-25 16:23:44 +02:00
.customSanitizer(toIntOrNull)
2018-10-05 11:15:06 +02:00
.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
2019-03-19 09:26:50 +01:00
if (!await doesVideoExist(req.params.videoId, res, 'id')) return
2018-10-05 11:15:06 +02:00
2019-03-19 10:35:15 +01:00
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()
}
2018-10-05 11:15:06 +02:00
return next()
}
]
// ---------------------------------------------------------------------------
export {
videoWatchingValidator
}