From 8704acf49efc770d73bf07c10468ed8c74d28a83 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Thu, 13 Sep 2018 14:27:44 +0200 Subject: one cli to unite them all MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ash nazg thrakatulûk agh burzum-ishi krimpatul - refactor import-videos to use the youtubeDL helper - add very basic tests for the cli --- server/tools/upload.ts | 99 -------------------------------------------------- 1 file changed, 99 deletions(-) delete mode 100644 server/tools/upload.ts (limited to 'server/tools/upload.ts') diff --git a/server/tools/upload.ts b/server/tools/upload.ts deleted file mode 100644 index 9b104d308..000000000 --- a/server/tools/upload.ts +++ /dev/null @@ -1,99 +0,0 @@ -import * as program from 'commander' -import { access, constants } from 'fs-extra' -import { isAbsolute } from 'path' -import { getClient, login } from '../tests/utils' -import { uploadVideo } from '../tests/utils/index' -import { VideoPrivacy } from '../../shared/models/videos' - -program - .option('-u, --url ', 'Server url') - .option('-U, --username ', 'Username') - .option('-p, --password ', 'Password') - .option('-n, --video-name ', 'Video name') - .option('-P, --privacy ', 'Privacy') - .option('-N, --nsfw', 'Video is Not Safe For Work') - .option('-c, --category ', 'Category number') - .option('-m, --comments-enabled', 'Enable comments') - .option('-l, --licence ', 'Licence number') - .option('-L, --language ', 'Language ISO 639 code (fr or en...)') - .option('-d, --video-description ', 'Video description') - .option('-t, --tags ', 'Video tags', list) - .option('-b, --thumbnail ', 'Thumbnail path') - .option('-v, --preview ', 'Preview path') - .option('-f, --file ', 'Video absolute file path') - .parse(process.argv) - -if (!program['tags']) program['tags'] = [] -if (!program['nsfw']) program['nsfw'] = false -if (!program['privacy']) program['privacy'] = VideoPrivacy.PUBLIC -if (!program['commentsEnabled']) program['commentsEnabled'] = false - -if ( - !program['url'] || - !program['username'] || - !program['password'] || - !program['videoName'] || - !program['file'] -) { - if (!program['url']) console.error('--url field is required.') - if (!program['username']) console.error('--username field is required.') - if (!program['password']) console.error('--password field is required.') - if (!program['videoName']) console.error('--video-name field is required.') - if (!program['file']) console.error('--file field is required.') - process.exit(-1) -} - -if (isAbsolute(program['file']) === false) { - console.error('File path should be absolute.') - process.exit(-1) -} - -run().catch(err => console.error(err)) - -async function run () { - const res = await getClient(program[ 'url' ]) - const client = { - id: res.body.client_id, - secret: res.body.client_secret - } - - const user = { - username: program[ 'username' ], - password: program[ 'password' ] - } - - const res2 = await login(program[ 'url' ], client, user) - const accessToken = res2.body.access_token - - await access(program[ 'file' ], constants.F_OK) - - console.log('Uploading %s video...', program[ 'videoName' ]) - - const videoAttributes = { - name: program['videoName'], - category: program['category'], - licence: program['licence'], - language: program['language'], - nsfw: program['nsfw'], - description: program['videoDescription'], - tags: program['tags'], - commentsEnabled: program['commentsEnabled'], - fixture: program['file'], - thumbnailfile: program['thumbnail'], - previewfile: program['preview'], - waitTranscoding: true, - privacy: program['privacy'], - support: undefined - } - - await uploadVideo(program['url'], accessToken, videoAttributes) - - console.log(`Video ${program['videoName']} uploaded.`) - process.exit(0) -} - -// ---------------------------------------------------------------------------- - -function list (val) { - return val.split(',') -} -- cgit v1.2.3