2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2021-06-28 17:30:59 +02:00
|
|
|
import { body } from 'express-validator'
|
2021-07-16 10:42:24 +02:00
|
|
|
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
|
2021-06-28 17:30:59 +02:00
|
|
|
import { toIntOrNull } from '../../../helpers/custom-validators/misc'
|
2018-10-05 11:15:06 +02:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2021-06-28 17:30:59 +02:00
|
|
|
import { areValidationErrors, doesVideoExist, isValidVideoIdParam } from '../shared'
|
2018-10-05 11:15:06 +02:00
|
|
|
|
|
|
|
const videoWatchingValidator = [
|
2021-06-28 17:30:59 +02:00
|
|
|
isValidVideoIdParam('videoId'),
|
|
|
|
|
2018-10-05 11:15:06 +02:00
|
|
|
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
|
2018-12-17 15:52:38 +01:00
|
|
|
if (user.videosHistoryEnabled === false) {
|
|
|
|
logger.warn('Cannot set videos to watch by user %d: videos history is disabled.', user.id)
|
2021-06-01 01:36:53 +02:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.CONFLICT_409,
|
|
|
|
message: 'Video history is disabled'
|
|
|
|
})
|
2018-12-17 15:52:38 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 11:15:06 +02:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoWatchingValidator
|
|
|
|
}
|