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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
|
<?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
function get_action_by_actionid($actionid)
{
$sql="select * from actions where actionid=$actionid";
$result=DBselect($sql);
if(DBnum_rows($result) == 1)
{
return DBfetch($result);
}
else
{
error("No action with actionid=[$actionid]");
}
return $result;
}
# Add Action
function add_action( $userid, $delay, $subject, $message, $recipient, $usrgrpid, $maxrepeats, $repeatdelay)
{
// if(!check_right_on_trigger("A",$triggerid))
// {
// error("Insufficient permissions");
// return 0;
// }
if($recipient == RECIPIENT_TYPE_USER)
{
$id = $userid;
}
else
{
$id = $usrgrpid;
}
$sql="insert into actions (userid,delay,nextcheck,subject,message,recipient,maxrepeats,repeatdelay) values ($id,$delay,0,'$subject','$message',$recipient,$maxrepeats,$repeatdelay)";
$result=DBexecute($sql);
return DBinsert_id($result,"actions","actionid");
}
# Update Action
function update_action($actionid, $id, $delay, $subject, $message, $recipient, $maxrepeats, $repeatdelay)
{
// if(!check_right_on_trigger("U",$triggerid))
// {
// error("Insufficient permissions");
// return 0;
// }
$sql="update actions set userid=$id,delay=$delay,nextcheck=0,subject='$subject',message='$message',recipient=$recipient,maxrepeats=$maxrepeats, repeatdelay=$repeatdelay where actionid=$actionid";
$result=DBexecute($sql);
return $result;
}
# Delete Action by userid
function delete_actions_by_userid( $userid )
{
$sql="select actionid from actions where userid=$userid";
$result=DBexecute($sql);
while($row=DBfetch($result))
{
delete_alert_by_actionid($row["actionid"]);
}
$sql="delete from actions where userid=$userid";
return DBexecute($sql);
}
# Delete Conditions associated with actionid
function delete_conditions_by_actionid($actionid)
{
$sql="delete from conditions where actionid=$actionid";
return DBexecute($sql);
}
# Delete Action
function delete_action( $actionid )
{
delete_conditions_by_actionid($actionid);
delete_alert_by_actionid($actionid);
$sql="delete from actions where actionid=$actionid";
$result=DBexecute($sql);
return $result;
}
# Add action to hardlinked hosts
function add_action_to_linked_hosts($actionid,$hostid=0)
{
if($actionid<=0)
{
return;
}
$action=get_action_by_actionid($actionid);
$trigger=get_trigger_by_triggerid($action["triggerid"]);
$sql="select distinct h.hostid from hosts h,functions f, items i where i.itemid=f.itemid and h.hostid=i.hostid and f.triggerid=".$action["triggerid"];
$result=DBselect($sql);
if(DBnum_rows($result)!=1)
{
return;
}
$row=DBfetch($result);
$host_template=get_host_by_hostid($row["hostid"]);
if($hostid==0)
{
$sql="select hostid,templateid,actions from hosts_templates where templateid=".$row["hostid"];
}
else
{
$sql="select hostid,templateid,actions from hosts_templates where hostid=$hostid and templateid=".$row["hostid"];
}
$result=DBselect($sql);
while($row=DBfetch($result))
{
if($row["actions"]&1 == 0) continue;
$sql="select distinct f.triggerid from functions f,items i,triggers t where t.description='".addslashes($trigger["description"])."' and t.triggerid=f.triggerid and i.itemid=f.itemid and i.hostid=".$row["hostid"];
$result2=DBselect($sql);
while($row2=DBfetch($result2))
{
$host=get_host_by_hostid($row["hostid"]);
$message=str_replace("{".$host_template["host"].":", "{".$host["host"].":", $action["message"]);
add_action($row2["triggerid"], $action["userid"], $action["good"], $action["delay"], $action["subject"], $message, $action["scope"], $action["severity"], $action["recipient"], $action["userid"], $action["maxrepeats"],$action["repeatdelay"]);
}
}
}
# Delete action from hardlinked hosts
function delete_action_from_templates($actionid)
{
if($actionid<=0)
{
return;
}
$action=get_action_by_actionid($actionid);
$trigger=get_trigger_by_triggerid($action["triggerid"]);
$sql="select distinct h.hostid from hosts h,functions f, items i where i.itemid=f.itemid and h.hostid=i.hostid and f.triggerid=".$action["triggerid"];
$result=dbselect($sql);
if(dbnum_rows($result)!=1)
{
return;
}
$row=dbfetch($result);
$hostid=$row["hostid"];
$sql="select hostid,templateid,actions from hosts_templates where templateid=$hostid";
$result=dbselect($sql);
#enumerate hosts
while($row=dbfetch($result))
{
if($row["actions"]&4 == 0) continue;
$sql="select distinct f.triggerid from functions f,items i,triggers t where t.description='".addslashes($trigger["description"])."' and t.triggerid=f.triggerid and i.itemid=f.itemid and i.hostid=".$row["hostid"];
$result2=dbselect($sql);
#enumerate triggers
while($row2=dbfetch($result2))
{
$sql="select actionid from actions where triggerid=".$row2["triggerid"]." and subject='".addslashes($action["subject"])."' and userid=".$action["userid"]." and good=".$action["good"]." and scope=".$action["scope"]." and recipient=".$action["recipient"]." and severity=".$action["severity"];
$result3=dbselect($sql);
#enumerate actions
while($row3=dbfetch($result3))
{
delete_action($row3["actionid"]);
}
}
}
}
# Update action from hardlinked hosts
function update_action_from_linked_hosts($actionid)
{
if($actionid<=0)
{
return;
}
$action=get_action_by_actionid($actionid);
$trigger=get_trigger_by_triggerid($action["triggerid"]);
$sql="select distinct h.hostid from hosts h,functions f, items i where i.itemid=f.itemid and h.hostid=i.hostid and f.triggerid=".$action["triggerid"];
$result=dbselect($sql);
if(dbnum_rows($result)!=1)
{
return;
}
$row=dbfetch($result);
$hostid=$row["hostid"];
$host_template=get_host_by_hostid($hostid);
$sql="select hostid,templateid,actions from hosts_templates where templateid=$hostid";
$result=dbselect($sql);
#enumerate hosts
while($row=dbfetch($result))
{
if($row["actions"]&2 == 0) continue;
$sql="select distinct f.triggerid from functions f,items i,triggers t where t.description='".addslashes($trigger["description"])."' and t.triggerid=f.triggerid and i.itemid=f.itemid and i.hostid=".$row["hostid"];
$result2=dbselect($sql);
#enumerate triggers
while($row2=dbfetch($result2))
{
$sql="select actionid from actions where triggerid=".$row2["triggerid"]." and subject='".addslashes($action["subject"])."'";
$result3=dbselect($sql);
#enumerate actions
while($row3=dbfetch($result3))
{
$host=get_host_by_hostid($row["hostid"]);
$message=str_replace("{".$host_template["host"].":", "{".$host["host"].":", $action["message"]);
update_action($row3["actionid"], $row2["triggerid"], $action["userid"], $action["good"], $action["delay"], $action["subject"], $message, $action["scope"], $action["severity"], $action["recipient"], $action["maxrepeats"],$action["repeatdelay"]);
}
}
}
}
function get_source_description($source)
{
$desc="Unknown";
if($source==1)
{
$desc="IT Service";
}
elseif($source==0)
{
$desc="Trigger";
}
return $desc;
}
function get_condition_desc($conditiontype, $operator, $value)
{
if($operator == CONDITION_OPERATOR_EQUAL)
{
$op="=";
}
else if($operator == CONDITION_OPERATOR_NOT_EQUAL)
{
$op="<>";
}
else if($operator == CONDITION_OPERATOR_LIKE)
{
$op="like";
}
else if($operator == CONDITION_OPERATOR_NOT_LIKE)
{
$op="not like";
}
else if($operator == CONDITION_OPERATOR_IN)
{
$op="in";
}
else if($operator == CONDITION_OPERATOR_MORE_EQUAL)
{
$op=">=";
}
$desc=S_UNKNOWN;
if($conditiontype==CONDITION_TYPE_GROUP)
{
$group=get_group_by_groupid($value);
if($group) $desc=S_HOST_GROUP." $op "."\"".$group["name"]."\"";
}
if($conditiontype==CONDITION_TYPE_TRIGGER)
{
$trigger=get_trigger_by_triggerid($value);
if($trigger) $desc=S_TRIGGER." $op "."\"".$trigger["description"]."\"";
}
else if($conditiontype==CONDITION_TYPE_HOST)
{
$host=get_host_by_hostid($value);
if($host) $desc=S_HOST." $op "."\"".$host["host"]."\"";
}
else if($conditiontype==CONDITION_TYPE_TRIGGER_NAME)
{
$desc=S_TRIGGER_DESCRIPTION." $op "."\"".$value."\"";
}
else if($conditiontype==CONDITION_TYPE_TRIGGER_VALUE)
{
if($value==0)
$desc=S_TRIGGER_VALUE." $op "."\"OFF\"";
if($value==1)
$desc=S_TRIGGER_VALUE." $op "."\"ON\"";
}
else if($conditiontype==CONDITION_TYPE_TRIGGER_SEVERITY)
{
$desc=S_TRIGGER_SEVERITY." $op "."\"".get_severity_description($value)."\"";
}
else if($conditiontype==CONDITION_TYPE_TIME_PERIOD)
{
$desc=S_TIME." $op "."\"".$value."\"";
}
else
{
}
return $desc;
}
# Add Action's condition
function add_action_condition($actionid, $conditiontype, $operator, $value)
{
$value=addslashes($value);
$sql="insert into conditions (actionid,conditiontype,operator,value) values ($actionid,$conditiontype,$operator,'$value')";
$result=DBexecute($sql);
return DBinsert_id($result,"conditions","conditionid");
}
?>
|