2019-07-25 10:23:44 -04:00
|
|
|
import { body, param } from 'express-validator'
|
2018-10-05 05:15:06 -04:00
|
|
|
import * as express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { isIdOrUUIDValid, toIntOrNull } from '../../../helpers/custom-validators/misc'
|
2018-10-05 05:15:06 -04:00
|
|
|
import { areValidationErrors } from '../utils'
|
|
|
|
import { logger } from '../../../helpers/logger'
|
2019-07-23 04:40:39 -04:00
|
|
|
import { doesVideoExist } from '../../../helpers/middlewares'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2018-10-05 05:15:06 -04:00
|
|
|
|
|
|
|
const videoWatchingValidator = [
|
|
|
|
param('videoId').custom(isIdOrUUIDValid).not().isEmpty().withMessage('Should have a valid id'),
|
|
|
|
body('currentTime')
|
2019-07-25 10:23:44 -04:00
|
|
|
.customSanitizer(toIntOrNull)
|
2018-10-05 05:15:06 -04: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 04:26:50 -04:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res, 'id')) return
|
2018-10-05 05:15:06 -04:00
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
const user = res.locals.oauth.token.User
|
2018-12-17 09:52:38 -05:00
|
|
|
if (user.videosHistoryEnabled === false) {
|
|
|
|
logger.warn('Cannot set videos to watch by user %d: videos history is disabled.', user.id)
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.status(HttpStatusCode.CONFLICT_409).end()
|
2018-12-17 09:52:38 -05:00
|
|
|
}
|
|
|
|
|
2018-10-05 05:15:06 -04:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoWatchingValidator
|
|
|
|
}
|