2010-10-18 Miguel de Dios <miguel.dedios@artica.es>
* extensions/insert_data.php: added first version of extension to added data in any module in any agent, by form or csv. Pending tasks: #3063417 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3416 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
4a0b5df5ce
commit
4b05e2df64
|
@ -1,3 +1,10 @@
|
|||
2010-10-18 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* extensions/insert_data.php: added first version of extension to added
|
||||
data in any module in any agent, by form or csv.
|
||||
|
||||
Pending tasks: #3063417
|
||||
|
||||
2010-10-18 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_v3.1_to_v3.2.sql: Added support for recon scripts.
|
||||
|
|
|
@ -0,0 +1,230 @@
|
|||
<?php
|
||||
|
||||
//Pandora FMS- http://pandorafms.com
|
||||
// ==================================================
|
||||
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas
|
||||
|
||||
// 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.
|
||||
|
||||
function createXMLData($agent, $agentModule, $time, $data) {
|
||||
global $config;
|
||||
|
||||
$xmlTemplate = "<?xml version='1.0' encoding='ISO-8859-1'?>
|
||||
<agent_data description='' group='' os_name='%s' " .
|
||||
" os_version='%s' interval='%d' version='%s' timestamp='%s' agent_name='%s' timezone_offset='%d'>
|
||||
<module>
|
||||
<name><![CDATA[%s]]></name>
|
||||
<description><![CDATA[%s]]></description>
|
||||
<type><![CDATA[%s]]></type>
|
||||
<data><![CDATA[%s]]></data>
|
||||
</module>
|
||||
</agent_data>";
|
||||
|
||||
$xml = sprintf($xmlTemplate, safe_output(get_os_name($agent['id_os'])),
|
||||
safe_output($agent['os_version']), $agent['intervalo'],
|
||||
safe_output($agent['agent_version']), $time,
|
||||
safe_output($agent['nombre']), $agent['timezone_offset'],
|
||||
safe_output($agentModule['nombre']), safe_output($agentModule['descripcion']), get_module_type_name($agentModule['id_tipo_modulo']), $data);
|
||||
|
||||
if (false === @file_put_contents($config['remote_config'] . '/' . safe_output($agent['nombre']) . '.' . strtotime($time) . '.data', $xml)) {
|
||||
print_error_message(sprintf(__('Can\'t save agent (%s), module (%s) data xml.'), $agent['nombre'], $agentModule['nombre']));
|
||||
}
|
||||
else {
|
||||
print_success_message(sprintf(__('Save agent (%s), module (%s) data xml.'), $agent['nombre'], $agentModule['nombre']));
|
||||
}
|
||||
}
|
||||
|
||||
function mainInsertData() {
|
||||
global $config;
|
||||
|
||||
|
||||
print_page_header (__("Insert data"), "images/extensions.png", false, "", true, "");
|
||||
|
||||
|
||||
|
||||
if (! give_acl ($config['id_user'], 0, "AW") && ! is_user_admin ($config['id_user'])) {
|
||||
audit_db ($config['id_user'], $_SERVER['REMOTE_ADDR'], "ACL Violation", "Trying to access Setup Management");
|
||||
require ("general/noaccess.php");
|
||||
return;
|
||||
}
|
||||
|
||||
$save = (bool)get_parameter('save', false);
|
||||
$id_agent = (string)get_parameter('id_agent', '');
|
||||
$id_agent_module = (int)get_parameter('id_agent_module', '');
|
||||
$data = (string)get_parameter('data');
|
||||
$date = (string) get_parameter ('date', date ('Y-m-d'));
|
||||
$time = (string) get_parameter ('time', date ('h:00A'));
|
||||
if (isset($_FILES['csv'])) {
|
||||
if ($_FILES['csv']['error'] != 4) {
|
||||
$csv = $_FILES['csv'];
|
||||
}
|
||||
else {
|
||||
$csv = false;
|
||||
}
|
||||
}
|
||||
else {
|
||||
$csv = false;
|
||||
}
|
||||
|
||||
|
||||
if ($save) {
|
||||
if (!check_acl($config['id_user'], get_agent_group(get_agent_id($id_agent)), "AW")) {
|
||||
print_error_message(__('You haven\'t privileges for insert data in the agent.'));
|
||||
}
|
||||
else {
|
||||
$agent = get_db_row_filter('tagente', array('nombre' => $id_agent));
|
||||
$agentModule = get_db_row_filter('tagente_modulo', array('id_agente_modulo' => $id_agent_module));
|
||||
|
||||
$date2 = str_replace('-', '/', $date);
|
||||
$time2 = DATE("H:i", strtotime($time));
|
||||
|
||||
$date_xml = $date2 . ' ' . $time2 . ':00';
|
||||
|
||||
|
||||
|
||||
if ($csv !== false) {
|
||||
$file = file($csv['tmp_name']);
|
||||
foreach ($file as $line) {
|
||||
$tokens = explode(';', $line);
|
||||
|
||||
createXMLData($agent, $agentModule, trim($tokens[0]), trim($tokens[1]));
|
||||
}
|
||||
}
|
||||
else {
|
||||
createXMLData($agent, $agentModule, $date_xml, $data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
echo '<div class="notify">';
|
||||
echo __("Please check that the directory \"/var/spool/pandora/data_in\" is writeable by the apache user. <br /><br />The CSV file format is date;value<newline>date;value<newline>... The date in CSV is in format Y/m/d H:i:s.");
|
||||
echo '</div>';
|
||||
|
||||
$table = null;
|
||||
$table->width = '80%';
|
||||
$table->style = array();
|
||||
$table->style[0] = 'font-weight: bolder;';
|
||||
|
||||
$table->data = array();
|
||||
$table->data[0][0] = __('Agent');
|
||||
$table->data[0][1] = print_input_text_extended ('id_agent', $id_agent, 'text_id_agent', '', 30, 100, false, '',
|
||||
array('style' => 'background: url(images/lightning.png) no-repeat right;'), true)
|
||||
. '<a href="#" class="tip"> <span>' . __("Type at least two characters to search") . '</span></a>';
|
||||
$table->data[1][0] = __('Module');
|
||||
$modules = array ();
|
||||
if ($id_agent)
|
||||
$modules = get_agent_modules ($id_agent, false, array("delete_pending" => 0));
|
||||
$table->data[1][1] = print_select ($modules, 'id_agent_module', $id_agent_module, true,
|
||||
__('Select'), 0, true, false, true, '', ($id_agent === ''));
|
||||
$table->data[2][0] = __('Data');
|
||||
$table->data[2][1] = print_input_text('data', $data, __('Data'), 40, 60, true);
|
||||
$table->data[3][0] = __('Date');
|
||||
$table->data[3][1] = print_input_text ('date', $date, '', 11, 11, true).' ';
|
||||
$table->data[3][1] .= print_input_text ('time', $time, '', 7, 7, true);
|
||||
$table->data[4][0] = __('CSV');
|
||||
$table->data[4][1] = print_input_file('csv', true);
|
||||
|
||||
echo "<form method='post' enctype='multipart/form-data'>";
|
||||
|
||||
print_table($table);
|
||||
|
||||
echo "<div style='text-align: right; width: " . $table->width . "'>";
|
||||
print_input_hidden('save', 1);
|
||||
print_submit_button(__('Save'), 'submit', ($id_agent === ''), 'class="sub next"');
|
||||
echo "</div>";
|
||||
|
||||
echo "</form>";
|
||||
|
||||
require_css_file ('datepicker');
|
||||
require_jquery_file ('ui.core');
|
||||
require_jquery_file ('ui.datepicker');
|
||||
require_jquery_file ('timeentry');
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
/* <![CDATA[ */
|
||||
$(document).ready (function () {
|
||||
|
||||
$("#text_id_agent").autocomplete(
|
||||
"ajax.php",
|
||||
{
|
||||
minChars: 2,
|
||||
scroll:true,
|
||||
extraParams: {
|
||||
page: "operation/agentes/exportdata",
|
||||
search_agents: 1,
|
||||
id_group: function() { return $("#id_group").val(); }
|
||||
},
|
||||
formatItem: function (data, i, total) {
|
||||
if (total == 0)
|
||||
$("#text_id_agent").css ('background-color', '#cc0000');
|
||||
else
|
||||
$("#text_id_agent").css ('background-color', '');
|
||||
if (data == "")
|
||||
return false;
|
||||
|
||||
return data[0]+'<br><span class="ac_extra_field"><?php echo __("IP") ?>: '+data[1]+'</span>';
|
||||
},
|
||||
delay: 200
|
||||
}
|
||||
);
|
||||
|
||||
$("#text-time").timeEntry ({
|
||||
spinnerImage: 'images/time-entry.png',
|
||||
spinnerSize: [20, 20, 0]
|
||||
});
|
||||
|
||||
$("#text-date").datepicker ();
|
||||
|
||||
});
|
||||
|
||||
$("#text_id_agent").result (
|
||||
function () {
|
||||
selectAgent = true;
|
||||
var agent_name = this.value;
|
||||
$('#id_agent_module').fadeOut ('normal', function () {
|
||||
$('#id_agent_module').empty ();
|
||||
var inputs = [];
|
||||
inputs.push ("agent_name=" + agent_name);
|
||||
inputs.push ('filter=delete_pending = 0');
|
||||
inputs.push ("get_agent_modules_json=1");
|
||||
inputs.push ("page=operation/agentes/ver_agente");
|
||||
jQuery.ajax ({
|
||||
data: inputs.join ("&"),
|
||||
type: 'GET',
|
||||
url: action="ajax.php",
|
||||
timeout: 10000,
|
||||
dataType: 'json',
|
||||
success: function (data) {
|
||||
$('#id_agent_module').append ($('<option></option>').attr ('value', 0).text ("--"));
|
||||
jQuery.each (data, function (i, val) {
|
||||
s = js_html_entity_decode (val['nombre']);
|
||||
$('#id_agent_module').append ($('<option></option>').attr ('value', val['id_agente_modulo']).text (s));
|
||||
});
|
||||
$('#id_agent_module').enable();
|
||||
$('#id_agent_module').fadeIn ('normal');
|
||||
|
||||
$('#submit-submit').enable();
|
||||
$('#submit-submit').fadeIn ('normal');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
);
|
||||
/* ]]> */
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
||||
add_extension_godmode_function('mainInsertData');
|
||||
add_godmode_menu_option(__('Insert Data'), 'AW', 'gagente');
|
||||
?>
|
Loading…
Reference in New Issue