158 lines
4.3 KiB
PHP
158 lines
4.3 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2010 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
|
|
global $config;
|
|
|
|
check_login ();
|
|
|
|
if (! check_acl ($config['id_user'], 0, "PM") && ! is_user_admin ($config['id_user'])) {
|
|
db_pandora_audit("ACL Violation", "Trying to access Setup Management");
|
|
require ("general/noaccess.php");
|
|
return;
|
|
}
|
|
|
|
$action = get_parameter('action', 'new');
|
|
$idOS = get_parameter('id_os', 0);
|
|
if (is_metaconsole())
|
|
$tab = get_parameter('tab2', 'list');
|
|
else
|
|
$tab = get_parameter('tab', 'list');
|
|
|
|
if ($idOS) {
|
|
$os = db_get_row_filter('tconfig_os', array('id_os' => $idOS));
|
|
$name = $os['name'];
|
|
$description = $os['description'];
|
|
$icon = $os['icon_name'];
|
|
}
|
|
else {
|
|
$name = get_parameter('name', '');
|
|
$description = get_parameter('description', '');
|
|
$icon = get_parameter('icon',0);
|
|
}
|
|
|
|
$message = '';
|
|
|
|
switch ($action) {
|
|
default:
|
|
case 'new':
|
|
$actionHidden = 'save';
|
|
$textButton = __('Create');
|
|
$classButton = 'class="sub next"';
|
|
break;
|
|
case 'edit':
|
|
$actionHidden = 'update';
|
|
$textButton = __('Update');
|
|
$classButton = 'class="sub upd"';
|
|
break;
|
|
case 'save':
|
|
$values = array();
|
|
$values['name'] = $name;
|
|
$values['description'] = $description;
|
|
|
|
if (($icon !== 0) && ($icon != '')) {
|
|
$values['icon_name'] = $icon;
|
|
}
|
|
$resultOrId = false;
|
|
if ($name != '')
|
|
$resultOrId = db_process_sql_insert('tconfig_os', $values);
|
|
|
|
if ($resultOrId === false) {
|
|
$message = ui_print_error_message(__('Fail creating OS'), '', true);
|
|
$tab = 'builder';
|
|
$actionHidden = 'save';
|
|
$textButton = __('Create');
|
|
$classButton = 'class="sub next"';
|
|
}
|
|
else {
|
|
$message = ui_print_success_message(__('Success creating OS'), '', true);
|
|
$tab = 'list';
|
|
}
|
|
break;
|
|
case 'update':
|
|
$name = get_parameter('name', '');
|
|
$description = get_parameter('description', '');
|
|
$icon = get_parameter('icon',0);
|
|
|
|
$values = array();
|
|
$values['name'] = $name;
|
|
$values['description'] = $description;
|
|
|
|
if (($icon !== 0) && ($icon != '')) {
|
|
$values['icon_name'] = $icon;
|
|
}
|
|
$result = false;
|
|
if ($name != '')
|
|
$result = db_process_sql_update('tconfig_os', $values, array('id_os' => $idOS));
|
|
|
|
$message = ui_print_result_message($result, __('Success updatng OS'), __('Error updating OS'), '', true);
|
|
if ($result !== false) {
|
|
$tab = 'list';
|
|
}
|
|
else {
|
|
$tab = 'builder';
|
|
$os = db_get_row_filter('tconfig_os', array('id_os' => $idOS));
|
|
$name = $os['name'];
|
|
}
|
|
$actionHidden = 'update';
|
|
$textButton = __('Update');
|
|
$classButton = 'class="sub upd"';
|
|
break;
|
|
case 'delete':
|
|
$sql = 'SELECT COUNT(id_os) AS count FROM tagente WHERE id_os = ' . $idOS;
|
|
$count = db_get_all_rows_sql($sql);
|
|
$count = $count[0]['count'];
|
|
|
|
if ($count > 0) {
|
|
$message = ui_print_error_message(__('There are agents with this OS.'), '', true);
|
|
}
|
|
else {
|
|
$result = (bool)db_process_sql_delete('tconfig_os', array('id_os' => $idOS));
|
|
|
|
$message = ui_print_result_message($result, __('Success deleting'), __('Error deleting'), '', true);
|
|
}
|
|
break;
|
|
}
|
|
|
|
$buttons = array(
|
|
'list' => array(
|
|
'active' => false,
|
|
'text' => '<a href="index.php?sec=gsetup&sec2=godmode/setup/os&tab=list">' .
|
|
html_print_image ("images/list.png", true, array ("title" => __('List OS'))) .'</a>'),
|
|
'builder' => array(
|
|
'active' => false,
|
|
'text' => '<a href="index.php?sec=gsetup&sec2=godmode/setup/os&tab=builder">' .
|
|
html_print_image ("images/builder.png", true, array ("title" => __('Builder OS'))) .'</a>'));
|
|
|
|
$buttons[$tab]['active'] = true;
|
|
|
|
if (!is_metaconsole()) {
|
|
// Header
|
|
ui_print_page_header(__('Edit OS'), "", false, "", true, $buttons);
|
|
}
|
|
echo $message;
|
|
|
|
switch ($tab) {
|
|
case 'list':
|
|
require_once($config['homedir'] . '/godmode/setup/os.list.php');
|
|
return;
|
|
break;
|
|
case 'builder':
|
|
require_once($config['homedir'] . '/godmode/setup/os.builder.php');
|
|
return;
|
|
break;
|
|
}
|
|
?>
|