]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/create-import-video-file-job.ts
Fix avatar url validation
[github/Chocobozzz/PeerTube.git] / scripts / create-import-video-file-job.ts
CommitLineData
0138af92
FF
1import * as program from 'commander'
2import { resolve } from 'path'
3import { VideoModel } from '../server/models/video/video'
4import { initDatabaseModels } from '../server/initializers'
5import { JobQueue } from '../server/lib/job-queue'
6
7program
8 .option('-v, --video [videoUUID]', 'Video UUID')
9 .option('-i, --import [videoFile]', 'Video file')
10 .description('Import a video file to replace an already uploaded file or to add a new resolution')
11 .parse(process.argv)
12
13if (program['video'] === undefined || program['import'] === undefined) {
14 console.error('All parameters are mandatory.')
15 process.exit(-1)
16}
17
18run()
19 .then(() => process.exit(0))
20 .catch(err => {
21 console.error(err)
22 process.exit(-1)
23 })
24
25async function run () {
26 await initDatabaseModels(true)
27
627621c1 28 const video = await VideoModel.loadByUUIDWithFile(program['video'])
0138af92 29 if (!video) throw new Error('Video not found.')
28be8916 30 if (video.isOwned() === false) throw new Error('Cannot import files of a non owned video.')
0138af92
FF
31
32 const dataInput = {
33 videoUUID: video.uuid,
34 filePath: resolve(program['import'])
35 }
36
37 await JobQueue.Instance.init()
38 await JobQueue.Instance.createJob({ type: 'video-file-import', payload: dataInput })
39 console.log('Import job for video %s created.', video.uuid)
40}