mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@853 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
92 lines
4.1 KiB
Perl
92 lines
4.1 KiB
Perl
#!/usr/bin/perl
|
|
###############################################################################
|
|
# #
|
|
# IPFire.org - A linux based firewall #
|
|
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
|
|
# #
|
|
# 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 3 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, see <http://www.gnu.org/licenses/>. #
|
|
# #
|
|
###############################################################################
|
|
|
|
use strict;
|
|
|
|
# enable only the following on debugging purpose
|
|
#use warnings;
|
|
#use CGI::Carp 'fatalsToBrowser';
|
|
|
|
require '/var/ipfire/general-functions.pl';
|
|
require "${General::swroot}/lang.pl";
|
|
require "${General::swroot}/header.pl";
|
|
require "${General::swroot}/graphs.pl";
|
|
|
|
my @cgigraph=();
|
|
my $errormessage = "";
|
|
|
|
&Header::showhttpheaders();
|
|
|
|
$ENV{'QUERY_STRING'} =~ s/&//g;
|
|
@cgigraph = split(/graph=/,$ENV{'QUERY_STRING'});
|
|
$cgigraph[1] = '' unless defined $cgigraph[1];
|
|
|
|
&Graphs::overviewgraph("day",$cgigraph[1]);
|
|
&Graphs::overviewgraph("week",$cgigraph[1]);
|
|
&Graphs::overviewgraph("month",$cgigraph[1]);
|
|
&Graphs::overviewgraph("year",$cgigraph[1]);
|
|
|
|
&Header::openpage('QoS', 1, '');
|
|
&Header::openbigbox('100%', 'left', '', $errormessage);
|
|
&Header::openbox('100%', 'left', $cgigraph[1]);
|
|
|
|
if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-day.png") {
|
|
my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-day.png"))[9]);
|
|
print "<center>";
|
|
print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
|
|
print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-day.png' border='0' /><hr />";
|
|
} else {
|
|
print $Lang::tr{'no information available'};
|
|
}
|
|
|
|
if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-week.png") {
|
|
my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-week.png"))[9]);
|
|
print "<center>";
|
|
print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
|
|
print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-week.png' border='0' /><hr />";
|
|
} else {
|
|
print $Lang::tr{'no information available'};
|
|
}
|
|
|
|
if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-month.png") {
|
|
my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-month.png.png"))[9]);
|
|
print "<center>";
|
|
print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
|
|
print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-month.png' border='0' /><hr />";
|
|
} else {
|
|
print $Lang::tr{'no information available'};
|
|
}
|
|
|
|
if (-e "/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-year.png") {
|
|
my $ftime = localtime((stat("/srv/web/ipfire/html/graphs/qos-graph-$cgigraph[1]-year.png"))[9]);
|
|
print "<center>";
|
|
print "<b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
|
|
print "<img alt='' src='/graphs/qos-graph-$cgigraph[1]-year.png' border='0' /><hr />";
|
|
} else {
|
|
print $Lang::tr{'no information available'};
|
|
}
|
|
|
|
print"<div align='center'><br/><a href='/cgi-bin/qos.cgi'>$Lang::tr{'back'}</a></div>";
|
|
|
|
&Header::closebox();
|
|
&Header::closebigbox();
|
|
&Header::closepage();
|