d9f9a8eada3b14f4e757caafe24346eec08631dd
[oweals/peertube.git] / peertube-upload.ts
1 import * as program from 'commander'
2 import { access, constants } from 'fs-extra'
3 import { isAbsolute } from 'path'
4 import { getAccessToken } from '../../shared/extra-utils'
5 import { uploadVideo } from '../../shared/extra-utils/'
6 import { buildCommonVideoOptions, buildVideoAttributesFromCommander, getServerCredentials } from './cli'
7
8 let command = program
9   .name('upload')
10
11 command = buildCommonVideoOptions(command)
12
13 command
14   .option('-u, --url <url>', 'Server url')
15   .option('-U, --username <username>', 'Username')
16   .option('-p, --password <token>', 'Password')
17   .option('-b, --thumbnail <thumbnailPath>', 'Thumbnail path')
18   .option('-v, --preview <previewPath>', 'Preview path')
19   .option('-f, --file <file>', 'Video absolute file path')
20   .parse(process.argv)
21
22 getServerCredentials(command)
23   .then(({ url, username, password }) => {
24     if (!program[ 'videoName' ] || !program[ 'file' ]) {
25       if (!program[ 'videoName' ]) console.error('--video-name is required.')
26       if (!program[ 'file' ]) console.error('--file is required.')
27
28       process.exit(-1)
29     }
30
31     if (isAbsolute(program[ 'file' ]) === false) {
32       console.error('File path should be absolute.')
33       process.exit(-1)
34     }
35
36     run(url, username, password).catch(err => {
37       console.error(err)
38       process.exit(-1)
39     })
40   })
41
42 async function run (url: string, username: string, password: string) {
43   const accessToken = await getAccessToken(url, username, password)
44
45   await access(program[ 'file' ], constants.F_OK)
46
47   console.log('Uploading %s video...', program[ 'videoName' ])
48
49   const defaultAttributes = {
50     tags: command[ 'tags' ],
51     description: command[ 'videoDescription' ]
52   }
53   const videoAttributes = await buildVideoAttributesFromCommander(url, program, defaultAttributes)
54
55   Object.assign(videoAttributes, {
56     fixture: program[ 'file' ],
57     thumbnailfile: program[ 'thumbnail' ],
58     previewfile: program[ 'preview' ]
59   })
60
61   try {
62     await uploadVideo(url, accessToken, videoAttributes)
63     console.log(`Video ${program[ 'videoName' ]} uploaded.`)
64     process.exit(0)
65   } catch (err) {
66     console.error(require('util').inspect(err))
67     process.exit(-1)
68   }
69 }
70
71 // ----------------------------------------------------------------------------