2011-09-16 21:35:54 +00:00
|
|
|
<?php
|
|
|
|
/* Required libraries */
|
|
|
|
$TOPDIR = '..';
|
|
|
|
require_once "$TOPDIR/lib/srv_functions.php";
|
|
|
|
require_once "$TOPDIR/lib/jsonwrapper.php";
|
|
|
|
|
|
|
|
/**
|
2012-05-01 23:43:11 +00:00
|
|
|
* Issue a xCAT command, e.g. rinv gpok123 all. This will handle most commands.
|
|
|
|
* If not, you can create your own .php. Look at zCmd.php for an example.
|
2011-09-16 21:35:54 +00:00
|
|
|
*
|
2012-05-01 23:43:11 +00:00
|
|
|
* @param $cmd The xCAT command
|
|
|
|
* @param $tgt The target node or group
|
|
|
|
* @param $args The xCAT command arguments, separated by semicolons
|
|
|
|
* @param $opts The xCAT command options, separated by semicolons
|
|
|
|
* @return The xCAT response. Replies are in the form of JSON
|
2011-09-16 21:35:54 +00:00
|
|
|
*/
|
|
|
|
if (isset($_GET["cmd"])) {
|
2012-09-13 16:04:42 +00:00
|
|
|
// HTTP GET requests
|
|
|
|
$cmd = $_GET["cmd"];
|
|
|
|
$tgt = $_GET["tgt"];
|
|
|
|
$args = $_GET["args"];
|
|
|
|
|
|
|
|
// Special messages put here
|
|
|
|
// This gets sent back to the AJAX request as is.
|
|
|
|
$msg = $_GET["msg"];
|
|
|
|
|
|
|
|
// If no $tgt is given, set $tgt to NULL
|
|
|
|
if (!$tgt) {
|
|
|
|
$tgt = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no $msg is given, set $msg to NULL
|
|
|
|
if (!$msg) {
|
|
|
|
$msg = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no $args are given, set $args_array to NULL
|
|
|
|
$args_array = array();
|
|
|
|
if ($args) {
|
|
|
|
// If $args contains multiple arguments, split it into an array
|
|
|
|
if (strpos($args,";")) {
|
|
|
|
// Split the arguments into an array
|
|
|
|
$args_array = array();
|
|
|
|
$args_array = explode(";", $args);
|
|
|
|
} else {
|
|
|
|
$args_array = array($args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no $opts are given, set $opts_array to NULL
|
|
|
|
$opts_array = array();
|
|
|
|
if (isset($_GET["opts"])) {
|
|
|
|
$opts = $_GET["opts"];
|
|
|
|
|
|
|
|
// If $args contains multiple arguments, split it into an array
|
|
|
|
if (strpos($opts,";")) {
|
|
|
|
// Split the arguments into an array
|
|
|
|
$opts_array = array();
|
|
|
|
$opts_array = explode(";", $opts);
|
|
|
|
} else {
|
|
|
|
$opts_array = array($opts);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Submit request and get response
|
|
|
|
$xml = docmd($cmd, $tgt, $args_array, $opts_array);
|
|
|
|
// If the output is flushed, do not return output in JSON
|
|
|
|
if (in_array("flush", $opts_array)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rsp = array();
|
|
|
|
|
|
|
|
// webrun pping and gangliastatus output needs special handling
|
|
|
|
if(strncasecmp($cmd, "webrun", 6) == 0 && (stristr($args, "pping") || stristr($args, "gangliastatus") || stristr($args, "chtab"))) {
|
|
|
|
$rsp = extractWebrun($xml);
|
|
|
|
}
|
|
|
|
// nodels output needs special handling
|
|
|
|
else if(strncasecmp($cmd, "nodels", 6) == 0) {
|
|
|
|
// Handle the output the same way as webrun
|
|
|
|
$rsp = extractNodels($xml);
|
|
|
|
}
|
|
|
|
// extnoderange output needs special handling
|
|
|
|
// This command gets the nodes and groups
|
|
|
|
else if(strncasecmp($cmd, "extnoderange", 12) == 0) {
|
|
|
|
$rsp = extractExtnoderange($xml);
|
|
|
|
}
|
|
|
|
// Handle the typical output
|
|
|
|
else {
|
|
|
|
foreach ($xml->children() as $child) {
|
|
|
|
foreach ($child->children() as $data) {
|
|
|
|
if($data->name) {
|
|
|
|
$node = $data->name;
|
|
|
|
|
|
|
|
if($data->data->contents){
|
|
|
|
$cont = $data->data->contents;
|
|
|
|
} else {
|
|
|
|
$cont = $data->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cont = str_replace(":|:", "\n", $cont);
|
|
|
|
array_push($rsp, "$node: $cont");
|
|
|
|
} else if (strlen("$data") > 2) {
|
|
|
|
$data = str_replace(":|:", "\n", $data);
|
|
|
|
array_push($rsp, "$data");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reply in the form of JSON
|
|
|
|
$rtn = array("rsp" => $rsp, "msg" => $msg);
|
|
|
|
echo json_encode($rtn);
|
2011-09-16 21:35:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract the output for a webrun command
|
|
|
|
*
|
2012-05-01 23:43:11 +00:00
|
|
|
* @param $xml The XML output from docmd()
|
|
|
|
* @return An array containing the output
|
2011-09-16 21:35:54 +00:00
|
|
|
*/
|
|
|
|
function extractWebrun($xml) {
|
2012-09-13 16:04:42 +00:00
|
|
|
$rsp = array();
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
// Extract data returned
|
|
|
|
foreach($xml->children() as $nodes){
|
|
|
|
foreach($nodes->children() as $node){
|
|
|
|
// Get the node name
|
|
|
|
$name = $node->name;
|
|
|
|
|
|
|
|
// Get the content
|
|
|
|
$status = $node->data;
|
|
|
|
$status = str_replace(":|:", "\n", $status);
|
|
|
|
|
|
|
|
// Add to return array
|
|
|
|
$rsp[$i] = array("$name", "$status");
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rsp;
|
2011-09-16 21:35:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract the output for a nodels command
|
|
|
|
*
|
2012-05-01 23:43:11 +00:00
|
|
|
* @param $xml The XML output from docmd()
|
|
|
|
* @return An array containing the output
|
2011-09-16 21:35:54 +00:00
|
|
|
*/
|
|
|
|
function extractNodels($xml) {
|
2012-09-13 16:04:42 +00:00
|
|
|
$rsp = array();
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
// Extract data returned
|
|
|
|
foreach($xml->children() as $nodes){
|
|
|
|
foreach($nodes->children() as $node){
|
|
|
|
// Get the node name
|
|
|
|
$name = $node->name;
|
|
|
|
// Get the content
|
|
|
|
$status = $node->data->contents;
|
|
|
|
$status = str_replace(":|:", "\n", $status);
|
|
|
|
|
|
|
|
$description = $node->data->desc;
|
|
|
|
// Add to return array
|
|
|
|
$rsp[$i] = array("$name", "$status", "$description");
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rsp;
|
2011-09-16 21:35:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract the output for a extnoderange command
|
|
|
|
*
|
2012-05-01 23:43:11 +00:00
|
|
|
* @param $xml The XML output from docmd()
|
|
|
|
* @return The nodes and groups
|
2011-09-16 21:35:54 +00:00
|
|
|
*/
|
|
|
|
function extractExtnoderange($xml) {
|
2012-09-13 16:04:42 +00:00
|
|
|
$rsp = array();
|
2011-09-16 21:35:54 +00:00
|
|
|
|
2012-09-13 16:04:42 +00:00
|
|
|
// Extract data returned
|
|
|
|
foreach ($xml->xcatresponse->intersectinggroups as $group) {
|
|
|
|
array_push($rsp, "$group");
|
|
|
|
}
|
2011-09-16 21:35:54 +00:00
|
|
|
|
2012-09-13 16:04:42 +00:00
|
|
|
return $rsp;
|
2011-09-16 21:35:54 +00:00
|
|
|
}
|
|
|
|
?>
|