2009-07-22 17:26:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
2011-03-17 Raul Mateos <raulofpandora@gmail.com>
* extensions/dbmanager.php, extensions/pandora_logs.php, general/*.php,
index.php, ajax.php, operation/search_*.php, operation/menu.php,
operation/extensions.php, godmode/menu.php, godmode/extensions.php,
admin_access_logs.php: Cleaned code and updated page disclaimers.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-17 23:01:01 +01:00
|
|
|
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
2009-07-22 17:26:31 +02:00
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or
|
2011-03-23 Raul Mateos <raulofpandora@gmail.com>
* extensions/ssh_console.php, extensions/vnc_view.php,
extensions/update_manager.php, extensions/users_connected.php,
extensions/extension_uploader.php, extensions/insert_data.php,
extensions/module_groups.php, extensions/plugin_registration.php,
extensions/agent_modules.php, extensions/resource_registration.php,
extensions/resource_exportation.php, extensions/dbmanager.php,
extensions/pandora_logs.php, general/*.php, ajax.php,
operation/search_*.php, operation/menu.php, operation/extensions.php,
godmode/menu.php, godmode/extensions.php, godmode/admin_access_logs.php:
CReverted unwanted license changes.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4126 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-23 17:13:28 +01:00
|
|
|
// modify it under the terms of the GNU General Public License
|
2011-03-17 Raul Mateos <raulofpandora@gmail.com>
* extensions/dbmanager.php, extensions/pandora_logs.php, general/*.php,
index.php, ajax.php, operation/search_*.php, operation/menu.php,
operation/extensions.php, godmode/menu.php, godmode/extensions.php,
admin_access_logs.php: Cleaned code and updated page disclaimers.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-17 23:01:01 +01:00
|
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
|
2009-07-22 17:26:31 +02:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-03-17 Raul Mateos <raulofpandora@gmail.com>
* extensions/dbmanager.php, extensions/pandora_logs.php, general/*.php,
index.php, ajax.php, operation/search_*.php, operation/menu.php,
operation/extensions.php, godmode/menu.php, godmode/extensions.php,
admin_access_logs.php: Cleaned code and updated page disclaimers.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4108 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-17 23:01:01 +01:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2009-07-22 17:26:31 +02:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
2010-03-02 20:25:51 +01:00
|
|
|
global $config;
|
2012-11-26 11:27:16 +01:00
|
|
|
require_once ($config['homedir']."/include/functions_reporting.php");
|
2009-07-29 19:19:27 +02:00
|
|
|
|
|
|
|
// Load enterprise extensions
|
|
|
|
enterprise_include ('operation/reporting/custom_reporting.php');
|
2009-07-22 17:26:31 +02:00
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
$searchAgents = $searchAlerts = $searchModules = check_acl($config['id_user'], 0, "AR");
|
2010-08-31 09:27:22 +02:00
|
|
|
$searchUsers = check_acl($config['id_user'], 0, "UM");
|
|
|
|
$searchMaps = $searchReports = $searchGraphs = check_acl($config["id_user"], 0, "IR");
|
2009-07-22 17:26:31 +02:00
|
|
|
|
2012-02-14 12:11:38 +01:00
|
|
|
$arrayKeywords = explode(' ', $config['search_keywords']);
|
2009-07-22 17:26:31 +02:00
|
|
|
$temp = array();
|
2012-02-14 12:11:38 +01:00
|
|
|
foreach ($arrayKeywords as $keyword){
|
|
|
|
// Remember, $keyword is already pass a safeinput filter.
|
|
|
|
array_push($temp, "%" . $keyword . "%");
|
|
|
|
}
|
|
|
|
$stringSearchSQL = implode(" ",$temp);
|
2009-07-22 17:26:31 +02:00
|
|
|
|
2010-08-31 09:27:22 +02:00
|
|
|
if ($config['search_category'] == "all")
|
|
|
|
$searchTab = "agents";
|
|
|
|
else
|
|
|
|
$searchTab = $config['search_category'];
|
2009-07-22 17:26:31 +02:00
|
|
|
|
|
|
|
//INI SECURITY ACL
|
2011-01-25 11:47:40 +01:00
|
|
|
if ((!$searchAgents && !$searchUsers && !$searchMaps) ||
|
2010-08-31 09:27:22 +02:00
|
|
|
(!$searchUsers && $searchTab == 'users') ||
|
|
|
|
(!$searchAgents && ($searchTab == 'agents' || $searchTab == 'alerts')) ||
|
2011-01-25 11:47:40 +01:00
|
|
|
(!$searchGraphs && ($searchTab == 'graphs' || $searchTab == 'maps' || $searchTab == 'reports'))) {
|
2010-08-31 09:27:22 +02:00
|
|
|
|
|
|
|
$searchTab = "";
|
|
|
|
}
|
2009-07-22 17:26:31 +02:00
|
|
|
//END SECURITY ACL
|
|
|
|
|
2010-07-20 14:23:01 +02:00
|
|
|
$offset = get_parameter ('offset',0);
|
|
|
|
$order = null;
|
|
|
|
|
|
|
|
$sortField = get_parameter('sort_field');
|
|
|
|
$sort = get_parameter('sort', 'none');
|
|
|
|
$selected = 'border: 1px solid black;';
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchAgents) {
|
2010-08-31 09:27:22 +02:00
|
|
|
$agents_tab = array('text' => "<a href='index.php?search_category=agents&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/bricks.png", true, array ("title" => __('Agents'))) . "</a>", 'active' => $searchTab == "agents");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-08-31 09:27:22 +02:00
|
|
|
$agents_tab = '';
|
2009-07-22 17:26:31 +02:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchUsers) {
|
2010-08-31 09:27:22 +02:00
|
|
|
$users_tab = array('text' => "<a href='index.php?search_category=users&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/group.png", true, array ("title" => __('Users'))) . "</a>", 'active' => $searchTab == "users");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-08-31 09:27:22 +02:00
|
|
|
$users_tab = '';
|
2009-07-22 17:26:31 +02:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchAlerts) {
|
2010-08-31 09:27:22 +02:00
|
|
|
$alerts_tab = array('text' => "<a href='index.php?search_category=alerts&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/god2.png", true, array ("title" => __('Alerts'))) . "</a>", 'active' => $searchTab == "alerts");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-08-31 09:27:22 +02:00
|
|
|
$alerts_tab = '';
|
2012-12-12 14:51:45 +01:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchGraphs) {
|
2010-08-31 09:27:22 +02:00
|
|
|
$graphs_tab = array('text' => "<a href='index.php?search_category=graphs&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/chart_curve.png", true, array ("title" => __('Graphs'))) . "</a>", 'active' => $searchTab == "graphs");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-08-31 09:27:22 +02:00
|
|
|
$graphs_tab = '';
|
2009-07-22 17:26:31 +02:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchReports) {
|
2010-08-31 09:27:22 +02:00
|
|
|
$reports_tab = array('text' => "<a href='index.php?search_category=reports&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/reporting.png", true, array ("title" => __('Reports'))) . "</a>", 'active' => $searchTab == "reports");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-08-31 09:27:22 +02:00
|
|
|
$reports_tab = '';
|
2009-07-22 17:26:31 +02:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchMaps) {
|
2010-08-31 09:27:22 +02:00
|
|
|
$maps_tab = array('text' => "<a href='index.php?search_category=maps&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/camera.png", true, array ("title" => __('Maps'))) . "</a>", 'active' => $searchTab == "maps");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
2010-08-31 09:27:22 +02:00
|
|
|
$maps_tab = '';
|
2009-07-22 17:26:31 +02:00
|
|
|
}
|
|
|
|
|
2011-01-25 11:47:40 +01:00
|
|
|
if ($searchModules) {
|
|
|
|
$modules_tab = array('text' => "<a href='index.php?search_category=modules&keywords=".$config['search_keywords']."&head_search_keywords=Search'>"
|
2012-12-12 14:51:45 +01:00
|
|
|
. html_print_image ("images/lightbulb.png", true, array ("title" => __('Modules'))) . "</a>", 'active' => $searchTab == "modules");
|
2011-01-25 11:47:40 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$modules_tab = '';
|
|
|
|
}
|
|
|
|
|
2010-08-31 09:27:22 +02:00
|
|
|
$onheader = array('agents' => $agents_tab, 'users' => $users_tab,
|
2012-12-12 14:51:45 +01:00
|
|
|
'alerts' => $alerts_tab, 'graphs' => $graphs_tab,
|
|
|
|
'reports' => $reports_tab, 'maps' => $maps_tab,
|
|
|
|
'modules' => $modules_tab);
|
|
|
|
|
2011-04-13 18:11:02 +02:00
|
|
|
ui_print_page_header (__("Search").": \"".$config['search_keywords']."\"", "images/zoom.png", false, "", false, $onheader);
|
2009-07-22 17:26:31 +02:00
|
|
|
|
2010-08-31 09:27:22 +02:00
|
|
|
switch ($searchTab) {
|
|
|
|
case 'agents':
|
|
|
|
require_once('search_agents.php');
|
|
|
|
break;
|
|
|
|
case 'users':
|
|
|
|
require_once('search_users.php');
|
|
|
|
break;
|
|
|
|
case 'alerts':
|
|
|
|
require_once('search_alerts.php');
|
|
|
|
break;
|
|
|
|
case 'graphs':
|
|
|
|
require_once('search_graphs.php');
|
|
|
|
break;
|
|
|
|
case 'reports':
|
|
|
|
require_once('search_reports.php');
|
|
|
|
break;
|
|
|
|
case 'maps':
|
|
|
|
require_once('search_maps.php');
|
|
|
|
break;
|
2011-01-25 11:47:40 +01:00
|
|
|
case 'modules':
|
|
|
|
require_once('search_modules.php');
|
|
|
|
break;
|
2009-07-22 17:26:31 +02:00
|
|
|
}
|
2012-12-12 14:51:45 +01:00
|
|
|
?>
|