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

76 lines
3.0 KiB
TypeScript
Raw Normal View History

import * as express from 'express'
import { body } from 'express-validator/check'
import { isIdValid } from '../../helpers/custom-validators/misc'
import { logger } from '../../helpers/logger'
import { areValidationErrors } from './utils'
import { getCommonVideoAttributes } from './videos'
2018-08-07 07:54:36 +00:00
import { isVideoImportTargetUrlValid, isVideoImportTorrentFile } from '../../helpers/custom-validators/video-imports'
2018-08-14 13:28:30 +00:00
import { cleanUpReqFiles } from '../../helpers/express-utils'
2018-08-06 15:13:39 +00:00
import { isVideoChannelOfAccountExist, isVideoMagnetUriValid, isVideoNameValid } from '../../helpers/custom-validators/videos'
2018-08-03 09:10:31 +00:00
import { CONFIG } from '../../initializers/constants'
2018-08-07 07:54:36 +00:00
import { CONSTRAINTS_FIELDS } from '../../initializers'
const videoImportAddValidator = getCommonVideoAttributes().concat([
body('channelId')
.toInt()
.custom(isIdValid).withMessage('Should have correct video channel id'),
2018-08-06 15:13:39 +00:00
body('targetUrl')
.optional()
.custom(isVideoImportTargetUrlValid).withMessage('Should have a valid video import target URL'),
body('magnetUri')
.optional()
.custom(isVideoMagnetUriValid).withMessage('Should have a valid video magnet URI'),
2018-08-07 07:54:36 +00:00
body('torrentfile')
.custom((value, { req }) => isVideoImportTorrentFile(req.files)).withMessage(
'This torrent file is not supported or too large. Please, make sure it is of the following type: '
+ CONSTRAINTS_FIELDS.VIDEO_IMPORTS.TORRENT_FILE.EXTNAME.join(', ')
),
body('name')
.optional()
.custom(isVideoNameValid).withMessage('Should have a valid name'),
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoImportAddValidator parameters', { parameters: req.body })
const user = res.locals.oauth.token.User
2018-08-07 08:07:53 +00:00
const torrentFile = req.files && req.files['torrentfile'] ? req.files['torrentfile'][0] : undefined
if (areValidationErrors(req, res)) return cleanUpReqFiles(req)
2018-08-03 09:10:31 +00:00
2018-08-07 08:07:53 +00:00
if (req.body.targetUrl && CONFIG.IMPORT.VIDEOS.HTTP.ENABLED !== true) {
2018-08-03 09:10:31 +00:00
cleanUpReqFiles(req)
return res.status(409)
2018-08-07 08:07:53 +00:00
.json({ error: 'HTTP import is not enabled on this instance.' })
2018-08-03 09:10:31 +00:00
.end()
}
2018-08-07 08:07:53 +00:00
if (CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED !== true && (req.body.magnetUri || torrentFile)) {
cleanUpReqFiles(req)
return res.status(409)
.json({ error: 'Torrent/magnet URI import is not enabled on this instance.' })
.end()
}
if (!await isVideoChannelOfAccountExist(req.body.channelId, user, res)) return cleanUpReqFiles(req)
2018-08-06 15:13:39 +00:00
// Check we have at least 1 required param
2018-08-07 08:07:53 +00:00
if (!req.body.targetUrl && !req.body.magnetUri && !torrentFile) {
2018-08-06 15:13:39 +00:00
cleanUpReqFiles(req)
return res.status(400)
2018-08-07 07:54:36 +00:00
.json({ error: 'Should have a magnetUri or a targetUrl or a torrent file.' })
2018-08-06 15:13:39 +00:00
.end()
}
return next()
}
])
// ---------------------------------------------------------------------------
export {
videoImportAddValidator
}
// ---------------------------------------------------------------------------