PeerTube/server/tools/peertube-upload.ts

72 lines
2.0 KiB
TypeScript
Raw Normal View History

2021-06-25 17:48:27 +02:00
import { program } from 'commander'
import { access, constants } from 'fs-extra'
2017-09-07 17:58:09 +02:00
import { isAbsolute } from 'path'
2021-07-13 11:44:16 +02:00
import { assignToken, buildCommonVideoOptions, buildServer, buildVideoAttributesFromCommander, getServerCredentials } from './cli'
2017-09-07 17:58:09 +02:00
let command = program
.name('upload')
command = buildCommonVideoOptions(command)
command
2017-09-07 17:58:09 +02:00
.option('-u, --url <url>', 'Server url')
2018-02-12 12:48:58 +01:00
.option('-U, --username <username>', 'Username')
.option('-p, --password <token>', 'Password')
.option('-b, --thumbnail <thumbnailPath>', 'Thumbnail path')
2018-02-15 18:40:24 +01:00
.option('-v, --preview <previewPath>', 'Preview path')
2017-09-07 17:58:09 +02:00
.option('-f, --file <file>', 'Video absolute file path')
.parse(process.argv)
2021-02-03 09:33:05 +01:00
const options = command.opts()
getServerCredentials(command)
.then(({ url, username, password }) => {
2021-02-03 09:33:05 +01:00
if (!options.videoName || !options.file) {
if (!options.videoName) console.error('--video-name is required.')
if (!options.file) console.error('--file is required.')
process.exit(-1)
}
2021-02-03 09:33:05 +01:00
if (isAbsolute(options.file) === false) {
console.error('File path should be absolute.')
process.exit(-1)
}
run(url, username, password).catch(err => {
console.error(err)
process.exit(-1)
})
})
2020-01-31 16:56:52 +01:00
.catch(err => console.error(err))
2017-09-07 17:58:09 +02:00
async function run (url: string, username: string, password: string) {
2021-07-13 11:44:16 +02:00
const server = buildServer(url)
await assignToken(server, username, password)
2017-09-07 17:58:09 +02:00
2021-02-03 09:33:05 +01:00
await access(options.file, constants.F_OK)
2018-02-12 12:48:58 +01:00
2021-02-03 09:33:05 +01:00
console.log('Uploading %s video...', options.videoName)
2017-09-07 17:58:09 +02:00
2021-07-15 10:02:54 +02:00
const baseAttributes = await buildVideoAttributesFromCommander(server, program)
const attributes = {
...baseAttributes,
2021-02-03 09:33:05 +01:00
fixture: options.file,
thumbnailfile: options.thumbnail,
previewfile: options.preview
2021-07-15 10:02:54 +02:00
}
2018-02-12 12:48:58 +01:00
try {
2021-07-16 09:04:35 +02:00
await server.videos.upload({ attributes })
2021-02-03 09:33:05 +01:00
console.log(`Video ${options.videoName} uploaded.`)
process.exit(0)
} catch (err) {
console.error(require('util').inspect(err))
process.exit(-1)
}
2018-02-12 12:48:58 +01:00
}
// ----------------------------------------------------------------------------