]> git.proxmox.com Git - pmg-api.git/blame - PMG/Statistic.pm
PMG/API2/Statistics.pm: improve spamscore api - include percentage
[pmg-api.git] / PMG / Statistic.pm
CommitLineData
5414dee4 1package PMG::Statistic;
e350fb98
DM
2
3use strict;
5414dee4 4use warnings;
e350fb98 5use DBI;
e350fb98
DM
6use Time::Local;
7use Time::Zone;
8
5414dee4
DM
9use PVE::SafeSyslog;
10
9f67f5b3 11use PMG::ClusterConfig;
5414dee4
DM
12use PMG::RuleDB;
13
e350fb98
DM
14sub new {
15 my ($self, $start, $end, $advanced) = @_;
3d511edd 16
e350fb98 17 $self = {};
3d511edd 18
e350fb98
DM
19 bless($self);
20
9b1db2e4
DM
21 if (defined($start) && defined($end)) {
22 $self->timespan($start, $end);
e350fb98 23 } else {
9b1db2e4
DM
24 my $ctime = time();
25 $self->timespan($ctime, $ctime - 24*3600);
e350fb98
DM
26 }
27
28 $self->{adv} = $advanced;
3d511edd 29
e350fb98
DM
30 return $self;
31}
32
33sub clear_stats {
34 my ($dbh) = @_;
35
36 eval {
37 $dbh->begin_work;
3d511edd 38
e350fb98
DM
39 $dbh->do ("LOCK TABLE StatInfo");
40 $dbh->do ("LOCK TABLE ClusterInfo");
41
42 $dbh->do ("DELETE FROM Statinfo");
43 $dbh->do ("DELETE FROM DailyStat");
44 $dbh->do ("DELETE FROM DomainStat");
45 $dbh->do ("DELETE FROM VirusInfo");
46 $dbh->do ("DELETE FROM ClusterInfo WHERE name = 'lastmt_DomainStat'");
47 $dbh->do ("DELETE FROM ClusterInfo WHERE name = 'lastmt_DailyStat'");
48 $dbh->do ("DELETE FROM ClusterInfo WHERE name = 'lastmt_VirusInfo'");
49
50 $dbh->commit;
51 };
52 if ($@) {
53 $dbh->rollback;
54 die $@;
3d511edd 55 }
e350fb98
DM
56}
57
58sub update_stats_generic {
59 my ($dbh, $statinfoid, $select, $update, $insert) = @_;
60
61 my $todo = 0;
62 my $maxentries = 100000;
63
64
65 eval {
66 $dbh->begin_work;
67
68 $dbh->do("LOCK TABLE StatInfo IN EXCLUSIVE MODE");
69
70 my $sth = $dbh->prepare("SELECT last_value FROM cstatistic_id_seq");
71 $sth->execute();
72 my $maxinfo = $sth->fetchrow_hashref();
73 goto COMMIT if !$maxinfo;
74 my $last_value = $maxinfo->{last_value};
75 goto COMMIT if !defined ($last_value);
76
77 $sth = $dbh->prepare("SELECT ivalue as value FROM StatInfo WHERE NAME = '$statinfoid'");
78 $sth->execute();
79 my $statinfo = $sth->fetchrow_hashref();
80
81 my $startid = $statinfo ? $statinfo->{value} : 0;
82 goto COMMIT if $startid > $last_value;
83
84 my $endid = $startid + $maxentries;
85 $endid = $last_value + 1 if $endid > $last_value;
86 $todo = $last_value + 1 - $endid;
87
88 my $timezone = tz_local_offset();;
89
90 $select =~ s/__timezone__/$timezone/g;
91 $select =~ s/__startid__/$startid/g;
92 $select =~ s/__endid__/$endid/g;
93
94 $sth = $dbh->prepare($select);
95 $sth->execute();
96
97 my $cmd = "";
98 #print "TEST:$last_value:$endid:$todo\n";
99
100 while (my $ref = $sth->fetchrow_hashref()) {
101 if ($ref->{exists}) {
102 $cmd .= &$update($ref);
103 } else {
104 $cmd .= &$insert($ref);
105 }
106 }
107
108 $dbh->do ($cmd) if $cmd;
109
110 $sth->finish();
111
112 if ($statinfo) {
113 $dbh->do("UPDATE StatInfo SET ivalue = $endid WHERE NAME = '$statinfoid'");
114 } else {
115 $dbh->do("INSERT INTO StatInfo VALUES ('$statinfoid', $endid)");
116 }
117
3d511edd 118 COMMIT:
e350fb98
DM
119 $dbh->commit;
120 };
121
122 if ($@) {
123 $dbh->rollback;
124 die $@;
125 }
126
127 return $todo;
128}
129
130sub update_stats_dailystat {
131 my ($dbh, $cinfo) = @_;
132
9f67f5b3
DM
133 my $role = $cinfo->{local}->{type} // '-';
134 return 0 if !(($role eq '-') || ($role eq 'master'));
e350fb98
DM
135
136 my $select = "SELECT sub.*, dailystat.time IS NOT NULL as exists FROM " .
137 "(SELECT COUNT (CASE WHEN direction THEN 1 ELSE NULL END) as count_in, " .
138 "COUNT (CASE WHEN NOT direction THEN 1 ELSE NULL END) as count_out, " .
139 "SUM (CASE WHEN direction THEN bytes ELSE NULL END) / (1024.0*1024) as bytes_in, " .
140 "SUM (CASE WHEN NOT direction THEN bytes ELSE NULL END) / (1024.0*1024) as bytes_out, " .
141 "COUNT (CASE WHEN virusinfo IS NOT NULL AND direction THEN 1 ELSE NULL END) AS virus_in, " .
142 "COUNT (CASE WHEN virusinfo IS NOT NULL AND NOT direction THEN 1 ELSE NULL END) AS virus_out, " .
143 "COUNT (CASE WHEN virusinfo IS NULL AND direction AND ptime > 0 AND spamlevel >= 3 THEN 1 ELSE NULL END) as spam_in, " .
144 "COUNT (CASE WHEN virusinfo IS NULL AND NOT direction AND ptime > 0 AND spamlevel >= 3 THEN 1 ELSE NULL END) as spam_out, " .
145 "COUNT (CASE WHEN virusinfo IS NULL AND direction AND sender = '' THEN 1 ELSE NULL END) as bounces_in, " .
146 "COUNT (CASE WHEN virusinfo IS NULL AND NOT direction AND sender = '' THEN 1 ELSE NULL END) as bounces_out, " .
147 "COUNT (CASE WHEN virusinfo IS NULL AND ptime = 0 AND spamlevel = 5 THEN 1 ELSE NULL END) as glcount, " .
148 "COUNT (CASE WHEN virusinfo IS NULL AND ptime = 0 AND spamlevel = 4 THEN 1 ELSE NULL END) as spfcount, " .
149 "sum (cstatistic.ptime) / 1000.0 as ptimesum, " .
150 "((cstatistic.time + __timezone__) / 3600) * 3600 as hour " .
151 "from cstatistic where id >= __startid__ and id < __endid__ group by hour) as sub " .
152 "left join dailystat on (sub.hour = dailystat.time)";
153
154 my $update = sub {
155 my $ref = shift;
156 my @values = ();
157 my $sql = '';
158
159 push @values, "CountIn = CountIn + $ref->{count_in}" if $ref->{count_in};
160 push @values, "CountOut = CountOut + $ref->{count_out}" if $ref->{count_out};
161 push @values, "BytesIn = BytesIn + $ref->{bytes_in}" if $ref->{bytes_in};
162 push @values, "BytesOut = BytesOut + $ref->{bytes_out}" if $ref->{bytes_out};
163 push @values, "VirusIn = VirusIn + $ref->{virus_in}" if $ref->{virus_in};
164 push @values, "VirusOut = VirusOut + $ref->{virus_out}" if $ref->{virus_out};
165 push @values, "SpamIn = SpamIn + $ref->{spam_in}" if $ref->{spam_in};
166 push @values, "SpamOut = SpamOut + $ref->{spam_out}" if $ref->{spam_out};
167 push @values, "BouncesIn = BouncesIn + $ref->{bounces_in}" if $ref->{bounces_in};
168 push @values, "BouncesOut = BouncesOut + $ref->{bounces_out}" if $ref->{bounces_out};
169 push @values, "GreylistCount = GreylistCount + $ref->{glcount}" if $ref->{glcount};
170 push @values, "SPFCount = SPFCount + $ref->{spfcount}" if $ref->{spfcount};
171 push @values, "PTimeSum = PTimeSum + $ref->{ptimesum}" if $ref->{ptimesum};
172 push @values, "MTime = EXTRACT(EPOCH FROM now())";
173
174 if (scalar (@values)) {
175 $sql .= "UPDATE dailystat SET ";
176 $sql .= join (',', @values);
177 $sql .= " WHERE time = $ref->{hour};";
178 }
179 return $sql;
180 };
181
182 my $insert = sub {
183 my $ref = shift;
184
3d511edd 185 my $sql = "INSERT INTO dailystat " .
e350fb98
DM
186 "(Time,CountIn,CountOut,BytesIn,BytesOut,VirusIn,VirusOut,SpamIn,SpamOut," .
187 "BouncesIn,BouncesOut,GreylistCount,SPFCount,RBLCount,PTimeSum,Mtime) " .
3d511edd 188 "VALUES ($ref->{hour}," . ($ref->{count_in} || 0) . ',' . ($ref->{count_out} || 0) . ',' .
e350fb98
DM
189 ($ref->{bytes_in} || 0) . ',' . ($ref->{bytes_out} || 0) . ',' .
190 ($ref->{virus_in} || 0) . ',' . ($ref->{virus_out} || 0) . ',' .
191 ($ref->{spam_in} || 0) . ',' . ($ref->{spam_out} || 0) . ',' .
192 ($ref->{bounces_in} || 0) . ',' . ($ref->{bounces_out} || 0) . ',' .
3d511edd 193 ($ref->{glcount} || 0) . ',' . ($ref->{spfcount} || 0) . ',0,' . ($ref->{ptimesum} || 0) .
e350fb98
DM
194 ",EXTRACT(EPOCH FROM now()));";
195
196 return $sql;
197 };
198
199 return update_stats_generic ($dbh, 'dailystat_index', $select, $update, $insert);
200
201}
202
203sub update_stats_domainstat_in {
204 my ($dbh, $cinfo) = @_;
205
9f67f5b3
DM
206 my $role = $cinfo->{local}->{type} // '-';
207 return 0 if !(($role eq '-') || ($role eq 'master'));
e350fb98
DM
208
209 my $sub1 = "select distinct cstatistic_cid, cstatistic_rid, " .
210 "lower(substring(receiver from position ('\@' in receiver) + 1)) as domain, " .
211 "((cstatistic.time + __timezone__) / 86400) * 86400 as day " .
212 "from CStatistic, CReceivers where cid = cstatistic_cid AND rid = cstatistic_rid AND " .
213 "id >= __startid__ and id < __endid__ AND direction " .
214 "group by cstatistic_cid, cstatistic_rid, day, domain";
3d511edd 215
e350fb98
DM
216
217 my $select = "SELECT sub.*, domainstat.time IS NOT NULL as exists FROM " .
218 "(SELECT day, domain, COUNT (id) as count_in, SUM (bytes) / (1024.0*1024) as bytes_in, " .
219 "COUNT (CASE WHEN virusinfo IS NOT NULL THEN 1 ELSE NULL END) AS virus_in, " .
220 "COUNT (CASE WHEN virusinfo IS NULL AND spamlevel >= 3 THEN 1 ELSE NULL END) as spam_in, " .
221 "COUNT (CASE WHEN virusinfo IS NULL AND sender = '' THEN 1 ELSE NULL END) as bounces_in, " .
222 "sum (cstatistic.ptime) / 1000.0 as ptimesum " .
223 "from cstatistic, ($sub1) as ddb " .
224 "WHERE ddb.cstatistic_cid = cstatistic.cid AND ddb.cstatistic_rid = cstatistic.rid GROUP BY day, domain) as sub " .
225 "left join domainstat on (day = domainstat.time and sub.domain = domainstat.domain)";
226
227 my $update = sub {
228 my $ref = shift;
229 my @values = ();
230 my $sql = '';
231
232 push @values, "CountIn = CountIn + $ref->{count_in}" if $ref->{count_in};
233 push @values, "BytesIn = BytesIn + $ref->{bytes_in}" if $ref->{bytes_in};
234 push @values, "VirusIn = VirusIn + $ref->{virus_in}" if $ref->{virus_in};
235 push @values, "SpamIn = SpamIn + $ref->{spam_in}" if $ref->{spam_in};
236 push @values, "BouncesIn = BouncesIn + $ref->{bounces_in}" if $ref->{bounces_in};
237 push @values, "PTimeSum = PTimeSum + $ref->{ptimesum}" if $ref->{ptimesum};
238 push @values, "MTime = EXTRACT(EPOCH FROM now())";
3d511edd 239
e350fb98
DM
240 if (scalar (@values)) {
241 $sql .= "UPDATE domainstat SET ";
242 $sql .= join (',', @values);
243 $sql .= " WHERE time = $ref->{day} and domain = " . $dbh->quote($ref->{domain}) . ';';
244 }
245 return $sql;
246 };
247
248 my $insert = sub {
249 my $ref = shift;
250
3d511edd
DM
251 my $sql .= "INSERT INTO domainstat values ($ref->{day}, " . $dbh->quote($ref->{domain}) . ',' .
252 ($ref->{count_in} || 0) . ',0,' .
e350fb98
DM
253 ($ref->{bytes_in} || 0) . ',0,' .
254 ($ref->{virus_in} || 0) . ',0,' .
255 ($ref->{spam_in} || 0) . ',0,' .
3d511edd 256 ($ref->{bounces_in} || 0) . ',0,' .
e350fb98
DM
257 ($ref->{ptimesum} || 0) .
258 ",EXTRACT(EPOCH FROM now()));";
3d511edd 259
e350fb98
DM
260 return $sql;
261 };
262
263 update_stats_generic ($dbh, 'domainstat_in_index', $select, $update, $insert);
264
265}
266
267sub update_stats_domainstat_out {
268 my ($dbh, $cinfo) = @_;
269
9f67f5b3
DM
270 my $role = $cinfo->{local}->{type} // '-';
271 return 0 if !(($role eq '-') || ($role eq 'master'));
e350fb98
DM
272
273 my $select = "SELECT sub.*, domainstat.time IS NOT NULL as exists FROM " .
274 "(SELECT COUNT (ID) as count_out, SUM (bytes) / (1024.0*1024) as bytes_out, " .
275 "COUNT (CASE WHEN virusinfo IS NOT NULL THEN 1 ELSE NULL END) AS virus_out, " .
276 "COUNT (CASE WHEN virusinfo IS NULL AND spamlevel >= 3 THEN 1 ELSE NULL END) as spam_out, " .
277 "COUNT (CASE WHEN virusinfo IS NULL AND sender = '' THEN 1 ELSE NULL END) as bounces_out, " .
278 "sum (cstatistic.ptime) / 1000.0 as ptimesum, " .
279 "((cstatistic.time + __timezone__) / 86400) * 86400 as day, " .
280 "lower(substring(sender from position ('\@' in sender) + 1)) as domain " .
281 "from cstatistic where id >= __startid__ and id < __endid__ and not direction " .
282 "group by day, domain) as sub " .
283 "left join domainstat on (day = domainstat.time and sub.domain = domainstat.domain)";
284
285 my $update = sub {
286 my $ref = shift;
287 my @values = ();
288 my $sql = '';
289
290 push @values, "CountOut = CountOut + $ref->{count_out}" if $ref->{count_out};
291 push @values, "BytesOut = BytesOut + $ref->{bytes_out}" if $ref->{bytes_out};
292 push @values, "VirusOut = VirusOut + $ref->{virus_out}" if $ref->{virus_out};
293 push @values, "SpamOut = SpamOut + $ref->{spam_out}" if $ref->{spam_out};
294 push @values, "BouncesOut = BouncesOut + $ref->{bounces_out}" if $ref->{bounces_out};
295 push @values, "PTimeSum = PTimeSum + $ref->{ptimesum}" if $ref->{ptimesum};
296 push @values, "MTime = EXTRACT(EPOCH FROM now())";
3d511edd 297
e350fb98
DM
298 if (scalar (@values)) {
299 $sql .= "UPDATE domainstat SET ";
300 $sql .= join (',', @values);
301 $sql .= " WHERE time = $ref->{day} and domain = " . $dbh->quote($ref->{domain}) . ';';
302 }
303 return $sql;
304 };
305
306 my $insert = sub {
307 my $ref = shift;
308
309 my $sql .= "INSERT INTO domainstat values ($ref->{day}, " . $dbh->quote($ref->{domain}) .
3d511edd 310 ',0,' . ($ref->{count_out} || 0) .
e350fb98
DM
311 ',0,' . ($ref->{bytes_out} || 0) .
312 ',0,' . ($ref->{virus_out} || 0) .
3d511edd
DM
313 ',0,' . ($ref->{spam_out} || 0) .
314 ',0,' . ($ref->{bounces_out} || 0) .
315 ','. ($ref->{ptimesum} || 0) .
e350fb98
DM
316 ",EXTRACT(EPOCH FROM now()));";
317
318 return $sql;
319 };
320
321 update_stats_generic ($dbh, 'domainstat_out_index', $select, $update, $insert);
322
323}
324
325sub update_stats_virusinfo {
326 my ($dbh, $cinfo) = @_;
327
9f67f5b3
DM
328 my $role = $cinfo->{local}->{type} // '-';
329 return 0 if !(($role eq '-') || ($role eq 'master'));
e350fb98
DM
330
331 my $select = "SELECT sub.*, virusinfo.time IS NOT NULL as exists FROM " .
332 "(SELECT ((cstatistic.time + __timezone__) / 86400) * 86400 as day, " .
333 "count (virusinfo) as count, virusinfo AS name " .
334 "FROM cstatistic WHERE id >= __startid__ AND id < __endid__ AND virusinfo IS NOT NULL " .
335 "group by day, name) as sub " .
336 "left join VirusInfo on (day = virusinfo.time and sub.name = virusinfo.name)";
337
338 my $update = sub {
339 my $ref = shift;
340 my @values = ();
341 my $sql = '';
342
343 push @values, "Count = Count + $ref->{count}" if $ref->{count};
344 push @values, "MTime = EXTRACT(EPOCH FROM now())";
3d511edd 345
e350fb98
DM
346 if (scalar (@values)) {
347 $sql .= "UPDATE VirusInfo SET ";
348 $sql .= join (',', @values);
349 $sql .= " WHERE time = $ref->{day} and Name = " . $dbh->quote($ref->{name}) . ';';
350 }
351 return $sql;
352 };
353
354 my $insert = sub {
355 my $ref = shift;
356
357 my $sql .= "INSERT INTO VirusInfo values ($ref->{day}, " . $dbh->quote($ref->{name}) .
3d511edd 358 ',' . ($ref->{count} || 0) .
e350fb98
DM
359 ",EXTRACT(EPOCH FROM now()));";
360
361 return $sql;
362 };
363
364 update_stats_generic ($dbh, 'virusinfo_index', $select, $update, $insert);
365
366}
367
368
369sub update_stats {
370 my ($dbh, $cinfo) = @_;
371
372 while (update_stats_dailystat ($dbh, $cinfo) > 0) {};
373 while (update_stats_domainstat_in ($dbh, $cinfo) > 0) {};
374 while (update_stats_domainstat_out ($dbh, $cinfo) > 0) {};
375 while (update_stats_virusinfo ($dbh, $cinfo) > 0) {};
376}
377
378sub total_mail_stat {
379 my ($self, $rdb) = @_;
380
381 my ($from, $to) = $self->localdayspan();
3d511edd 382
e350fb98
DM
383 my ($sth, $ref);
384 my $glcount = 0;
385
386# this is to slow for high volume sites
387# $sth = $rdb->{dbh}->prepare("SELECT COUNT(DISTINCT Instance) AS GL FROM CGreylist " .
388# "WHERE passed = 0 AND rctime >= ? AND rctime < ? ");
3d511edd 389# $sth->execute($from, $to);
e350fb98
DM
390# $ref = $sth->fetchrow_hashref();
391# $glcount = $ref->{gl};
392
393 my $cmds = "SELECT sum(CountIn) + $glcount AS count_in, sum(CountOut) AS count_out, " .
3d511edd
DM
394 "sum (VirusIn) AS viruscount_in, sum (VirusOut) AS viruscount_out, " .
395 "sum (SpamIn) AS spamcount_in, sum (SpamOut) AS spamcount_out, " .
396 "sum (BytesIn) AS traffic_in, sum (BytesOut) AS traffic_out, " .
397 "sum (BouncesIn) AS bounces_in, sum (BouncesOut) AS bounces_out, " .
e350fb98
DM
398 "sum (GreylistCount) + $glcount as glcount, " .
399 "sum (SPFCount) as spfcount, " .
400 "sum (RBLCount) as rblcount, " .
401 "sum(PTimeSum)/(sum(CountIn) + $glcount + sum(CountOut)) AS avptime " .
402 "FROM DailyStat where time >= $from and time < $to";
403
404 $sth = $rdb->{dbh}->prepare($cmds);
3d511edd 405 $sth->execute();
e350fb98
DM
406 $ref = $sth->fetchrow_hashref();
407 $sth->finish();
408
26e55ddd
DM
409 foreach my $k (keys %$ref) { $ref->{$k} += 0; } # convert to numbers
410
e350fb98 411 if (!$ref->{avptime}) {
3d511edd
DM
412 $ref->{count_in} = $ref->{count_out} = $ref->{viruscount_in} = $ref->{viruscount_out} =
413 $ref->{spamcount_in} = $ref->{spamcount_out} = $ref->{glcount} = $ref->{spfcount} =
414 $ref->{rblcount} = $ref->{bounces_in} = $ref->{bounces_out} = $ref->{traffic_in} =
e350fb98
DM
415 $ref->{traffic_out} = $ref->{avptime} = 0;
416 }
417
418 $ref->{count} = $ref->{count_in} + $ref->{count_out};
419
3d511edd 420 $ref->{junk_in} = $ref->{viruscount_in} + $ref->{spamcount_in} + $ref->{glcount} +
e350fb98
DM
421 $ref->{spfcount} + $ref->{rblcount};
422
423 $ref->{junk_out} = $ref->{viruscount_out} + $ref->{spamcount_out};
424
e350fb98
DM
425 return $ref;
426}
427
428sub total_spam_stat {
429 my ($self, $rdb) = @_;
430 my ($from, $to) = $self->timespan();
3d511edd 431
e350fb98 432 my $sth = $rdb->{dbh}->prepare("SELECT spamlevel, COUNT(spamlevel) AS count FROM CStatistic " .
3d511edd 433 "WHERE virusinfo IS NULL and time >= ? AND time < ? AND ptime > 0 AND spamlevel > 0 " .
e350fb98 434 "GROUP BY spamlevel ORDER BY spamlevel LIMIT 10");
3d511edd 435 $sth->execute($from, $to);
e350fb98
DM
436
437 my $res = $sth->fetchall_arrayref({});
438
439 $sth->finish();
440
441 return $res;
442}
443
444sub total_virus_stat {
445 my ($self, $rdb, $order) = @_;
446
447 my ($from, $to) = $self->localdayspan();
3d511edd 448
e350fb98
DM
449 $order = "count" if !$order;
450
451 my @oa = split (',', $order);
452
453 $order = join (' DESC, ', @oa);
454 $order .= ' DESC';
3d511edd 455
e350fb98 456 my $sth = $rdb->{dbh}->prepare("SELECT Name, SUM (Count) as count FROM VirusInfo " .
3d511edd 457 "WHERE time >= ? AND time < ? " .
e350fb98
DM
458 "GROUP BY name ORDER BY $order, name");
459
3d511edd 460 $sth->execute($from, $to);
e350fb98
DM
461
462 my $res = $sth->fetchall_arrayref({});
463
464 $sth->finish();
465
466 return $res;
467}
468
469sub rule_count {
470 my ($self, $rdb) = @_;
471
472 my $sth = $rdb->{dbh}->prepare("SELECT id, name, count from rule order by count desc, name");
3d511edd
DM
473 $sth->execute();
474
e350fb98
DM
475 my $res = $sth->fetchall_arrayref({});
476 $sth->finish();
477
3d511edd 478 return $res;
e350fb98
DM
479}
480
481sub total_domain_stat {
482 my ($self, $rdb, $orderby) = @_;
3d511edd 483
e350fb98
DM
484 $orderby || ($orderby = 'domain');
485 my $sortdir = sort_dir ($orderby);
486
487 my ($from, $to) = $self->localdayspan();
488
489 my $query = "SELECT domain, SUM (CountIn) AS count_in, SUM (CountOut) AS count_out," .
490 "SUM (BytesIn) AS bytes_in, SUM (BytesOut) AS bytes_out, " .
491 "SUM (VirusIn) AS virus_in, SUM (VirusOut) AS virus_out," .
492 "SUM (SpamIn) as spam_in, SUM (SpamOut) as spam_out " .
493 "FROM DomainStat where time >= $from AND time < $to " .
494 "GROUP BY domain ORDER BY $orderby $sortdir, domain ASC";
495
496 my $sth = $rdb->{dbh}->prepare($query);
3d511edd 497 $sth->execute();
e350fb98
DM
498
499 my $res = $sth->fetchall_arrayref({});
500
501 $sth->finish();
502
503 return $res;
504}
505
506sub clear_rule_count {
507 my ($self, $rdb, $id) = @_;
508
509 if (defined($id)) {
510 $rdb->{dbh}->do ("UPDATE rule set count = 0 where id = ?", undef, $id);
511 } else {
512 $rdb->{dbh}->do("UPDATE rule set count = 0");
513 }
514}
515
516sub query_cond_good_mail {
517 my ($self, $from, $to) = @_;
518 return "time >= $from AND time < $to AND bytes > 0 AND sender IS NOT NULL";
519}
520
521sub query_active_workers {
522 my ($self) = @_;
523 my ($from, $to) = $self->timespan();
3d511edd 524
e350fb98
DM
525 my $start = $from - (3600*24)*90; # from - 90 days
526 my $cond_good_mail = $self->query_cond_good_mail ($start, $to);
527
528 return "SELECT DISTINCT sender as worker FROM CStatistic WHERE $cond_good_mail AND NOT direction";
529}
530
531sub sort_dir {
532 my ($orderby) = @_;
533
534 my $sortdir = ($orderby eq "virusinfo" || $orderby eq 'sender' || $orderby eq 'domain' || $orderby eq 'receiver') ? 'ASC' : 'DESC';
535
536 return $sortdir;
537}
538
539sub user_stat_contact_details {
540 my ($self, $rdb, $receiver, $limit, $orderby) = @_;
541 my ($from, $to) = $self->timespan();
542 my $sth;
543 my $res;
544
545 $orderby || ($orderby = 'time');
546 my $sortdir = sort_dir ($orderby);
547
548 my $cond_good_mail = $self->query_cond_good_mail ($from, $to);
549
550 my $query = "SELECT * FROM CStatistic, CReceivers " .
551 "WHERE cid = cstatistic_cid AND rid = cstatistic_rid AND $cond_good_mail AND NOT direction AND sender != '' AND receiver = ? " .
552 "ORDER BY $orderby $sortdir, receiver limit $limit";
553
554 $sth = $rdb->{dbh}->prepare($query);
555
3d511edd 556 $sth->execute ($receiver);
e350fb98
DM
557
558 while (my $ref = $sth->fetchrow_hashref()) {
559 push @$res, $ref;
560 }
561
562 $sth->finish();
563
564 return $res;
565}
566
567sub user_stat_contact {
568 my ($self, $rdb, $limit, $orderby) = @_;
569 my ($from, $to) = $self->timespan();
570 my $sth;
571 my $res;
572 my $query;
573
574 $orderby || ($orderby = 'count');
575 my $sortdir = sort_dir ($orderby);
576
577 my $cond_good_mail = $self->query_cond_good_mail ($from, $to);
578
579 if ($self->{adv}) {
580 my $active_workers = $self->query_active_workers ();
581
582 $query = "SELECT receiver, count(*) AS count, sum (bytes) AS bytes " .
583 "FROM CStatistic, CReceivers WHERE cid = cstatistic_cid AND rid = cstatistic_rid " .
584 "AND $cond_good_mail AND NOT direction AND sender != '' AND " .
585 "receiver NOT IN ($active_workers) " .
586 "GROUP BY receiver ORDER BY $orderby $sortdir, receiver limit $limit";
587 } else {
588 $query = "SELECT receiver, count(*) AS count, sum (bytes) AS bytes " .
589 "FROM CStatistic, CReceivers WHERE cid = cstatistic_cid AND rid = cstatistic_rid " .
590 "AND $cond_good_mail AND NOT direction AND sender != '' " .
591 "GROUP BY receiver ORDER BY $orderby $sortdir, receiver limit $limit";
592 }
593
594 $sth = $rdb->{dbh}->prepare($query);
595
3d511edd 596 $sth->execute();
e350fb98
DM
597
598 while (my $ref = $sth->fetchrow_hashref()) {
599 push @$res, $ref;
600 }
601
602 $sth->finish();
603
604 return $res;
605}
606
607sub user_stat_sender_details {
608 my ($self, $rdb, $sender, $limit, $orderby) = @_;
609 my ($from, $to) = $self->timespan();
610 my $sth;
611 my $res;
612
613 $orderby || ($orderby = 'time');
614 my $sortdir = sort_dir ($orderby);
615
616 my $cond_good_mail = $self->query_cond_good_mail ($from, $to);
617
3d511edd 618 $sth = $rdb->{dbh}->prepare("SELECT * FROM CStatistic, CReceivers WHERE cid = cstatistic_cid AND rid = cstatistic_rid AND " .
e350fb98
DM
619 "$cond_good_mail AND NOT direction AND sender = ? " .
620 "ORDER BY $orderby $sortdir, receiver limit $limit");
3d511edd 621 $sth->execute($sender);
e350fb98
DM
622
623 while (my $ref = $sth->fetchrow_hashref()) {
624 push @$res, $ref;
625 }
626
627 $sth->finish();
628
629 return $res;
630}
631
632sub user_stat_sender {
633 my ($self, $rdb, $limit, $orderby) = @_;
634 my ($from, $to) = $self->timespan();
635 my $sth;
636 my $res;
637 my $query;
638
639 $orderby || ($orderby = 'count');
640 my $sortdir = sort_dir ($orderby);
641
642 my $cond_good_mail = $self->query_cond_good_mail ($from, $to);
643
3d511edd
DM
644 $query = "SELECT sender,count(*) AS count, sum (bytes) AS bytes, " .
645 "count (virusinfo) as viruscount, " .
e350fb98
DM
646 "count (CASE WHEN spamlevel >= 3 THEN 1 ELSE NULL END) as spamcount " .
647 "FROM CStatistic WHERE $cond_good_mail AND NOT direction AND sender != '' " .
3d511edd
DM
648 "GROUP BY sender ORDER BY $orderby $sortdir, sender limit $limit";
649
e350fb98 650 $sth = $rdb->{dbh}->prepare($query);
3d511edd 651 $sth->execute();
e350fb98
DM
652
653 while (my $ref = $sth->fetchrow_hashref()) {
654 push @$res, $ref;
655 }
656
657 $sth->finish();
658
659 return $res;
660}
661
662sub user_stat_receiver_details {
663 my ($self, $rdb, $receiver, $limit, $orderby) = @_;
664 my ($from, $to) = $self->timespan();
665 my $sth;
666 my $res;
667
668 $orderby || ($orderby = 'time');
669 my $sortdir = sort_dir ($orderby);
670
671 my $cond_good_mail = $self->query_cond_good_mail ($from, $to);
672
3d511edd
DM
673 $sth = $rdb->{dbh}->prepare("SELECT * FROM CStatistic, CReceivers " .
674 "WHERE cid = cstatistic_cid AND rid = cstatistic_rid AND $cond_good_mail AND receiver = ? " .
e350fb98 675 "ORDER BY $orderby $sortdir, sender limit $limit");
3d511edd 676 $sth->execute($receiver);
e350fb98
DM
677
678 while (my $ref = $sth->fetchrow_hashref()) {
679 push @$res, $ref;
680 }
681
682 $sth->finish();
683
684 return $res;
685}
686
687sub user_stat_receiver {
688 my ($self, $rdb, $limit, $orderby) = @_;
689 my ($from, $to) = $self->timespan();
690 my $sth;
691 my $res;
692 my $query;
693
694 $orderby || ($orderby = 'count');
695 my $sortdir = sort_dir ($orderby);
696
697 my $cond_good_mail = $self->query_cond_good_mail ($from, $to) . " AND " .
698 "receiver IS NOT NULL AND receiver != ''";
699
700 if ($self->{adv}) {
701 my $active_workers = $self->query_active_workers ();
702
3d511edd
DM
703 $query = "SELECT receiver, count(*) AS count, sum (bytes) AS bytes, " .
704 "count (virusinfo) as viruscount, " .
e350fb98 705 "count (CASE WHEN spamlevel >= 3 THEN 1 ELSE NULL END) as spamcount " .
3d511edd
DM
706 "FROM CStatistic, CReceivers, ($active_workers) as workers " .
707 "WHERE cid = cstatistic_cid AND rid = cstatistic_rid AND $cond_good_mail AND direction AND worker=receiver " .
e350fb98
DM
708 "GROUP BY receiver " .
709 "ORDER BY $orderby $sortdir, receiver LIMIT $limit";
710 } else {
3d511edd
DM
711 $query = "SELECT receiver, count(*) AS count, sum (bytes) AS bytes, " .
712 "count (virusinfo) as viruscount, " .
e350fb98 713 "count (CASE WHEN spamlevel >= 3 THEN 1 ELSE NULL END) as spamcount " .
3d511edd
DM
714 "FROM CStatistic, CReceivers " .
715 "WHERE cid = cstatistic_cid AND rid = cstatistic_rid AND $cond_good_mail and direction " .
e350fb98
DM
716 "GROUP BY receiver " .
717 "ORDER BY $orderby $sortdir, receiver LIMIT $limit";
718 }
719
720 $sth = $rdb->{dbh}->prepare($query);
3d511edd 721 $sth->execute();
e350fb98
DM
722
723 while (my $ref = $sth->fetchrow_hashref()) {
724 push @$res, $ref;
725 }
726
727 $sth->finish();
728
729 return $res;
730}
731
732sub traffic_stat_graph {
733 my ($self, $rdb, $span, $dir) = @_;
734 my $res;
735
736 my ($from, $to) = $self->localhourspan();
737 my $p = $dir ? "In" : "Out";
738 my $timezone = tz_local_offset();;
739
740 my $spam = $dir ? "sum (SpamIn) + sum (GreylistCount) + sum (SPFCount) + sum (RBLCount)" : "sum (SpamOut)";
741
742 my $cmd = "SELECT sum(Count$p) as count, (time - $from) / $span AS index, " .
743 "sum (Virus$p) as viruscount, $spam as spamcount, sum (Bounces$p) as bounces " .
744 "FROM DailyStat WHERE time >= $from AND time < $to " .
745 "GROUP BY index ORDER BY index";
746
747 my $sth = $rdb->{dbh}->prepare($cmd);
748
3d511edd 749 $sth->execute ();
e350fb98
DM
750
751 while (my $ref = $sth->fetchrow_hashref()) {
752 @$res[$ref->{index}] = $ref;
753 }
754
755 my $c = int (($to - $from) / $span);
756
757 for (my $i = 0; $i < $c; $i++) {
758 my $eref = {count => 0, index => $i, spamcount => 0, viruscount => 0, bounces => 0};
759 @$res[$i] = $eref if !@$res[$i];
760 @$res[$i]->{time} = $from + ($i+1)*$span - $timezone;
761 }
762 $sth->finish();
763
764 return $res;
765}
766
767sub traffic_stat_day_dist {
768 my ($self, $rdb, $dir) = @_;
769 my $res;
770
771 my ($from, $to) = $self->localhourspan();
772 my $p = $dir ? "In" : "Out";
773
774 my $spam = $dir ? "sum (SpamIn) + sum (GreylistCount) + sum (SPFCount) + sum (RBLCount)" : "sum (SpamOut)";
775
776 my $cmd = "SELECT sum(Count$p) as count, ((time - $from) / 3600) % 24 AS index, " .
777 "sum (Virus$p) as viruscount, $spam as spamcount, sum (Bounces$p) as bounces " .
778 "FROM DailyStat WHERE time >= $from AND time < $to " .
779 "GROUP BY index ORDER BY index";
3d511edd 780
e350fb98
DM
781 my $sth = $rdb->{dbh}->prepare($cmd);
782
3d511edd 783 $sth->execute ();
e350fb98
DM
784
785 while (my $ref = $sth->fetchrow_hashref()) {
786 @$res[$ref->{index}] = $ref;
787 }
788
789 for (my $i = 0; $i < 24; $i++) {
790 my $eref = {count => 0, index => $i, spamcount => 0, viruscount => 0, bounces => 0};
791 @$res[$i] = $eref if !@$res[$i];
792 }
793 $sth->finish();
794
795 return $res;
796}
797
3d511edd
DM
798sub timespan {
799 my ($self, $from, $to) = @_;
800
e350fb98
DM
801 if (defined ($from) && defined ($to)) {
802 $self->{from} = $from;
803 $self->{to} = $to;
804 }
805
806 return ($self->{from}, $self->{to});
807}
808
3d511edd 809sub localdayspan {
e350fb98 810 my ($self) = @_;
3d511edd 811
e350fb98
DM
812 my ($from, $to) = $self->timespan();
813
814 my $timezone = tz_local_offset();;
815 $from = (($from + $timezone)/86400) * 86400;
816 $to = (($to + $timezone)/86400) * 86400;
817
818 $to += 86400 if $from == $to;
819
820 return ($from, $to);
821}
822
3d511edd 823sub localhourspan {
e350fb98 824 my ($self) = @_;
3d511edd 825
e350fb98
DM
826 my ($from, $to) = $self->timespan();
827
828 my $timezone = tz_local_offset();;
829 $from = (($from + $timezone)/3600) * 3600;
830 $to = (($to + $timezone)/3600) * 3600;
831
832 $to += 3600 if $from == $to;
833
834 return ($from, $to);
835}
836
e350fb98
DM
837
8381;