<?php
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 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; 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.
global $config;
enterprise_include_once('include/functions_policies.php');
include_once($config['homedir'] . "/include/functions_modules.php");
include_once($config['homedir'] . '/include/functions_users.php');
$searchModules = check_acl($config['id_user'], 0, "AR");
$selectModuleNameUp = '';
$selectModuleNameDown = '';
$selectAgentNameUp = '';
$selectAgentNameDown = '';
$is_admin = (bool)db_get_value('is_admin', 'tusuario', 'id_user', $config['id_user']);
switch ($sortField) {
case 'module_name':
switch ($sort) {
case 'up':
$selectModuleNameUp = $selected;
$order = array('field' => 'module_name', 'order' => 'ASC');
break;
case 'down':
$selectModuleNameDown = $selected;
$order = array('field' => 'module_name', 'order' => 'DESC');
}
case 'agent_name':
$selectAgentNameUp = $selected;
$order = array('field' => 'agent_name', 'order' => 'ASC');
$selectAgentNameDown = $selected;
$order = array('field' => 'agent_name', 'order' => 'DESC');
default:
$modules = false;
if ($searchModules) {
$userGroups = users_get_groups($config['id_user'], 'AR', false);
$id_userGroups = array_keys($userGroups);
$tags = tags_get_tags_for_module_search();
$sql_tags = "'no_check_tags' = 'no_check_tags'";
if (!empty($tags)) {
if ($is_admin) {
$sql_tags = "1=1";
} else {
$sql_tags = "
(
t1.id_agente_modulo IN
SELECT tt.id_agente_modulo
FROM ttag_module AS tt
WHERE id_tag IN (" . implode(",", array_keys($tags)) . ")
)
OR
t1.id_agente_modulo IN (
SELECT id_agente_modulo
FROM ttag_module
";
switch ($config["dbtype"]) {
case "mysql":
$chunk_sql = '
FROM tagente_modulo t1
INNER JOIN tagente t2
ON t2.id_agente = t1.id_agente
INNER JOIN tgrupo t3
ON t3.id_grupo = t2.id_grupo
INNER JOIN tagente_estado t4
ON t4.id_agente_modulo = t1.id_agente_modulo
WHERE
' . $sql_tags . '
AND
(t2.id_grupo IN (' . implode(',', $id_userGroups) . ')
OR 0 IN (
SELECT id_grupo
FROM tusuario_perfil
WHERE id_usuario = "' . $config['id_user'] . '"
AND id_perfil IN (
SELECT id_perfil
FROM tperfil WHERE agent_view = 1
(t1.nombre COLLATE utf8_general_ci LIKE "%' . $stringSearchSQL . '%" OR
t3.nombre LIKE "%' . $stringSearchSQL . '%")';
case "postgresql":
WHERE id_usuario = \'' . $config['id_user'] . '\'
) AND
(t1.nombre LIKE \'%' . $stringSearchSQL . '%\' OR
t3.nombre LIKE \'%' . $stringSearchSQL . '%\')';
case "oracle":
(LOWER(t1.nombre) LIKE \'%' . strtolower($stringSearchSQL) . '%\' OR
LOWER(t3.nombre) LIKE \'%' . strtolower($stringSearchSQL) . '%\')';
$totalModules = db_get_value_sql("SELECT COUNT(t1.id_agente_modulo) AS count_modules " . $chunk_sql);
if (!$only_count) {
$select = "SELECT t1.*, t1.nombre AS module_name, t2.nombre AS agent_name ";
$order_by = " ORDER BY " . $order['field'] . " " . $order['order'];
$limit = " LIMIT " . $config['block_size'] . " OFFSET " . (int) get_parameter ('offset');
$query = $select . $chunk_sql . $order_by;
$query .= $limit;
$set = array();
$set['limit'] = $config['block_size'];
$set['offset'] = (int) get_parameter('offset');
$query = oracle_recode_query ($query, $set);
$modules = db_get_all_rows_sql($query);
?>