]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - html/cgi-bin/qosgraph.cgi
Ein Paar Dateien fuer die GPLv3 angepasst.
[people/teissler/ipfire-2.x.git] / html / cgi-bin / qosgraph.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31 require "${General::swroot}/graphs.pl";
32
33 my @cgigraph=();
34 my $errormessage = "";
35
36 &Header::showhttpheaders();
37
38 $ENV{'QUERY_STRING'} =~ s/&//g;
39 @cgigraph = split(/graph=/,$ENV{'QUERY_STRING'});
40 $cgigraph[1] = '' unless defined $cgigraph[1];
41
42 &Graphs::overviewgraph("day",$cgigraph[1]);
43 &Graphs::overviewgraph("week",$cgigraph[1]);
44 &Graphs::overviewgraph("month",$cgigraph[1]);
45 &Graphs::overviewgraph("year",$cgigraph[1]);
46
47 &Header::openpage('QoS', 1, '');
48 &Header::openbigbox('100%', 'left', '', $errormessage);
49 &Header::openbox('100%', 'left', $cgigraph[1]);
50
51 if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-day.png") {
52 my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-day.png"))[9]);
53 print "<center>";
54 print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
55 print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-day.png' border='0' /><hr />";
56 } else {
57 print $Lang::tr{'no information available'};
58 }
59
60 if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-week.png") {
61 my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-week.png"))[9]);
62 print "<center>";
63 print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
64 print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-week.png' border='0' /><hr />";
65 } else {
66 print $Lang::tr{'no information available'};
67 }
68
69 if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-month.png") {
70 my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-month.png.png"))[9]);
71 print "<center>";
72 print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
73 print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-month.png' border='0' /><hr />";
74 } else {
75 print $Lang::tr{'no information available'};
76 }
77
78 if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-year.png") {
79 my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-year.png"))[9]);
80 print "<center>";
81 print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
82 print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-year.png' border='0' /><hr />";
83 } else {
84 print $Lang::tr{'no information available'};
85 }
86
87 print"<div align='center'><br/><a href='/cgi-bin/qos.cgi'>$Lang::tr{'back'}</a></div>";
88
89 &Header::closebox();
90 &Header::closebigbox();
91 &Header::closepage();