smartcli/ts/smartcli.getters.ts

110 lines
3.5 KiB
TypeScript
Raw Normal View History

2016-03-14 06:12:00 +00:00
/// <reference path="typings/main.d.ts" />
module SmartcliGetters {
2015-11-05 20:43:34 +00:00
export function init() {
smartcli.get = {};
/**
*
* @param commandString
* @returns {{specified: boolean, name: any, arguments: CliCommandArgument}}
*/
smartcli.get.command = function():CliCommand {
2015-11-05 20:43:34 +00:00
var cliCommand = {
specified: smartcli.check.commandPresence(),
2015-11-09 03:02:46 +00:00
name: plugins.argv._[0],
arguments: smartcli.get.commandArgs()
2015-11-05 20:43:34 +00:00
}
return cliCommand;
};
/**
* gets the second or higher value of plugins.argv._ if specified and returns it as commandArgument
* @param argumentLevel
* @returns {{specified: (boolean|boolean), name}}
*/
smartcli.get.commandArgument = function(argumentLevel):CliCommandArgument {
var commandArgument:CliCommandArgument = {
specified: false,
name: "undefined",
level:argumentLevel
2015-11-05 20:43:34 +00:00
};
if(argumentLevel < 1) {
plugins.beautylog.error("smartcli.get.argument cannot be invoked with an argumentLevel smaller than 1");
return commandArgument;
}
if(smartcli.check.commandArgumentPresence(argumentLevel)) {
commandArgument.specified = true;
commandArgument.name = plugins.argv._[argumentLevel];
}
2015-11-05 20:43:34 +00:00
return commandArgument;
};
/**
2015-11-09 03:02:46 +00:00
* returns array with commandArgs
* @returns {CliCommandArgument[]}
*/
smartcli.get.commandArgs = function():CliCommandArgument[] {
var commandArgs:CliCommandArgument[] = [];
2015-11-09 03:02:46 +00:00
var argsArray = smartcli.get.commandArray().slice(0);
argsArray.shift();
for (var item in argsArray){
var commandArgument:CliCommandArgument = {
specified:true,
name:argsArray[item],
level: item + 1
}
commandArgs.push(commandArgument);
}
return commandArgs;
};
/**
* returns complete command array
2015-11-05 20:43:34 +00:00
* @returns {any}
*/
smartcli.get.commandArray = function ():string[] {
2015-11-09 03:02:46 +00:00
var commandArray = plugins.argv._;
return commandArray;
2015-11-05 20:43:34 +00:00
};
/**
* returns a cli option
* @param optionName
* @returns {CliOption}
*/
smartcli.get.option = function(optionName:string):CliOption {
var cliOption:CliOption = {
2015-11-05 20:43:34 +00:00
name:optionName,
specified: false,
value: false
};
2015-11-09 03:02:46 +00:00
if (plugins.smartparam.exists(plugins.argv,optionName)) {
cliOption.name = optionName;
cliOption.specified = true;
cliOption.value = plugins.argv[optionName] //we already know from the "if" above that the value is available.
2015-11-05 20:43:34 +00:00
}
return cliOption;
2015-11-05 20:43:34 +00:00
};
smartcli.get.options = function() {
2015-11-05 20:43:34 +00:00
var options = {};
for (var key in plugins.argv) {
if (key != "_") {
options['key'] = plugins.argv['key'];
}
}
return options;
};
/**
* returns Directory of cwd
* @returns {{path: string}}
*/
smartcli.get.cwd = function():Directory {
2015-11-05 20:43:34 +00:00
return {
path: process.cwd()
}
};
}
}