#!/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 . # # # ############################################################################### 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 "
"; print "$Lang::tr{'the statistics were last updated at'}: $ftime

\n"; print "
"; } 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 "
"; print "$Lang::tr{'the statistics were last updated at'}: $ftime

\n"; print "
"; } 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 "
"; print "$Lang::tr{'the statistics were last updated at'}: $ftime

\n"; print "
"; } 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 "
"; print "$Lang::tr{'the statistics were last updated at'}: $ftime

\n"; print "
"; } else { print $Lang::tr{'no information available'}; } print"

$Lang::tr{'back'}
"; &Header::closebox(); &Header::closebigbox(); &Header::closepage();