]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/proxygraphs.cgi
Ended core 5 and started core 6
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / proxygraphs.cgi
CommitLineData
ac1cfefa 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###############################################################################
ac1cfefa
MT
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32my %cgiparams=();
33my %pppsettings=();
34my %netsettings=();
35my @graphs=();
36
37&Header::showhttpheaders();
38
fd0763dc 39my $dir = "/srv/web/ipfire/html/sgraph";
ac1cfefa
MT
40$cgiparams{'ACTION'} = '';
41&Header::getcgihash(\%cgiparams);
fd0763dc 42my $sgraphdir = "/srv/web/ipfire/html/sgraph";
ac1cfefa
MT
43
44&Header::openpage($Lang::tr{'proxy access graphs'}, 1, '');
45
46&Header::openbigbox('100%', 'left');
47
48&Header::openbox('100%', 'left', $Lang::tr{'proxy access graphs'} . ":" );
49
50if (open(IPACHTML, "$sgraphdir/index.html"))
51{
52 my $skip = 1;
53 while (<IPACHTML>)
54 {
55 $skip = 1 if /^<HR>$/;
56 if ($skip)
57 {
58 $skip = 0 if /<H1>/;
59 next;
60 }
61 s/<IMG SRC=([^"'>]+)>/<img src='\/sgraph\/$1' alt='Graph' \/>/;
62 s/<HR>/<hr \/>/g;
63 s/<BR>/<br \/>/g;
64 s/<([^>]*)>/\L<$1>\E/g;
65 s/(size|align|border|color)=([^'"> ]+)/$1='$2'/g;
66 print;
67 }
68 close(IPACHTML);
69}
70else {
71 print $Lang::tr{'no information available'}; }
72
73&Header::closebox();
74
75&Header::closebigbox();
76
77&Header::closepage();