2018-06-02 15:39:41 -04:00
|
|
|
import * as program from 'commander'
|
|
|
|
import { resolve } from 'path'
|
|
|
|
import { VideoModel } from '../server/models/video/video'
|
|
|
|
import { initDatabaseModels } from '../server/initializers'
|
|
|
|
import { JobQueue } from '../server/lib/job-queue'
|
|
|
|
|
|
|
|
program
|
|
|
|
.option('-v, --video [videoUUID]', 'Video UUID')
|
|
|
|
.option('-i, --import [videoFile]', 'Video file')
|
|
|
|
.description('Import a video file to replace an already uploaded file or to add a new resolution')
|
|
|
|
.parse(process.argv)
|
|
|
|
|
|
|
|
if (program['video'] === undefined || program['import'] === undefined) {
|
|
|
|
console.error('All parameters are mandatory.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
run()
|
|
|
|
.then(() => process.exit(0))
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
|
|
|
|
|
|
|
async function run () {
|
|
|
|
await initDatabaseModels(true)
|
|
|
|
|
2018-09-18 06:00:49 -04:00
|
|
|
const video = await VideoModel.loadByUUIDWithFile(program['video'])
|
2018-06-02 15:39:41 -04:00
|
|
|
if (!video) throw new Error('Video not found.')
|
2018-06-07 03:43:18 -04:00
|
|
|
if (video.isOwned() === false) throw new Error('Cannot import files of a non owned video.')
|
2018-06-02 15:39:41 -04:00
|
|
|
|
|
|
|
const dataInput = {
|
|
|
|
videoUUID: video.uuid,
|
|
|
|
filePath: resolve(program['import'])
|
|
|
|
}
|
|
|
|
|
|
|
|
await JobQueue.Instance.init()
|
|
|
|
await JobQueue.Instance.createJob({ type: 'video-file-import', payload: dataInput })
|
|
|
|
console.log('Import job for video %s created.', video.uuid)
|
|
|
|
}
|