50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import 'express-validator'
|
|
import 'multer'
|
|
import * as validator from 'validator'
|
|
import { CONSTRAINTS_FIELDS, VIDEO_IMPORT_STATES } from '../../initializers'
|
|
import { exists } from './misc'
|
|
import * as express from 'express'
|
|
import { VideoChannelModel } from '../../models/video/video-channel'
|
|
import { VideoImportModel } from '../../models/video/video-import'
|
|
|
|
function isVideoImportTargetUrlValid (url: string) {
|
|
const isURLOptions = {
|
|
require_host: true,
|
|
require_tld: true,
|
|
require_protocol: true,
|
|
require_valid_protocol: true,
|
|
protocols: [ 'http', 'https' ]
|
|
}
|
|
|
|
return exists(url) &&
|
|
validator.isURL('' + url, isURLOptions) &&
|
|
validator.isLength('' + url, CONSTRAINTS_FIELDS.VIDEO_IMPORTS.URL)
|
|
}
|
|
|
|
function isVideoImportStateValid (value: any) {
|
|
return exists(value) && VIDEO_IMPORT_STATES[ value ] !== undefined
|
|
}
|
|
|
|
async function isVideoImportExist (id: number, res: express.Response) {
|
|
const videoImport = await VideoImportModel.loadAndPopulateVideo(id)
|
|
|
|
if (!videoImport) {
|
|
res.status(404)
|
|
.json({ error: 'Video import not found' })
|
|
.end()
|
|
|
|
return false
|
|
}
|
|
|
|
res.locals.videoImport = videoImport
|
|
return true
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
isVideoImportStateValid,
|
|
isVideoImportTargetUrlValid,
|
|
isVideoImportExist
|
|
}
|