2016-07-20 13:16:00 -04:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const program = require('commander')
|
|
|
|
const fs = require('fs')
|
|
|
|
|
2016-10-10 15:33:40 -04:00
|
|
|
const utils = require('../../utils/videos')
|
2016-07-20 13:16:00 -04:00
|
|
|
|
|
|
|
program
|
|
|
|
.option('-u, --url <url>', 'Server url')
|
|
|
|
.option('-a, --access-token <token>', 'Access token')
|
|
|
|
.option('-n, --name <name>', 'Video name')
|
2017-03-22 16:15:55 -04:00
|
|
|
.option('-d, --category <category number>', 'Category number')
|
2016-07-20 13:16:00 -04:00
|
|
|
.option('-d, --description <description>', 'Video description')
|
|
|
|
.option('-t, --tags <tags>', 'Video tags', list)
|
|
|
|
.option('-f, --file <file>', 'Video absolute file path')
|
|
|
|
.parse(process.argv)
|
|
|
|
|
|
|
|
if (
|
|
|
|
!program.url ||
|
|
|
|
!program.accessToken ||
|
|
|
|
!program.name ||
|
2017-03-22 16:15:55 -04:00
|
|
|
!program.category ||
|
2016-07-20 13:16:00 -04:00
|
|
|
!program.description ||
|
|
|
|
!program.tags ||
|
|
|
|
!Array.isArray(program.tags) ||
|
|
|
|
program.tags.length === 0 ||
|
|
|
|
!program.file
|
|
|
|
) {
|
|
|
|
throw new Error('All arguments are required.')
|
|
|
|
}
|
|
|
|
|
|
|
|
fs.access(program.file, fs.F_OK, function (err) {
|
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
upload(
|
|
|
|
program.url,
|
|
|
|
program.accessToken,
|
|
|
|
program.name,
|
2017-03-22 16:15:55 -04:00
|
|
|
program.category,
|
2016-07-20 13:16:00 -04:00
|
|
|
program.description,
|
|
|
|
program.tags,
|
|
|
|
program.file
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function list (val) {
|
|
|
|
return val.split(',')
|
|
|
|
}
|
|
|
|
|
2017-03-22 16:15:55 -04:00
|
|
|
function upload (url, accessToken, name, category, description, tags, file) {
|
2016-07-20 13:16:00 -04:00
|
|
|
console.log('Uploading %s video...', program.name)
|
|
|
|
|
2017-03-22 16:15:55 -04:00
|
|
|
utils.uploadVideo(url, accessToken, name, category, description, tags, file, function (err) {
|
2016-07-20 13:16:00 -04:00
|
|
|
if (err) throw err
|
|
|
|
|
|
|
|
console.log('Video uploaded.')
|
|
|
|
})
|
|
|
|
}
|