1
0
Fork 0
peertube/server/middlewares/validators/videos/video-watch.ts

39 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-10-05 09:15:06 +00:00
import * as express from 'express'
import { body } from 'express-validator'
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
import { toIntOrNull } from '../../../helpers/custom-validators/misc'
2018-10-05 09:15:06 +00:00
import { logger } from '../../../helpers/logger'
import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from '../shared'
2018-10-05 09:15:06 +00:00
const videoWatchingValidator = [
isValidVideoIdParam('videoId'),
2018-10-05 09:15:06 +00:00
body('currentTime')
2019-07-25 14:23:44 +00:00
.customSanitizer(toIntOrNull)
2018-10-05 09:15:06 +00: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 08:26:50 +00:00
if (!await doesVideoExist(req.params.videoId, res, 'id')) return
2018-10-05 09:15:06 +00:00
2019-03-19 09:35:15 +00: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.fail({
status: HttpStatusCode.CONFLICT_409,
message: 'Video history is disabled'
})
}
2018-10-05 09:15:06 +00:00
return next()
}
]
// ---------------------------------------------------------------------------
export {
videoWatchingValidator
}