253 lines
8.7 KiB
PHP
253 lines
8.7 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation for version 2.
|
|
// 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.
|
|
|
|
|
|
|
|
// Load global vars
|
|
require ("include/config.php");
|
|
|
|
check_login ();
|
|
|
|
if (! give_acl ($config['id_user'], 0, "LM")) {
|
|
audit_db ($config['id_user'], $REMOTE_ADDR, "ACL Violation",
|
|
"Trying to access Plugin Management");
|
|
require ("general/noaccess.php");
|
|
return;
|
|
}
|
|
|
|
|
|
// Update plugin
|
|
if (isset($_GET["update_plugin"])){ // if modified any parameter
|
|
$plugin_id = get_parameter ("update_plugin", 0);
|
|
$plugin_name = get_parameter ("form_name", "");
|
|
$plugin_description = get_parameter ("form_description", "");
|
|
$plugin_max_timeout = get_parameter ("form_max_timeout", "");
|
|
$plugin_execute = get_parameter ("form_execute", "");
|
|
$plugin_net_dst_opt = get_parameter ("form_net_dst_opt", "");
|
|
$plugin_net_port_opt = get_parameter ("form_net_port_opt", "");
|
|
$plugin_user_opt = get_parameter ("form_user_opt", "");
|
|
$plugin_pass_opt = get_parameter ("form_pass_opt", "");
|
|
$plugin_plugin_type = get_parameter ("form_plugin_type", "0");
|
|
|
|
$sql_update ="UPDATE tplugin SET
|
|
name = '$plugin_name',
|
|
description = '$plugin_description',
|
|
max_timeout = '$plugin_max_timeout',
|
|
execute = '$plugin_execute',
|
|
net_dst_opt = '$plugin_net_dst_opt',
|
|
net_port_opt = '$plugin_net_port_opt',
|
|
user_opt = '$plugin_user_opt',
|
|
plugin_type = '$plugin_plugin_type',
|
|
pass_opt = '$plugin_pass_opt'
|
|
WHERE id = $plugin_id";
|
|
$result=mysql_query($sql_update);
|
|
if (! $result) {
|
|
echo "<h3 class='error'>".__('Problem updating plugin')."</h3>";
|
|
} else {
|
|
echo "<h3 class='suc'>".__('Plugin updated successfully')."</h3>";
|
|
}
|
|
}
|
|
|
|
// Create plugin
|
|
if (isset($_GET["create_plugin"])){
|
|
$plugin_name = get_parameter ("form_name", "");
|
|
$plugin_description = get_parameter ("form_description", "");
|
|
$plugin_max_timeout = get_parameter ("form_max_timeout", "");
|
|
$plugin_execute = get_parameter ("form_execute", "");
|
|
$plugin_net_dst_opt = get_parameter ("form_net_dst_opt", "");
|
|
$plugin_net_port_opt = get_parameter ("form_net_port_opt", "");
|
|
$plugin_user_opt = get_parameter ("form_user_opt", "");
|
|
$plugin_pass_opt = get_parameter ("form_pass_opt", "");
|
|
$plugin_plugin_type = get_parameter ("form_plugin_type", "0");
|
|
|
|
$sql_insert ="INSERT tplugin (name, description, max_timeout, execute, net_dst_opt, net_port_opt, user_opt, pass_opt, plugin_type) VALUES ('$plugin_name', '$plugin_description', '$plugin_max_timeout', '$plugin_execute', '$plugin_net_dst_opt', '$plugin_net_port_opt', '$plugin_user_opt', '$plugin_pass_opt', $plugin_plugin_type)";
|
|
$result=mysql_query($sql_insert);
|
|
if (! $result){
|
|
echo "<h3 class='error'>".__('Problem creating plugin')."</h3>";
|
|
echo $sql_insert;
|
|
} else {
|
|
echo "<h3 class='suc'>".__('Plugin created successfully')."</h3>";
|
|
}
|
|
}
|
|
|
|
if (isset($_GET["kill_plugin"])){ // if delete alert
|
|
$plugin_id = get_parameter ("kill_plugin", 0);
|
|
$sql_delete= "DELETE FROM tplugin WHERE id= ".$plugin_id;
|
|
$result=mysql_query($sql_delete);
|
|
if (! $result){
|
|
echo "<h3 class='error'>".__('Problem deleting plugin')."</h3>";
|
|
} else {
|
|
echo "<h3 class='suc'>".__('Plugin deleted successfully')."</h3>";
|
|
}
|
|
if ($plugin_id != 0){
|
|
$sql_delete2 ="DELETE FROM tagente_modulo WHERE id_plugin = ".$plugin_id;
|
|
$result=mysql_query($sql_delete2);
|
|
}
|
|
}
|
|
|
|
$view = get_parameter ("view", "");
|
|
$create = get_parameter ("create", "");
|
|
|
|
if ($view != ""){
|
|
$form_id = $view;
|
|
$plugin = get_db_row ("tplugin", "id", $form_id);
|
|
$form_name = $plugin["name"];
|
|
$form_description = $plugin["description"];
|
|
$form_max_timeout = $plugin ["max_timeout"];
|
|
$form_execute = $plugin ["execute"];
|
|
$form_net_dst_opt = $plugin ["net_dst_opt"];
|
|
$form_net_port_opt = $plugin ["net_port_opt"];
|
|
$form_user_opt = $plugin ["user_opt"];
|
|
$form_pass_opt = $plugin ["pass_opt"];
|
|
$form_plugin_type = $plugin ["plugin_type"];
|
|
}
|
|
if ($create != ""){
|
|
$form_name = "";
|
|
$form_description = "";
|
|
$form_max_timeout = "";
|
|
$form_execute = "";
|
|
$form_net_dst_opt = "";
|
|
$form_net_port_opt = "";
|
|
$form_user_opt = "";
|
|
$form_pass_opt = "";
|
|
$form_plugin_type = 0;
|
|
}
|
|
|
|
// SHOW THE FORM
|
|
// =================================================================
|
|
|
|
if (($create != "") OR ($view != "")){
|
|
|
|
echo "<h2>";
|
|
if ($create != "")
|
|
echo __('Pandora servers')." » ". __('Plugin creation');
|
|
else {
|
|
echo __('Pandora servers')." » ". __('Plugin update');
|
|
$plugin_id = get_parameter ("view","");
|
|
}
|
|
print_help_icon("plugin_definition");
|
|
echo "</h2>";
|
|
|
|
if ($create == "")
|
|
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&update_plugin=$plugin_id'>";
|
|
else
|
|
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&create_plugin=1'>";
|
|
|
|
echo '<table width="600" cellspacing="4" cellpadding="4" class="databox_color">';
|
|
|
|
echo '<tr><td class="datos">'.__('Name');
|
|
echo '<td class="datos">';
|
|
echo '<input type="text" name="form_name" size=30 value="'.$form_name.'"></td>';
|
|
|
|
echo '<tr><td class="datos2">'.__('Plugin command');
|
|
echo '<td class="datos2">';
|
|
echo '<input type="text" name="form_execute" size=45 value="'.$form_execute.'"></td>';
|
|
|
|
echo '<tr><td class="datos2">'.__('Plugin type');
|
|
echo '<td class="datos2">';
|
|
$fields[0]= __("Standard");
|
|
$fields[1]= __("Nagios");
|
|
print_select ($fields, "form_plugin_type", $form_plugin_type);
|
|
|
|
echo '<tr><td class="datos">'.__('Max. timeout');
|
|
echo '<td class="datos">';
|
|
echo '<input type="text" name="form_max_timeout" size=5 value="'.$form_max_timeout.'"></td>';
|
|
|
|
echo '<tr><td class="datos2">'.__('IP address option');
|
|
echo '<td class="datos2">';
|
|
echo '<input type="text" name="form_net_dst_opt" size=15 value="'.$form_net_dst_opt.'"></td>';
|
|
|
|
echo '<tr><td class="datos">'.__('Port option');
|
|
echo '<td class="datos">';
|
|
echo '<input type="text" name="form_net_port_opt" size=5 value="'.$form_net_port_opt.'"></td>';
|
|
|
|
|
|
echo '<tr><td class="datos2">'.__('User option');
|
|
echo '<td class="datos2">';
|
|
echo '<input type="text" name="form_user_opt" size=15 value="'.$form_user_opt.'"></td>';
|
|
|
|
echo '<tr><td class="datos">'.__('Password option');
|
|
echo '<td class="datos">';
|
|
echo '<input type="text" name="form_pass_opt" size=15 value="'.$form_pass_opt.'"></td>';
|
|
|
|
echo '<tr><td class="datos2">'.__('Description').'</td>';
|
|
echo '<td class="datos2"><textarea name="form_description" cols="50" rows="4">';
|
|
echo $form_description;
|
|
echo '</textarea></td></tr>';
|
|
|
|
echo '</table>';
|
|
echo '<table width=600>';
|
|
echo '<tr><td align="right">';
|
|
|
|
if ($create != ""){
|
|
echo "<input name='crtbutton' type='submit' class='sub wand' value='".__('Create')."'>";
|
|
} else {
|
|
echo "<input name='uptbutton' type='submit' class='sub upd' value='".__('Update')."'>";
|
|
}
|
|
echo '</form></table>';
|
|
}
|
|
|
|
else {
|
|
echo "<h2>";
|
|
echo __('Pandora servers')." » ".__('Plugins registered in Pandora FMS');
|
|
echo "</h2>";
|
|
// If not edition or insert, then list available plugins
|
|
$sql1='SELECT * FROM tplugin ORDER BY name';
|
|
$result=mysql_query($sql1);
|
|
if (mysql_num_rows($result) > 0){
|
|
echo '<table width="730" cellspacing="4" cellpadding="4" class="databox">';
|
|
echo "<th>".__('Name');
|
|
echo "<th>".__('Type');
|
|
echo "<th>".__('Command');
|
|
echo "<th>".__('Delete');
|
|
$color = 0;
|
|
while ($row=mysql_fetch_array($result)){
|
|
if ($color == 1){
|
|
$tdcolor = "datos";
|
|
$color = 0;
|
|
}
|
|
else {
|
|
$tdcolor = "datos2";
|
|
$color = 1;
|
|
}
|
|
echo "<tr>";
|
|
echo "<td class=$tdcolor>";
|
|
echo "<b><a href='index.php?sec=gservers&sec2=godmode/servers/plugin&view=".$row["id"]."'>";
|
|
echo $row["name"];
|
|
echo "</a></b>";
|
|
echo "<td class=$tdcolor>";
|
|
if ($row["plugin_type"] == 0)
|
|
echo __('Standard');
|
|
else
|
|
echo __('Nagios');
|
|
echo "<td class=$tdcolor>";
|
|
echo $row["execute"];
|
|
echo "<td class=$tdcolor>";
|
|
echo "<a href='index.php?sec=gservers&sec2=godmode/servers/plugin&kill_plugin=".$row["id"]."'><img src='images/cross.png' border=0></a>";
|
|
}
|
|
echo "</table>";
|
|
} else {
|
|
echo '<div class="nf">'. __('There are no plugins in the system');
|
|
echo "<br>";
|
|
}
|
|
echo "<table width=730>";
|
|
echo "<tr><td align=right>";
|
|
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&create=1'>";
|
|
echo "<input name='crtbutton' type='submit' class='sub wand' value='".__('Create')."'>";
|
|
echo "</table>";
|
|
}
|
|
|
|
?>
|