smartcli/ts/smartcli.checks.ts

64 lines
1.6 KiB
TypeScript
Raw Normal View History

2016-03-14 06:12:00 +00:00
/// <reference path="typings/main.d.ts" />
2016-03-18 17:08:26 +00:00
/// <reference path="./smartcli.interfaces.ts" />
2016-03-14 06:12:00 +00:00
import plugins = require("./smartcli.plugins");
2015-11-05 20:43:34 +00:00
2016-03-14 06:12:00 +00:00
/**
* checks for a special command string and returns true if found.
* @param commandString
* @returns {boolean}
*/
export let command = function(commandString:string):boolean {
if (plugins.argv._.indexOf(commandString) == 0) {
return true
}
return false;
};
/**
* checks if a command is present, returns true if yes, false if no.
* @returns {boolean}
*/
export let commandPresence = function():boolean {
if(plugins.argv._.length > 0){
return true;
}
return false;
};
2015-11-05 20:43:34 +00:00
2016-03-14 06:12:00 +00:00
/**
* checks for an special command argument at a certain position, returns true if matches, returns false if not
* @param level
* @returns {boolean}
*/
export let commandArgument = function(commandArgumentString:string,level:number = 1):boolean {
if(commandArgumentPresence(level) && (plugins.argv._[level] == commandArgumentString )) {
return true;
}
return false;
};
2016-03-14 06:12:00 +00:00
export let commandArgumentPresence = function(level:number = 1) {
if(plugins.argv._.length >= (level + 1)) {
return true;
}
return false;
};
2015-11-05 20:43:34 +00:00
2016-03-14 06:12:00 +00:00
/**
* checks for a specific option string, returns true if yes, returns false if no
* @returns {boolean}
*/
export let option = function(optionString):boolean {
if(plugins.smartparam.exists(plugins.argv, optionString)) {
return true;
}
return false;
};
2015-11-05 20:43:34 +00:00
2016-03-14 06:12:00 +00:00
export let optionPresence = function():boolean {
if (plugins.argv.indexOf() != -1) {
return true
2015-11-05 20:43:34 +00:00
}
2016-03-14 06:12:00 +00:00
return false;
};