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

77 lines
3.1 KiB
TypeScript
Raw Normal View History

import * as express from 'express'
import { body } from 'express-validator/check'
2018-10-05 09:15:06 +00:00
import { isIdValid } from '../../../helpers/custom-validators/misc'
import { logger } from '../../../helpers/logger'
import { areValidationErrors } from '../utils'
2019-02-26 09:55:40 +00:00
import { getCommonVideoEditAttributes } from './videos'
2018-10-05 09:15:06 +00:00
import { isVideoImportTargetUrlValid, isVideoImportTorrentFile } from '../../../helpers/custom-validators/video-imports'
import { cleanUpReqFiles } from '../../../helpers/express-utils'
2019-07-23 08:40:39 +00:00
import { isVideoMagnetUriValid, isVideoNameValid } from '../../../helpers/custom-validators/videos'
2019-04-11 09:33:44 +00:00
import { CONFIG } from '../../../initializers/config'
import { CONSTRAINTS_FIELDS } from '../../../initializers/constants'
2019-07-23 08:40:39 +00:00
import { doesVideoChannelOfAccountExist } from '../../../helpers/middlewares'
2019-02-26 09:55:40 +00:00
const videoImportAddValidator = getCommonVideoEditAttributes().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()
}
2019-03-19 08:26:50 +00:00
if (!await doesVideoChannelOfAccountExist(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
}
// ---------------------------------------------------------------------------