2020-04-29 15:15:41 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
|
|
|
* http://ldapsaisie.labs.libre-entreprise.org
|
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2020-05-08 15:20:29 +02:00
|
|
|
LSsession :: loadLSclass('LSlog_staticLoggerClass');
|
|
|
|
|
2020-04-29 15:15:41 +02:00
|
|
|
/**
|
|
|
|
* CLI Manager for LdapSaisie
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
2020-05-08 15:20:29 +02:00
|
|
|
class LScli extends LSlog_staticLoggerClass {
|
2020-04-29 15:15:41 +02:00
|
|
|
|
|
|
|
// Configured commands
|
|
|
|
private static $commands = array();
|
|
|
|
|
2020-05-06 17:46:08 +02:00
|
|
|
// Store current executed command
|
|
|
|
private static $current_command = null;
|
|
|
|
|
2020-04-29 15:15:41 +02:00
|
|
|
/**
|
|
|
|
* Add a CLI command
|
|
|
|
*
|
2020-06-14 23:42:11 +02:00
|
|
|
* @param[in] $command string The CLI command name (required)
|
|
|
|
* @param[in] $handler callable The CLI command handler (must be callable, required)
|
|
|
|
* @param[in] $short_desc string|false A short description of what this command does (required)
|
|
|
|
* @param[in] $usage_args string|false A short list of commands available arguments show in usage message
|
|
|
|
* (optional, default: false)
|
|
|
|
* @param[in] $long_desc string|false A long description of what this command does (optional, default: false)
|
|
|
|
* @param[in] $need_ldap_con boolean Permit to define if this command need connection to LDAP server (optional,
|
|
|
|
* default: true)
|
|
|
|
* @param[in] $args_autocompleter callable|null Allow override if a command already exists with the same name (optional,
|
|
|
|
* @param[in] $override boolean Allow override if a command already exists with the same name (optional,
|
|
|
|
* default: false)
|
|
|
|
*
|
|
|
|
* @retval void
|
2020-04-29 15:15:41 +02:00
|
|
|
**/
|
2020-05-06 18:33:31 +02:00
|
|
|
public static function add_command($command, $handler, $short_desc, $usage_args=false, $long_desc=false,
|
2020-06-14 23:42:11 +02:00
|
|
|
$need_ldap_con=true, $args_autocompleter=null, $override=false) {
|
2020-04-29 15:15:41 +02:00
|
|
|
if (array_key_exists($command, self :: $commands) && !$override) {
|
|
|
|
LSerror :: addErrorCode('LScli_01', $command);
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_callable($handler)) {
|
|
|
|
LSerror :: addErrorCode('LScli_02', $command);
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
self :: $commands[$command] = array (
|
|
|
|
'handler' => $handler,
|
|
|
|
'short_desc' => $short_desc,
|
|
|
|
'usage_args' => $usage_args,
|
|
|
|
'long_desc' => $long_desc,
|
2020-05-06 18:33:31 +02:00
|
|
|
'need_ldap_con' => boolval($need_ldap_con),
|
2020-06-14 23:42:11 +02:00
|
|
|
'args_autocompleter' => $args_autocompleter,
|
2020-04-29 15:15:41 +02:00
|
|
|
);
|
|
|
|
return True;
|
2020-05-06 19:48:13 +02:00
|
|
|
}
|
2020-04-29 15:15:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show usage message
|
|
|
|
*
|
|
|
|
* @param[in] $error string|false Error message to display before usage message (optional, default: false)
|
|
|
|
* @retval void
|
|
|
|
**/
|
|
|
|
public static function usage($error=false) {
|
|
|
|
global $argv;
|
|
|
|
|
|
|
|
if ($error)
|
|
|
|
echo "$error\n\n";
|
|
|
|
|
|
|
|
echo "Usage : ".basename($argv[0])." [-h] [-qdC] command\n";
|
2020-04-29 17:13:23 +02:00
|
|
|
echo " -h Show this message\n";
|
2020-05-14 10:49:50 +02:00
|
|
|
echo " -q|--quiet Quiet mode: nothing log on console (but keep other logging handler)\n";
|
|
|
|
echo " -d|--debug Debug mode (set log level to DEBUG, default: WARNING)\n";
|
|
|
|
echo " -v|--verbose Verbose mode (set log level to INFO, default: WARNING)\n";
|
|
|
|
echo " -C|--console Log on console with same log level as other handlers (otherwise, log only errors)\n";
|
2020-04-29 17:14:04 +02:00
|
|
|
echo " -S|--ldap-server Connect to a specific LDAP server: you could specify a LDAP\n";
|
|
|
|
echo " server by its declaration order in configuration (default:\n";
|
|
|
|
echo " first one).\n";
|
2020-04-29 17:13:23 +02:00
|
|
|
echo " -L|--load-class Load specific class to permit access to its CLI commands\n";
|
|
|
|
echo " -A|--load-addons Load specific addon to permit access to its CLI commands\n";
|
2020-04-29 15:15:41 +02:00
|
|
|
echo " command Command to run\n";
|
|
|
|
echo "\n";
|
|
|
|
echo "Available commands :\n";
|
|
|
|
|
|
|
|
foreach (self :: $commands as $command => $info) {
|
2020-05-06 17:46:08 +02:00
|
|
|
if (self :: $current_command and self :: $current_command != $command)
|
|
|
|
continue;
|
2020-04-29 15:15:41 +02:00
|
|
|
echo " $command : ".$info['short_desc']."\n";
|
|
|
|
echo " ".basename($argv[0])." $command ".($info['usage_args']?$info['usage_args']:'')."\n";
|
|
|
|
if ($info['long_desc']) {
|
|
|
|
if (is_array($info['long_desc']))
|
|
|
|
$info['long_desc'] = implode("\n", $info['long_desc']);
|
|
|
|
echo "\n ".str_replace("\n", "\n ", wordwrap($info['long_desc']))."\n";
|
|
|
|
}
|
|
|
|
echo "\n";
|
|
|
|
}
|
|
|
|
if (empty(self :: $commands))
|
|
|
|
echo " Currently no available command is declared.\n";
|
|
|
|
|
|
|
|
exit(($error?1:0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle CLI arguments and run command (if provided)
|
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
**/
|
|
|
|
public static function handle_args() {
|
2020-05-06 18:01:16 +02:00
|
|
|
if (php_sapi_name() != "cli") {
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_fatal('Try to use LScli :: handle_args() in non-CLI context.');
|
2020-05-06 18:01:16 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-04-29 15:15:41 +02:00
|
|
|
global $argv;
|
2020-05-14 10:49:50 +02:00
|
|
|
$log_level = 'WARNING';
|
|
|
|
$console_log = false;
|
|
|
|
$quiet = false;
|
2020-04-29 17:14:04 +02:00
|
|
|
$ldap_server_id = false;
|
2020-04-29 15:15:41 +02:00
|
|
|
$command = false;
|
|
|
|
$command_args = array();
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_debug("handle_args :\n".varDump($argv));
|
2020-04-29 15:15:41 +02:00
|
|
|
for ($i=1; $i < count($argv); $i++) {
|
|
|
|
if (array_key_exists($argv[$i], self :: $commands)) {
|
|
|
|
if (!$command)
|
2020-05-06 17:46:08 +02:00
|
|
|
self :: $current_command = $command = $argv[$i];
|
2020-04-29 15:15:41 +02:00
|
|
|
else
|
2020-06-14 23:42:11 +02:00
|
|
|
$command_args[] = $argv[$i];
|
2020-04-29 15:15:41 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
switch($argv[$i]) {
|
|
|
|
case '-h':
|
|
|
|
case '--help':
|
|
|
|
self :: usage();
|
|
|
|
break;
|
|
|
|
case '-d':
|
|
|
|
case '--debug':
|
|
|
|
$log_level = 'DEBUG';
|
|
|
|
break;
|
2020-05-14 10:49:50 +02:00
|
|
|
case '-v':
|
|
|
|
case '--verbose':
|
|
|
|
$log_level = 'INFO';
|
|
|
|
break;
|
2020-04-29 15:15:41 +02:00
|
|
|
case '-q':
|
|
|
|
case '--quiet':
|
2020-05-14 10:49:50 +02:00
|
|
|
$quiet = true;
|
2020-04-29 15:15:41 +02:00
|
|
|
break;
|
|
|
|
case '-C':
|
|
|
|
case '--console':
|
2020-05-14 10:49:50 +02:00
|
|
|
$console_log = true;
|
2020-04-29 15:15:41 +02:00
|
|
|
break;
|
2020-04-29 17:14:04 +02:00
|
|
|
case '-S':
|
|
|
|
case '--ldap-server':
|
|
|
|
$i++;
|
|
|
|
$ldap_server_id = intval($argv[$i]);
|
|
|
|
if(!LSsession :: setLdapServer($ldap_server_id))
|
|
|
|
self :: usage("Fail to select LDAP server #$ldap_server_id.");
|
|
|
|
break;
|
2020-08-06 16:43:50 +02:00
|
|
|
case '--sub-dn':
|
|
|
|
$i++;
|
|
|
|
$subDn = $argv[$i];
|
|
|
|
self :: need_ldap_con();
|
|
|
|
if(!LSsession :: setSubDn($subDn))
|
|
|
|
self :: usage("Fail to select sub DN '$subDn'.");
|
|
|
|
break;
|
2020-04-29 17:13:23 +02:00
|
|
|
case '-L':
|
|
|
|
case '--load-class':
|
|
|
|
$i++;
|
|
|
|
$class = $argv[$i];
|
|
|
|
if(!LSsession :: loadLSclass($class))
|
|
|
|
self :: usage("Fail to load class '$class'.");
|
|
|
|
break;
|
|
|
|
case '-A':
|
|
|
|
case '--load-addon':
|
|
|
|
$i++;
|
|
|
|
$addon = $argv[$i];
|
|
|
|
if(!LSsession :: loadLSaddon($addon))
|
|
|
|
self :: usage("Fail to load addon '$addon'.");
|
|
|
|
break;
|
2020-06-14 23:42:11 +02:00
|
|
|
case '--':
|
|
|
|
$command_args = array_merge($command_args, array_slice($argv, $i));
|
|
|
|
$i = count($argv);
|
|
|
|
break;
|
2020-04-29 15:15:41 +02:00
|
|
|
default:
|
|
|
|
if ($command)
|
|
|
|
$command_args[] = $argv[$i];
|
|
|
|
else
|
|
|
|
self :: usage(
|
|
|
|
getFData(_("Invalid parameter \"%{parameter}\".\nNote: Command's parameter/argument must be place after the command."), $argv[$i])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set log level
|
|
|
|
LSlog :: setLevel($log_level);
|
|
|
|
|
2020-05-14 10:49:50 +02:00
|
|
|
// Enable/disable log on console
|
|
|
|
if ($quiet)
|
|
|
|
// Quiet mode: disable log on console
|
|
|
|
LSlog :: disableLogOnConsole();
|
|
|
|
else
|
|
|
|
// Enable console log:
|
|
|
|
// - if $console_log: use same log level as other handlers
|
|
|
|
// - otherwise: log only errors
|
|
|
|
LSlog :: logOnConsole(($console_log?$log_level:'ERROR'));
|
|
|
|
|
2020-04-29 15:15:41 +02:00
|
|
|
if (!$command) {
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_debug("LScli :: handle_args() : no detected command => show usage");
|
2020-04-29 15:15:41 +02:00
|
|
|
self :: usage();
|
|
|
|
}
|
|
|
|
|
2020-05-06 18:33:31 +02:00
|
|
|
// Select LDAP server (if not already done with -S/--ldap-server parameter)
|
2020-04-29 17:14:04 +02:00
|
|
|
if ($ldap_server_id === false && !LSsession :: setLdapServer(0))
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_fatal('Fail to select first LDAP server.');
|
2020-04-29 17:14:04 +02:00
|
|
|
|
2020-04-29 15:15:41 +02:00
|
|
|
// Run command
|
2020-05-06 18:00:47 +02:00
|
|
|
self :: run_command($command, $command_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-05-06 19:48:13 +02:00
|
|
|
* Run command
|
2020-05-06 18:00:47 +02:00
|
|
|
*
|
2020-05-06 19:48:13 +02:00
|
|
|
* @param[in] $command string The command name
|
|
|
|
* @param[in] $command string The command arguments (optional, default: array())
|
|
|
|
* @param[in] $exit boolean If true, function will exit after command execution (optional, default: true)
|
|
|
|
*
|
|
|
|
* @retval void|boolean If $exit is False, return boolean casted command return
|
2020-05-06 18:00:47 +02:00
|
|
|
**/
|
2020-05-06 18:34:27 +02:00
|
|
|
public static function run_command($command, $command_args=array(), $exit=true) {
|
2020-05-06 18:00:47 +02:00
|
|
|
if (php_sapi_name() != "cli") {
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_fatal('Try to use LScli :: run_command() in non-CLI context.');
|
2020-05-06 18:00:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!array_key_exists($command, self :: $commands)) {
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_warning("LScli :: run_command() : invalid command '$command'.");
|
2020-05-06 18:00:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
2020-05-06 18:33:31 +02:00
|
|
|
|
|
|
|
// Connect to LDAP server (if command need)
|
|
|
|
if (self :: $commands[$command]['need_ldap_con']) {
|
2020-06-15 10:40:48 +02:00
|
|
|
self :: need_ldap_con();
|
2020-05-06 18:33:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run command
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_debug("Run command $command with argument(s) '".implode("', '", $command_args)."'");
|
2020-04-29 15:15:41 +02:00
|
|
|
try {
|
2020-04-29 17:05:05 +02:00
|
|
|
$result = call_user_func(self :: $commands[$command]['handler'], $command_args);
|
2020-04-29 15:15:41 +02:00
|
|
|
|
2020-05-06 18:00:47 +02:00
|
|
|
if ($exit)
|
|
|
|
exit($result?0:1);
|
|
|
|
return boolval($result);
|
2020-04-29 15:15:41 +02:00
|
|
|
}
|
|
|
|
catch(Exception $e) {
|
|
|
|
LSlog :: exception($e, "An exception occured running CLI command $command");
|
|
|
|
}
|
2020-05-06 18:00:47 +02:00
|
|
|
if ($exit)
|
|
|
|
exit(1);
|
|
|
|
return false;
|
2020-04-29 15:15:41 +02:00
|
|
|
}
|
|
|
|
|
2020-06-15 10:40:48 +02:00
|
|
|
/**
|
|
|
|
* Start LDAP connection (if not already connected)
|
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
**/
|
|
|
|
public static function need_ldap_con() {
|
|
|
|
// Connect to LDAP server (if not already the case)
|
|
|
|
if (!class_exists('LSldap') || !LSldap :: isConnected()) {
|
|
|
|
if (!LSsession :: LSldapConnect())
|
|
|
|
self :: log_fatal('Fail to connect to LDAP server.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:56:37 +02:00
|
|
|
/**
|
|
|
|
* Run external command
|
|
|
|
*
|
|
|
|
* @param[in] $command string|array The command. It's could be an array of the command with its arguments.
|
|
|
|
* @param[in] $data_stdin string|null The command arguments (optional, default: null)
|
|
|
|
* @param[in] $escape_command_args boolean If true, the command will be escaped (optional, default: true)
|
|
|
|
*
|
|
|
|
* @retval false|array An array of return code, stdout and stderr result or False in case of fatal error
|
|
|
|
**/
|
|
|
|
public static function run_external_command($command, $data_stdin=null, $escape_command_args=true) {
|
|
|
|
if (array($command))
|
|
|
|
$command = implode(' ', $command);
|
|
|
|
if ($escape_command_args)
|
|
|
|
$command = escapeshellcmd($command);
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_debug("Run external command: '$command'");
|
2020-05-06 19:56:37 +02:00
|
|
|
$descriptorspec = array(
|
|
|
|
0 => array("pipe", "r"), // stdin
|
|
|
|
1 => array("pipe", "w"), // stdout
|
|
|
|
2 => array("pipe", "w"), // stderr
|
|
|
|
);
|
|
|
|
$process = proc_open($command, $descriptorspec, $pipes);
|
|
|
|
|
|
|
|
if (!is_resource($process)) {
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_error("Fail to run external command: '$command'");
|
2020-05-06 19:56:37 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_null($data_stdin)) {
|
|
|
|
fwrite($pipes[0], $data_stdin);
|
|
|
|
}
|
|
|
|
fclose($pipes[0]);
|
|
|
|
|
|
|
|
$stdout = stream_get_contents($pipes[1]);
|
|
|
|
fclose($pipes[1]);
|
|
|
|
|
|
|
|
$stderr = stream_get_contents($pipes[2]);
|
|
|
|
fclose($pipes[2]);
|
|
|
|
|
|
|
|
$return_value = proc_close($process);
|
|
|
|
|
|
|
|
if (!empty($stderr) || $return_value != 0)
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_error("Externan command error:\nCommand : $command\nStdout :\n$stdout\n\n - Stderr :\n$stderr");
|
2020-05-06 19:56:37 +02:00
|
|
|
else
|
2020-05-08 15:20:29 +02:00
|
|
|
self :: log_debug("Externan command result:\n\tCommand : $command\n\tReturn code: $return_value\n\tOutput:\n\t\t- Stdout :\n$stdout\n\n\t\t- Stderr :\n$stderr");
|
2020-05-06 19:56:37 +02:00
|
|
|
|
|
|
|
return array($return_value, $stdout, $stderr);
|
|
|
|
}
|
|
|
|
|
2020-05-08 20:33:42 +02:00
|
|
|
/**
|
|
|
|
* CLI helper to ask for user confirmation
|
|
|
|
*
|
|
|
|
* @param[in] $question string The confirmation question (optional, default: "Are you sure?")
|
|
|
|
*
|
|
|
|
* @retval boolean True if user confirmed, false otherwise
|
|
|
|
**/
|
|
|
|
public static function confirm($question=null) {
|
|
|
|
if (is_null($question))
|
|
|
|
$question = "Are you sure?";
|
|
|
|
echo "\n$question Type 'yes' to continue: ";
|
|
|
|
$handle = fopen ("php://stdin","r");
|
|
|
|
$line = fgets($handle);
|
|
|
|
if(trim($line) != 'yes'){
|
|
|
|
echo "User cancel\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
echo "\n";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-14 23:42:11 +02:00
|
|
|
/**
|
|
|
|
* CLI command to handle BASH command autocompleter
|
|
|
|
*
|
|
|
|
* @param[in] $command_args array Command arguments
|
|
|
|
*
|
|
|
|
* @retval boolean True on succes, false otherwise
|
|
|
|
**/
|
|
|
|
public static function bash_autocomplete($command_args) {
|
|
|
|
if (count($command_args) < 3)
|
|
|
|
return;
|
|
|
|
$comp_word_num = intval($command_args[0]);
|
|
|
|
if ($comp_word_num <= 0) return;
|
|
|
|
if ($command_args[1] != '--') return;
|
|
|
|
|
|
|
|
$comp_words = array_slice($command_args, 2);
|
|
|
|
$comp_word = (isset($comp_words[$comp_word_num])?$comp_words[$comp_word_num]:'');
|
|
|
|
self :: log_debug("bash_autocomplete: words = '".implode("', '", $comp_words)."' | word to complete = #$comp_word_num == '$comp_word'");
|
|
|
|
|
2020-06-15 08:55:00 +02:00
|
|
|
// List available options
|
|
|
|
$opts = array(
|
|
|
|
'-h', '--help',
|
|
|
|
'-d', '--debug',
|
|
|
|
'-v', '--verbose',
|
|
|
|
'-q', '--quiet',
|
|
|
|
'-C', '--console',
|
|
|
|
'-S', '--ldap-server',
|
|
|
|
'-L', '--load-class',
|
|
|
|
'-A', '--load-addon',
|
|
|
|
);
|
|
|
|
|
2020-06-14 23:42:11 +02:00
|
|
|
// Detect if command already enter, if LDAP server is selected and load specified class/addon
|
|
|
|
$command = null;
|
2020-06-15 08:55:00 +02:00
|
|
|
$command_arg_num = null;
|
|
|
|
$command_args = array();
|
2020-06-14 23:42:11 +02:00
|
|
|
for ($i=1; $i < count($comp_words); $i++) {
|
2020-07-06 17:53:54 +02:00
|
|
|
$unescaped_comp_word = $comp_words[$i];
|
|
|
|
self :: unquote_word($unescaped_comp_word);
|
|
|
|
if (array_key_exists($unescaped_comp_word, self :: $commands)) {
|
2020-06-15 08:55:00 +02:00
|
|
|
if (!$command) {
|
2020-06-14 23:42:11 +02:00
|
|
|
$command = $comp_words[$i];
|
2020-07-06 17:53:54 +02:00
|
|
|
self :: unquote_word($command);
|
2020-06-15 08:55:00 +02:00
|
|
|
$command_arg_num = $i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$command_args[] = $comp_words[$i];
|
2020-06-14 23:42:11 +02:00
|
|
|
}
|
|
|
|
else {
|
2020-07-06 17:53:54 +02:00
|
|
|
switch($unescaped_comp_word) {
|
2020-06-14 23:42:11 +02:00
|
|
|
case '-S':
|
|
|
|
case '--ldap-server':
|
|
|
|
$i++;
|
|
|
|
if ($i == $comp_word_num) {
|
|
|
|
return self :: return_bash_autocomplete_list(
|
|
|
|
self :: autocomplete_opts(array_keys(LSconfig :: get("ldap_servers", array())), $comp_word)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (!isset($comp_words[$i]))
|
|
|
|
break;
|
|
|
|
if (isset($comp_words[$i])) {
|
|
|
|
$ldap_server_id = intval($comp_words[$i]);
|
2020-07-06 17:53:54 +02:00
|
|
|
self :: unquote_word($ldap_server_id);
|
2020-06-14 23:42:11 +02:00
|
|
|
if(!LSsession :: setLdapServer($ldap_server_id))
|
|
|
|
self :: usage("Fail to select LDAP server #$ldap_server_id.");
|
2020-08-06 16:43:50 +02:00
|
|
|
$opts[] = '--sub-dn';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '--sub-dn':
|
|
|
|
$i++;
|
|
|
|
if ($i == $comp_word_num) {
|
|
|
|
self :: need_ldap_con();
|
|
|
|
$subDns = LSsession :: getSubDnLdapServer();
|
|
|
|
if (!is_array($subDns))
|
|
|
|
$subDns = array();
|
|
|
|
return self :: return_bash_autocomplete_list(
|
|
|
|
self :: autocomplete_opts(array_keys($subDns), $comp_word)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (!isset($comp_words[$i]))
|
|
|
|
break;
|
|
|
|
if (isset($comp_words[$i])) {
|
|
|
|
$subDn = $comp_words[$i];
|
|
|
|
self :: unquote_word($subDn);
|
|
|
|
self :: need_ldap_con();
|
|
|
|
if(!LSsession :: setSubDn($subDn))
|
|
|
|
self :: usage("Fail to select sub DN '$subDn'.");
|
2020-06-14 23:42:11 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '-L':
|
|
|
|
case '--load-class':
|
|
|
|
$i++;
|
|
|
|
if ($i == $comp_word_num) {
|
|
|
|
return self :: return_bash_autocomplete_list(
|
|
|
|
self :: autocomplete_class_name($comp_word)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (!isset($comp_words[$i]))
|
|
|
|
break;
|
|
|
|
$class = $comp_words[$i];
|
2020-07-06 17:53:54 +02:00
|
|
|
self :: unquote_word($class);
|
2020-06-14 23:42:11 +02:00
|
|
|
if(!LSsession :: loadLSclass($class))
|
|
|
|
self :: usage("Fail to load class '$class'.");
|
|
|
|
break;
|
|
|
|
case '-A':
|
|
|
|
case '--load-addon':
|
|
|
|
$i++;
|
|
|
|
if ($i == $comp_word_num) {
|
|
|
|
return self :: return_bash_autocomplete_list(
|
|
|
|
self :: autocomplete_addon_name($comp_word)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (!isset($comp_words[$i]))
|
|
|
|
break;
|
|
|
|
$addon = $comp_words[$i];
|
2020-07-06 17:53:54 +02:00
|
|
|
self :: unquote_word($addon);
|
2020-06-14 23:42:11 +02:00
|
|
|
if(!LSsession :: loadLSaddon($addon))
|
|
|
|
self :: usage("Fail to load addon '$addon'.");
|
|
|
|
break;
|
2020-06-15 08:55:00 +02:00
|
|
|
default:
|
|
|
|
if (!in_array($comp_words[$i], $opts)) {
|
|
|
|
$command_args[] = $comp_words[$i];
|
|
|
|
}
|
2020-06-14 23:42:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If command set and args autocompleter defined, use it
|
|
|
|
if ($command && is_callable(self :: $commands[$command]['args_autocompleter'])) {
|
2020-06-15 08:55:00 +02:00
|
|
|
$command_comp_word_num = $comp_word_num-$command_arg_num-1;
|
|
|
|
self :: log_debug("Run CLI command $command autocompleter with cmd args='".implode("', '", $command_args)."', comp word #$command_comp_word_num = '$comp_word'");
|
2020-06-14 23:42:11 +02:00
|
|
|
return self :: return_bash_autocomplete_list(
|
|
|
|
call_user_func(
|
|
|
|
self :: $commands[$command]['args_autocompleter'],
|
2020-06-15 08:55:00 +02:00
|
|
|
$command_args,
|
|
|
|
$command_comp_word_num,
|
2020-06-14 23:42:11 +02:00
|
|
|
$comp_word,
|
|
|
|
$opts
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If command not already choiced, add commands name to available options list
|
|
|
|
if (!$command)
|
|
|
|
$opts = array_merge($opts, array_keys(self :: $commands));
|
|
|
|
|
|
|
|
return self :: return_bash_autocomplete_list(
|
|
|
|
self :: autocomplete_opts($opts, $comp_word, true)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print list of available autocomplete options as required by BASH
|
|
|
|
*
|
|
|
|
* @param[in] $list mixed List of available autocomplete options if it's an array
|
|
|
|
*
|
|
|
|
* @retval boolean True if $list is an array, false otherwise
|
|
|
|
**/
|
|
|
|
public static function return_bash_autocomplete_list($list) {
|
|
|
|
if (is_array($list)) {
|
|
|
|
echo implode("\n", $list);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autocomplete class name
|
|
|
|
*
|
|
|
|
* @param[in] $prefix string Class name prefix (optional, default=empty string)
|
|
|
|
*
|
|
|
|
* @retval array List of matched class names
|
|
|
|
**/
|
|
|
|
public static function autocomplete_class_name($prefix='') {
|
|
|
|
$classes = array();
|
2020-07-06 17:53:54 +02:00
|
|
|
$quote_char = self :: unquote_word($prefix);
|
2020-06-14 23:42:11 +02:00
|
|
|
$regex = "/^class\.($prefix.*)\.php$/";
|
|
|
|
foreach(array(LS_ROOT_DIR."/".LS_CLASS_DIR, LS_ROOT_DIR."/".LS_LOCAL_DIR."/".LS_CLASS_DIR) as $dir_path) {
|
|
|
|
foreach (listFiles($dir_path, $regex) as $file) {
|
|
|
|
$class = $file[1];
|
|
|
|
if (!in_array($class, $classes))
|
2020-07-06 17:53:54 +02:00
|
|
|
$classes[] = self :: quote_word($class, $quote_char);
|
2020-06-14 23:42:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $classes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autocomplete addon name
|
|
|
|
*
|
|
|
|
* @param[in] $prefix string Addon name prefix (optional, default=empty string)
|
|
|
|
*
|
|
|
|
* @retval array List of matched addon names
|
|
|
|
**/
|
|
|
|
public static function autocomplete_addon_name($prefix='') {
|
|
|
|
$addons = array();
|
2020-07-06 17:53:54 +02:00
|
|
|
$quote_char = self :: unquote_word($prefix);
|
2020-06-14 23:42:11 +02:00
|
|
|
$regex = "/^LSaddons\.($prefix.*)\.php$/";
|
|
|
|
foreach(array(LS_ROOT_DIR."/".LS_ADDONS_DIR, LS_ROOT_DIR."/".LS_LOCAL_DIR."/".LS_ADDONS_DIR) as $dir_path) {
|
|
|
|
foreach (listFiles($dir_path, $regex) as $file) {
|
|
|
|
$addon = $file[1];
|
|
|
|
if (!in_array($addon, $addons))
|
2020-07-06 17:53:54 +02:00
|
|
|
$addons[] = self :: quote_word($addon, $quote_char);
|
2020-06-14 23:42:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $addons;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autocomplete options
|
|
|
|
*
|
|
|
|
* @param[in] $opts array Available options
|
|
|
|
* @param[in] $prefix string Option name prefix (optional, default=empty string)
|
|
|
|
* @param[in] $case_sensitive boolean Set to false if options are case insensitive (optional, default=true)
|
2020-07-06 17:53:54 +02:00
|
|
|
* @param[in] $quote_char boolean Quote character (optional, if not set, $prefix will be unquoted and its
|
|
|
|
* quote char (if detected) will be used to quote options)
|
2020-06-14 23:42:11 +02:00
|
|
|
*
|
|
|
|
* @retval array List of matched options
|
|
|
|
**/
|
2020-07-06 17:53:54 +02:00
|
|
|
public static function autocomplete_opts($opts, $prefix='', $case_sensitive=true, $quote_char='') {
|
2020-06-14 23:42:11 +02:00
|
|
|
if (!is_string($prefix) || strlen($prefix)==0)
|
|
|
|
return $opts;
|
2020-07-06 17:53:54 +02:00
|
|
|
if (!$quote_char)
|
|
|
|
$quote_char = self :: unquote_word($prefix);
|
2020-06-14 23:42:11 +02:00
|
|
|
|
|
|
|
if (!$case_sensitive)
|
|
|
|
$prefix = strtolower($prefix);
|
|
|
|
$matched_opts = array();
|
|
|
|
foreach($opts as $key => $opt) {
|
|
|
|
if (!$case_sensitive)
|
|
|
|
$opt = strtolower($opt);
|
2020-07-06 17:53:54 +02:00
|
|
|
self :: unquote_word($opt);
|
2020-06-14 23:42:11 +02:00
|
|
|
if (substr($opt, 0, strlen($prefix)) == $prefix)
|
2020-07-06 17:53:54 +02:00
|
|
|
$matched_opts[] = LScli :: quote_word($opt, $quote_char);
|
2020-06-14 23:42:11 +02:00
|
|
|
}
|
|
|
|
self :: log_debug("autocomplete_opts(".implode('|', $opts).", $prefix, case ".($case_sensitive?"sensitive":"insensitive").") : matched opts: ".print_r($matched_opts, true));
|
|
|
|
return $matched_opts;
|
|
|
|
}
|
|
|
|
|
2020-06-15 10:40:48 +02:00
|
|
|
/**
|
|
|
|
* Autocomplete integer option
|
|
|
|
*
|
|
|
|
* @param[in] $prefix string Option prefix (optional, default=empty string)
|
|
|
|
*
|
|
|
|
* @retval array List of available options
|
|
|
|
**/
|
|
|
|
public static function autocomplete_int($prefix='') {
|
|
|
|
$opts = array();
|
|
|
|
for ($i=0; $i < 10; $i++) {
|
|
|
|
$opts[] = "$prefix$i";
|
|
|
|
}
|
|
|
|
return $opts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autocomplete LSobject type option
|
|
|
|
*
|
|
|
|
* @param[in] $prefix string Option prefix (optional, default=empty string)
|
2020-07-06 17:53:54 +02:00
|
|
|
* @param[in] $case_sensitive boolean Set to false if options are case insensitive (optional, default=true)
|
|
|
|
* @param[in] $quote_char boolean Quote character (optional, if not set, $prefix will be unquoted and its
|
|
|
|
* quote char (if detected) will be used to quote options)
|
2020-06-15 10:40:48 +02:00
|
|
|
*
|
|
|
|
* @retval array List of available options
|
|
|
|
**/
|
2020-07-06 17:53:54 +02:00
|
|
|
public static function autocomplete_LSobject_types($prefix='', $case_sensitive=true, $quote_char='') {
|
2020-06-15 10:40:48 +02:00
|
|
|
$types = LSconfig :: get('LSaccess', array(), null, LSsession :: $ldapServer);
|
|
|
|
$subdn_config = LSconfig :: get('subDn', null, null, LSsession :: $ldapServer);
|
|
|
|
if (is_array($subdn_config)) {
|
|
|
|
foreach ($subdn_config as $key => $value) {
|
|
|
|
if (!is_array($value)) continue;
|
|
|
|
if ($key == 'LSobject') {
|
2020-08-06 15:11:41 +02:00
|
|
|
foreach ($value as $subDnObjType => $objConfig)
|
|
|
|
if (is_array($objConfig) && isset($objConfig['LSobjects']) && is_array($objConfig['LSobjects']))
|
2020-06-15 10:40:48 +02:00
|
|
|
foreach ($objConfig['LSobjects'] as $type)
|
|
|
|
if (!in_array($type, $types))
|
|
|
|
$types[] = $type;
|
|
|
|
}
|
2020-08-06 15:11:41 +02:00
|
|
|
else if (isset($value['LSobjects']) && is_array($value['LSobjects'])) {
|
|
|
|
foreach ($value['LSobjects'] as $type)
|
|
|
|
if (!in_array($type, $types))
|
|
|
|
$types[] = $type;
|
|
|
|
}
|
2020-06-15 10:40:48 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-06 17:53:54 +02:00
|
|
|
return self :: autocomplete_opts($types, $prefix, $case_sensitive, $quote_char);
|
2020-06-15 10:40:48 +02:00
|
|
|
}
|
|
|
|
|
2020-06-15 11:26:57 +02:00
|
|
|
/**
|
|
|
|
* Autocomplete LSobject DN option
|
|
|
|
*
|
|
|
|
* @param[in] $objType string LSobject type
|
|
|
|
* @param[in] $prefix string Option prefix (optional, default=empty string)
|
2020-07-06 17:53:54 +02:00
|
|
|
* @param[in] $case_sensitive boolean Set to false if options are case insensitive (optional, default=true)
|
|
|
|
* @param[in] $quote_char boolean Quote character (optional, if not set, $prefix will be unquoted and its
|
|
|
|
* quote char (if detected) will be used to quote options)
|
2020-06-15 11:26:57 +02:00
|
|
|
*
|
|
|
|
* @retval array List of available options
|
|
|
|
**/
|
2020-07-06 17:53:54 +02:00
|
|
|
public static function autocomplete_LSobject_dn($objType, $prefix='', $case_sensitive=true, $quote_char='') {
|
2020-06-23 15:58:24 +02:00
|
|
|
if (!LSsession ::loadLSobject($objType, false))
|
2020-06-15 11:26:57 +02:00
|
|
|
return array();
|
2020-06-23 15:58:24 +02:00
|
|
|
|
2020-07-06 17:53:54 +02:00
|
|
|
// Make sure to unquote prefix
|
|
|
|
if (!$quote_char && $prefix)
|
|
|
|
$quote_char = self :: unquote_word($prefix);
|
|
|
|
|
2020-06-15 11:26:57 +02:00
|
|
|
$rdn_attr = LSconfig :: get("LSobjects.$objType.rdn");
|
2020-06-23 15:58:24 +02:00
|
|
|
if (!$rdn_attr || strlen($prefix) < (strlen($rdn_attr)+2) || substr($prefix, 0, (strlen($rdn_attr)+1)) != "$rdn_attr=")
|
2020-07-06 17:53:54 +02:00
|
|
|
return array(LScli :: quote_word("$rdn_attr=", $quote_char));
|
2020-06-15 11:26:57 +02:00
|
|
|
|
|
|
|
// Split prefix by comma to keep only RDN
|
|
|
|
$prefix_parts = explode(',', $prefix);
|
|
|
|
$prefix_rdn = $prefix_parts[0];
|
|
|
|
|
|
|
|
// Search objects
|
2020-06-23 15:58:24 +02:00
|
|
|
self :: need_ldap_con();
|
2020-06-15 11:26:57 +02:00
|
|
|
$obj = new $objType();
|
|
|
|
$objs = $obj -> listObjectsName("($prefix_rdn*)");
|
|
|
|
if (is_array($objs)) {
|
|
|
|
$dns = array_keys($objs);
|
|
|
|
self :: log_debug("Matching $objType DNs with prefix '$prefix_rdn': ".implode(', ', $dns));
|
2020-07-06 17:53:54 +02:00
|
|
|
return self :: autocomplete_opts($dns, $prefix, $case_sensitive, $quote_char);
|
|
|
|
}
|
|
|
|
return array(LScli :: quote_word("$rdn_attr=", $quote_char));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unquote a word
|
|
|
|
*
|
|
|
|
* @param[in] &$word string Reference of the word to unquote
|
|
|
|
*
|
|
|
|
* @retval string The quote character or an empty string if word if not quoted
|
|
|
|
*/
|
|
|
|
public static function unquote_word(&$word) {
|
|
|
|
if (in_array($word[0], array('"', "'"))) {
|
|
|
|
$quote_char = $word[0];
|
|
|
|
$word = substr($word, 1);
|
|
|
|
if ($word[strlen($word)-1] == $quote_char)
|
|
|
|
$word = substr($word, 0, -1);
|
|
|
|
return $quote_char;
|
2020-06-15 11:26:57 +02:00
|
|
|
}
|
2020-07-06 17:53:54 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Quote a word
|
|
|
|
*
|
|
|
|
* @param[in] $word string The word to quote
|
|
|
|
* @param[in] $quote_char string The quote character. If not defined or empty, the input word
|
|
|
|
* will be returned unmodified.
|
|
|
|
*
|
|
|
|
* @retval string The quoted word
|
|
|
|
*/
|
|
|
|
public static function quote_word($word, $quote_char) {
|
|
|
|
if (!$quote_char) return $word;
|
|
|
|
return $quote_char . str_replace($quote_char, "\\$quote_char", $word) . $quote_char;
|
2020-06-15 11:26:57 +02:00
|
|
|
}
|
|
|
|
|
2020-04-29 15:15:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Error Codes
|
|
|
|
*/
|
|
|
|
LSerror :: defineError('LScli_01',
|
|
|
|
_("LScli : The CLI command '%{command}' already exists.")
|
|
|
|
);
|
|
|
|
LSerror :: defineError('LScli_02',
|
|
|
|
_("LScli : The CLI command '%{command}' handler is not callable.")
|
|
|
|
);
|
2020-06-14 23:42:11 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Register LScli commands
|
|
|
|
*/
|
|
|
|
LScli :: add_command(
|
|
|
|
'bash_autocomplete',
|
|
|
|
array('LScli', 'bash_autocomplete'),
|
|
|
|
'Handle BASH completion',
|
|
|
|
'[arg num to autocomplete] -- [command args]',
|
|
|
|
null,
|
|
|
|
false
|
|
|
|
);
|