<div class="form-group">
<label i18n for="targetUrl">URL</label>
+ <my-help
+ helpType="custom" i18n-customHtml
+ customHtml="You can import any URL <a href='https://rg3.github.io/youtube-dl/supportedsites.html'>supported by youtube-dl</a> or URL that points to a raw MP4 file. Failure to secure these rights could cause legal trouble to yourself and your instance."
+ ></my-help>
+
<input type="text" id="targetUrl" [(ngModel)]="targetUrl" />
</div>
videoImportsRouter.delete('/imports/:id',
authenticate,
- videoImportDeleteValidator,
+ asyncMiddleware(videoImportDeleteValidator),
asyncRetryTransactionMiddleware(deleteVideoImport)
)
}
async function deleteVideoImport (req: express.Request, res: express.Response) {
- // TODO: delete video import
+ await sequelizeTypescript.transaction(async t => {
+ const videoImport = res.locals.videoImport
+ const video = videoImport.Video
+
+ await videoImport.destroy({ transaction: t })
+ await video.destroy({ transaction: t })
+ })
+
+ return res.status(204).end()
}
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 = {
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
+ isVideoImportTargetUrlValid,
+ isVideoImportExist
}
// Thanks: https://github.com/przemyslawpluta/node-youtube-dl/blob/master/lib/downloader.js
-// Use rewrote it to avoid sync calls
+// We rewrote it to avoid sync calls
import { AbstractScheduler } from './abstract-scheduler'
import { SCHEDULER_INTERVALS_MS } from '../../initializers'
import { logger } from '../../helpers/logger'
import { areValidationErrors } from './utils'
import { getCommonVideoAttributes } from './videos'
-import { isVideoImportTargetUrlValid } from '../../helpers/custom-validators/video-imports'
+import { isVideoImportTargetUrlValid, isVideoImportExist } from '../../helpers/custom-validators/video-imports'
import { cleanUpReqFiles } from '../../helpers/utils'
-import { isVideoChannelOfAccountExist, isVideoNameValid } from '../../helpers/custom-validators/videos'
+import { isVideoChannelOfAccountExist, isVideoNameValid, checkUserCanManageVideo } from '../../helpers/custom-validators/videos'
+import { VideoImportModel } from '../../models/video/video-import'
+import { UserRight } from '../../../shared'
const videoImportAddValidator = getCommonVideoAttributes().concat([
body('targetUrl').custom(isVideoImportTargetUrlValid).withMessage('Should have a valid video import target URL'),
const videoImportDeleteValidator = [
param('id').custom(isIdValid).not().isEmpty().withMessage('Should have a valid id'),
- (req: express.Request, res: express.Response, next: express.NextFunction) => {
+ async (req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking videoImportDeleteValidator parameters', { parameters: req.body })
if (areValidationErrors(req, res)) return
+ if (!await isVideoImportExist(req.params.id, res)) return
+
+ const user = res.locals.oauth.token.User
+ const videoImport: VideoImportModel = res.locals.videoImport
+
+ if (!await checkUserCanManageVideo(user, videoImport.Video, UserRight.UPDATE_ANY_VIDEO, res)) return
return next()
}