2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2019-07-25 16:23:44 +02:00
|
|
|
import { body, param } from 'express-validator'
|
2022-02-11 10:51:33 +01:00
|
|
|
import { UserRight } from '@shared/models'
|
2019-07-23 10:40:39 +02:00
|
|
|
import { isVideoCaptionFile, isVideoCaptionLanguageValid } from '../../../helpers/custom-validators/video-captions'
|
2018-10-05 11:15:06 +02:00
|
|
|
import { cleanUpReqFiles } from '../../../helpers/express-utils'
|
2021-06-03 17:33:44 +02:00
|
|
|
import { CONSTRAINTS_FIELDS, MIMETYPES } from '../../../initializers/constants'
|
2022-01-06 13:27:29 +01:00
|
|
|
import {
|
|
|
|
areValidationErrors,
|
2022-06-22 09:44:08 +02:00
|
|
|
checkCanSeeVideo,
|
2022-01-06 13:27:29 +01:00
|
|
|
checkUserCanManageVideo,
|
|
|
|
doesVideoCaptionExist,
|
|
|
|
doesVideoExist,
|
|
|
|
isValidVideoIdParam
|
|
|
|
} from '../shared'
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
const addVideoCaptionValidator = [
|
2021-06-28 17:30:59 +02:00
|
|
|
isValidVideoIdParam('videoId'),
|
|
|
|
|
|
|
|
param('captionLanguage')
|
2022-08-17 14:27:04 +02:00
|
|
|
.custom(isVideoCaptionLanguageValid).not().isEmpty(),
|
2021-06-28 17:30:59 +02:00
|
|
|
|
2018-07-12 19:02:00 +02:00
|
|
|
body('captionfile')
|
2020-01-31 16:56:52 +01:00
|
|
|
.custom((_, { req }) => isVideoCaptionFile(req.files, 'captionfile'))
|
|
|
|
.withMessage(
|
|
|
|
'This caption file is not supported or too large. ' +
|
2021-08-18 11:25:08 +02:00
|
|
|
`Please, make sure it is under ${CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max} bytes ` +
|
|
|
|
'and one of the following mimetypes: ' +
|
2020-01-31 16:56:52 +01:00
|
|
|
Object.keys(MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT).map(key => `${key} (${MIMETYPES.VIDEO_CAPTIONS.MIMETYPE_EXT[key]})`).join(', ')
|
|
|
|
),
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2018-07-31 15:09:34 +02:00
|
|
|
if (areValidationErrors(req, res)) return cleanUpReqFiles(req)
|
2019-03-19 09:26:50 +01:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res)) return cleanUpReqFiles(req)
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
// Check if the user who did the request is able to update the video
|
|
|
|
const user = res.locals.oauth.token.User
|
2019-08-15 11:53:26 +02:00
|
|
|
if (!checkUserCanManageVideo(user, res.locals.videoAll, UserRight.UPDATE_ANY_VIDEO, res)) return cleanUpReqFiles(req)
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const deleteVideoCaptionValidator = [
|
2021-06-28 17:30:59 +02:00
|
|
|
isValidVideoIdParam('videoId'),
|
|
|
|
|
|
|
|
param('captionLanguage')
|
|
|
|
.custom(isVideoCaptionLanguageValid).not().isEmpty().withMessage('Should have a valid caption language'),
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
2019-03-19 09:26:50 +01:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res)) return
|
2019-08-15 11:53:26 +02:00
|
|
|
if (!await doesVideoCaptionExist(res.locals.videoAll, req.params.captionLanguage, res)) return
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
// Check if the user who did the request is able to update the video
|
|
|
|
const user = res.locals.oauth.token.User
|
2019-08-15 11:53:26 +02:00
|
|
|
if (!checkUserCanManageVideo(user, res.locals.videoAll, UserRight.UPDATE_ANY_VIDEO, res)) return
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const listVideoCaptionsValidator = [
|
2021-06-28 17:30:59 +02:00
|
|
|
isValidVideoIdParam('videoId'),
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
2022-01-06 13:27:29 +01:00
|
|
|
if (!await doesVideoExist(req.params.videoId, res, 'only-video')) return
|
|
|
|
|
|
|
|
const video = res.locals.onlyVideo
|
2022-06-22 09:44:08 +02:00
|
|
|
if (!await checkCanSeeVideo({ req, res, video, paramId: req.params.videoId })) return
|
2018-07-12 19:02:00 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
export {
|
|
|
|
addVideoCaptionValidator,
|
|
|
|
listVideoCaptionsValidator,
|
|
|
|
deleteVideoCaptionValidator
|
|
|
|
}
|