]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tools/peertube-upload.ts
Fix upload avatar button
[github/Chocobozzz/PeerTube.git] / server / tools / peertube-upload.ts
1 import { program } from 'commander'
2 import { access, constants } from 'fs-extra'
3 import { isAbsolute } from 'path'
4 import { assignToken, buildCommonVideoOptions, buildServer, buildVideoAttributesFromCommander, getServerCredentials } from './cli'
5
6 let command = program
7 .name('upload')
8
9 command = buildCommonVideoOptions(command)
10
11 command
12 .option('-u, --url <url>', 'Server url')
13 .option('-U, --username <username>', 'Username')
14 .option('-p, --password <token>', 'Password')
15 .option('-b, --thumbnail <thumbnailPath>', 'Thumbnail path')
16 .option('-v, --preview <previewPath>', 'Preview path')
17 .option('-f, --file <file>', 'Video absolute file path')
18 .parse(process.argv)
19
20 const options = command.opts()
21
22 getServerCredentials(command)
23 .then(({ url, username, password }) => {
24 if (!options.videoName || !options.file) {
25 if (!options.videoName) console.error('--video-name is required.')
26 if (!options.file) console.error('--file is required.')
27
28 process.exit(-1)
29 }
30
31 if (isAbsolute(options.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 .catch(err => console.error(err))
42
43 async function run (url: string, username: string, password: string) {
44 const server = buildServer(url)
45 await assignToken(server, username, password)
46
47 await access(options.file, constants.F_OK)
48
49 console.log('Uploading %s video...', options.videoName)
50
51 const baseAttributes = await buildVideoAttributesFromCommander(server, program)
52
53 const attributes = {
54 ...baseAttributes,
55
56 fixture: options.file,
57 thumbnailfile: options.thumbnail,
58 previewfile: options.preview
59 }
60
61 try {
62 await server.videos.upload({ attributes })
63 console.log(`Video ${options.videoName} uploaded.`)
64 process.exit(0)
65 } catch (err) {
66 const message = err.message || ''
67 if (message.includes('413')) {
68 console.error('Aborted: user quota is exceeded or video file is too big for this PeerTube instance.')
69 } else {
70 console.error(require('util').inspect(err))
71 }
72
73 process.exit(-1)
74 }
75 }
76
77 // ----------------------------------------------------------------------------