]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - html/cgi-bin/fwhits.cgi
Firewallgraphen angepasst und uebersetzt
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / fwhits.cgi
... / ...
CommitLineData
1#!/usr/bin/perl
2#
3# This code is distributed under the terms of the GPL
4#
5
6use strict;
7
8# enable only the following on debugging purpose
9#use warnings;
10#use CGI::Carp 'fatalsToBrowser';
11
12require '/var/ipfire/general-functions.pl';
13require "${General::swroot}/lang.pl";
14require "${General::swroot}/header.pl";
15require "${General::swroot}/graphs.pl";
16
17my %cgiparams=();
18my @cgigraphs=();
19my @graphs=();
20
21&Graphs::updatefwhitsgraph ("day");
22&Graphs::updatefwhitsgraph ("week");
23&Graphs::updatefwhitsgraph ("month");
24&Graphs::updatefwhitsgraph ("year");
25
26$ENV{'QUERY_STRING'} =~ s/&//g;
27@cgigraphs = split(/graph=/,$ENV{'QUERY_STRING'});
28$cgigraphs[1] = '' unless defined $cgigraphs[1];
29
30&Header::showhttpheaders();
31
32my $graphdir = "/home/httpd/html/graphs";
33my @LOCALCHECK=();
34my $errormessage="";
35
36&Header::openpage($Lang::tr{'firewall graphs'}, 1, '');
37&Header::openbigbox('100%', 'left', '', $errormessage);
38
39 &Header::openbox('100%', 'center', $Lang::tr{"daily firewallhits"});
40if (-e "$Header::graphdir/firewallhits-day-area.png") {
41 my $ftime = localtime((stat("$Header::graphdir/firewallhits-day-area.png"))[9]);
42 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
43 print "<img alt='' src='/graphs/firewallhits-day-area.png' border='0' />";
44 print "<br />\n";
45} else {
46 print $Lang::tr{'no information available'};
47}
48print "<br />\n";
49 &Header::closebox();
50
51 &Header::openbox('100%', 'center', $Lang::tr{"weekly firewallhits"});
52if (-e "$Header::graphdir/firewallhits-week-area.png") {
53 my $ftime = localtime((stat("$Header::graphdir/firewallhits-week-area.png"))[9]);
54 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
55 print "<img alt='' src='/graphs/firewallhits-week-area.png' border='0' />";
56 print "<br />\n";
57} else {
58 print $Lang::tr{'no information available'};
59}
60print "<br />\n";
61 &Header::closebox();
62
63 &Header::openbox('100%', 'center', $Lang::tr{"monthly firewallhits"});
64if (-e "$Header::graphdir/firewallhits-month-area.png") {
65 my $ftime = localtime((stat("$Header::graphdir/firewallhits-month-area.png"))[9]);
66 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
67 print "<img alt='' src='/graphs/firewallhits-month-area.png' border='0' />";
68 print "<br />\n";
69} else {
70 print $Lang::tr{'no information available'};
71}
72print "<br />\n";
73 &Header::closebox();
74
75 &Header::openbox('100%', 'center', $Lang::tr{"yearly firewallhits"});
76if (-e "$Header::graphdir/firewallhits-year-area.png") {
77 my $ftime = localtime((stat("$Header::graphdir/firewallhits-year-area.png"))[9]);
78 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
79 print "<img alt='' src='/graphs/firewallhits-year-area.png' border='0' />";
80 print "<br />\n";
81} else {
82 print $Lang::tr{'no information available'};
83}
84print "<br />\n";
85 &Header::closebox();
86
87&Header::closebigbox();
88&Header::closepage();