]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/qosgraph.cgi
Ein Paar Dateien fuer die GPLv3 angepasst.
[ipfire-2.x.git] / html / cgi-bin / qosgraph.cgi
CommitLineData
0b1641db 1#!/usr/bin/perl
70df8302
MT
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###############################################################################
0b1641db
CS
21
22use strict;
23
24# enable only the following on debugging purpose
cb5e9c6c
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
0b1641db
CS
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31require "${General::swroot}/graphs.pl";
32
33my @cgigraph=();
34my $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();