summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/actions.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-04 10:42:46 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-04 10:42:46 +0000
commita96322ba711caad8f6e3681ebf0e44f02853b23f (patch)
tree228204e2e7909b419210279d8bae87865988b24f /frontends/php/include/actions.inc.php
parent4f6849b38d72481080471bb1842860f93fa86a88 (diff)
downloadzabbix-a96322ba711caad8f6e3681ebf0e44f02853b23f.tar.gz
zabbix-a96322ba711caad8f6e3681ebf0e44f02853b23f.tar.xz
zabbix-a96322ba711caad8f6e3681ebf0e44f02853b23f.zip
- improvements in permission check graphs & services (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5589 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/actions.inc.php')
-rw-r--r--frontends/php/include/actions.inc.php33
1 files changed, 10 insertions, 23 deletions
diff --git a/frontends/php/include/actions.inc.php b/frontends/php/include/actions.inc.php
index 80859009..547ecf46 100644
--- a/frontends/php/include/actions.inc.php
+++ b/frontends/php/include/actions.inc.php
@@ -768,9 +768,7 @@ include_once 'include/discovery.inc.php';
}
function get_history_of_actions($start,$num){
- global $USER_DETAILS;
-
- $available_hosts = get_accessible_hosts_by_user($USER_DETAILS, PERM_READ_ONLY);
+ $available_triggers = get_accessible_triggers(PERM_READ_ONLY, null, get_current_nodeid());
$table = new CTableInfo(S_NO_ACTIONS_FOUND);
$table->SetHeader(array(
@@ -786,12 +784,10 @@ include_once 'include/discovery.inc.php';
$result=DBselect('SELECT DISTINCT a.alertid,a.clock,mt.description,a.sendto,a.subject,a.message,a.status,a.retries,a.error '.
- ' FROM alerts a,media_type mt,functions f,items i,events e '.
+ ' FROM alerts a,media_type mt,events e '.
' WHERE mt.mediatypeid=a.mediatypeid '.
' AND e.eventid = a.eventid'.
- ' AND e.objectid=f.triggerid '.
- ' AND f.itemid=i.itemid '.
- ' AND i.hostid IN ('.$available_hosts.')'.
+ ' AND e.objectid IN ('.$available_triggers.') '.
' AND '.DBin_node('a.alertid').
order_by('a.clock,a.alertid,mt.description,a.sendto,a.status,a.retries'),
10*$start+$num);
@@ -844,9 +840,7 @@ include_once 'include/discovery.inc.php';
// Author: Aly
function get_actions_for_event($eventid){
- global $USER_DETAILS;
-
- $available_hosts = get_accessible_hosts_by_user($USER_DETAILS, PERM_READ_ONLY);
+ $available_triggers = get_accessible_triggers(PERM_READ_ONLY, null, get_current_nodeid());
$table = new CTableInfo(S_NO_ACTIONS_FOUND);
$table->SetHeader(array(
@@ -862,13 +856,11 @@ function get_actions_for_event($eventid){
$result=DBselect('SELECT DISTINCT a.alertid,a.clock,mt.description,a.sendto,a.subject,a.message,a.status,a.retries,a.error '.
- ' FROM alerts a,media_type mt,functions f,items i,events e '.
+ ' FROM alerts a,media_type mt,events e '.
' WHERE mt.mediatypeid=a.mediatypeid '.
' AND a.eventid='.$eventid.
' AND e.eventid = a.eventid'.
- ' AND e.objectid=f.triggerid '.
- ' AND f.itemid=i.itemid '.
- ' AND i.hostid IN ('.$available_hosts.')'.
+ ' AND e.objectid IN ('.$available_triggers.') '.
' AND '.DBin_node('a.alertid').
order_by('a.clock,a.alertid,mt.description,a.sendto,a.status,a.retries'));
@@ -914,8 +906,7 @@ return $table;
// Author: Aly
function get_actions_hint_by_eventid($eventid,$status=NULL){
- global $USER_DETAILS;
- $available_hosts = get_accessible_hosts_by_user($USER_DETAILS,PERM_READ_ONLY, null, null, get_current_nodeid());
+ $available_triggers = get_accessible_triggers(PERM_READ_ONLY, null, get_current_nodeid());
$tab_hint = new CTableInfo(S_NO_ACTIONS_FOUND);
$tab_hint->AddOption('style', 'width: 300px;');
@@ -926,17 +917,13 @@ function get_actions_hint_by_eventid($eventid,$status=NULL){
S_STATUS
));
- $sql_param = (is_null($status))?'':' AND a.status='.$status;
-
$sql = 'SELECT DISTINCT a.alertid,mt.description,a.sendto,a.status,u.alias '.
- ' FROM alerts a,media_type mt,functions f,items i,events e, users u '.
+ ' FROM alerts a,media_type mt,events e, users u '.
' WHERE mt.mediatypeid=a.mediatypeid '.
' AND a.eventid='.$eventid.
- $sql_param.
+ (is_null($status)?'':' AND a.status='.$status).
' AND e.eventid = a.eventid'.
- ' AND f.triggerid=e.objectid '.
- ' AND i.itemid=f.itemid '.
- ' AND i.hostid IN ('.$available_hosts.') '.
+ ' AND e.objectid IN ('.$available_triggers.') '.
' AND '.DBin_node('a.alertid').
' AND u.userid=a.userid '.
' ORDER BY mt.description';