1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<?php
/*
** ZABBIX
** Copyright (C) 2000-2005 SIA Zabbix
**
** 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; either version 2 of the License, or
** (at your option) any later version.
**
** 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.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**/
?>
<?php
require_once "include/config.inc.php";
require_once "include/acknow.inc.php";
require_once "include/triggers.inc.php";
require_once "include/forms.inc.php";
$page["title"] = "S_ACKNOWLEDGES";
$page["file"] = "acknow.php";
include_once "include/page_header.php";
?>
<?php
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields=array(
"eventid"=> array(T_ZBX_INT, O_MAND, P_SYS, DB_ID, NULL),
"message"=> array(T_ZBX_STR, O_OPT, NULL, NOT_EMPTY, 'isset({save})'),
/* actions */
"save"=> array(T_ZBX_STR,O_OPT, P_ACT|P_SYS, NULL, NULL),
"cancel"=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null)
);
check_fields($fields);
?>
<?php
$denyed_hosts = get_accessible_hosts_by_user($USER_DETAILS,PERM_READ_ONLY, PERM_MODE_LT);
if(! ($db_data = DBfetch(DBselect('select distinct e.*,t.triggerid,t.expression,t.description,h.host,h.hostid '.
' from hosts h, items i, functions f, events e, triggers t'.
' where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=t.triggerid and e.eventid='.$_REQUEST["eventid"].
' and i.hostid not in ('.$denyed_hosts.') and e.objectid=t.triggerid and e.object='.EVENT_OBJECT_TRIGGER.
' and '.DBid2nodeid('e.eventid').'='.$ZBX_CURNODEID
))))
{
access_deny();
}
unset($denyed_hosts);
if(isset($_REQUEST["save"]))
{
$result = add_acknowledge_coment(
$db_data["eventid"],
$USER_DETAILS["userid"],
$_REQUEST["message"]);
show_messages($result, S_COMMENT_ADDED, S_CANNOT_ADD_COMMENT);
if($result)
{
add_audit(AUDIT_ACTION_UPDATE,AUDIT_RESOURCE_TRIGGER, S_ACKNOWLEDGE_ADDED.
' ['.expand_trigger_description_by_data($db_data).']'.
' ['.$_REQUEST["message"].']');
}
}
else if(isset($_REQUEST["cancel"]))
{
Redirect('tr_status.php?hostid='.$db_data['hostid']);
exit;
}
?>
<?php
show_table_header(S_ALARM_ACKNOWLEDGES_BIG." : ".
"\"".expand_trigger_description_by_data($db_data)."\"".BR.
explode_exp($db_data["expression"],1));
echo BR;
$table = new CTable(NULL,"ack_msgs");
$table->SetAlign("center");
$db_acks = get_acknowledges_by_eventid($db_data["eventid"]);
while($db_ack = DBfetch($db_acks))
{
$db_user = get_user_by_userid($db_ack["userid"]);
$table->AddRow(array(
new CCol($db_user["alias"],"user"),
new CCol(date("d-m-Y h:i:s A",$db_ack["clock"]),"time")),
"title");
$msgCol = new CCol(nl2br($db_ack["message"]));
$msgCol->SetColspan(2);
$table->AddRow($msgCol,"msg");
}
/**/
if($table->GetNumRows() > 0)
{
$table->Show();
echo BR;
}
insert_new_message_form();
?>
<?php
include_once "include/page_footer.php";
?>
|