66 lines
1.2 KiB
JavaScript
66 lines
1.2 KiB
JavaScript
|
/**
|
||
|
* Share
|
||
|
* Upload a recording file and get a link for an online player
|
||
|
*
|
||
|
* @author Mohammad Fares <faressoft.com@gmail.com>
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Executed after the command completes its task
|
||
|
*/
|
||
|
function done() {
|
||
|
|
||
|
// Terminate the app
|
||
|
process.exit();
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* The command's main function
|
||
|
*
|
||
|
* @param {Object} argv
|
||
|
*/
|
||
|
function command(argv) {
|
||
|
|
||
|
console.log('This command is not implemented yet. It will be avalible in the next versions');
|
||
|
|
||
|
}
|
||
|
|
||
|
////////////////////////////////////////////////////
|
||
|
// Command Definition //////////////////////////////
|
||
|
////////////////////////////////////////////////////
|
||
|
|
||
|
/**
|
||
|
* Command's usage
|
||
|
* @type {String}
|
||
|
*/
|
||
|
module.exports.command = 'share <recordingFile>';
|
||
|
|
||
|
/**
|
||
|
* Command's description
|
||
|
* @type {String}
|
||
|
*/
|
||
|
module.exports.describe = 'Upload a recording file and get a link for an online player';
|
||
|
|
||
|
/**
|
||
|
* Command's handler function
|
||
|
* @type {Function}
|
||
|
*/
|
||
|
module.exports.handler = command;
|
||
|
|
||
|
/**
|
||
|
* Builder
|
||
|
*
|
||
|
* @param {Object} yargs
|
||
|
*/
|
||
|
module.exports.builder = function(yargs) {
|
||
|
|
||
|
// Define the recordingFile argument
|
||
|
yargs.positional('recordingFile', {
|
||
|
describe: 'the recording file',
|
||
|
type: 'string',
|
||
|
coerce: di.utility.loadYAML
|
||
|
});
|
||
|
|
||
|
};
|