]>
Commit | Line | Data |
---|---|---|
4e481c3a CS |
1 | #!/usr/bin/perl |
2 | ############################################################################### | |
3 | # # | |
4 | # IPFire.org - A linux based firewall # | |
0d08de33 | 5 | # Copyright (C) 2005-2010 IPFire Team # |
4e481c3a CS |
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 %color = (); | |
34 | my %mainsettings = (); | |
35 | my %netsettings=(); | |
36 | &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); | |
37 | &General::readhash("${General::swroot}/main/settings", \%mainsettings); | |
38 | &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color); | |
39 | ||
40 | my @graphs=(); | |
41 | my @wireless=(); | |
42 | ||
43 | my @querry = split(/\?/,$ENV{'QUERY_STRING'}); | |
44 | $querry[0] = '' unless defined $querry[0]; | |
45 | $querry[1] = 'hour' unless defined $querry[1]; | |
46 | $querry[2] = '' unless defined $querry[2]; | |
47 | ||
48 | if ( $querry[0] =~ /wireless/ ){ | |
49 | print "Content-type: image/png\n\n"; | |
50 | binmode(STDOUT); | |
51 | $querry[0] =~ s/wireless//g; | |
52 | &Graphs::updatewirelessgraph($querry[0],$querry[1]); | |
53 | }elsif ( $querry[0] ne "" ){ | |
54 | print "Content-type: image/png\n\n"; | |
55 | binmode(STDOUT); | |
56 | &Graphs::updateifgraph($querry[0],$querry[1]); | |
57 | }else{ | |
58 | ||
59 | &Header::showhttpheaders(); | |
60 | &Header::openpage($Lang::tr{'network traffic graphs internal'}, 1, ''); | |
61 | &Header::openbigbox('100%', 'left'); | |
62 | ||
63 | push (@graphs, ($netsettings{'GREEN_DEV'})); | |
095cbf43 MT |
64 | if (&Header::blue_used() && $netsettings{'BLUE_DEV'}) {push (@graphs, ($netsettings{'BLUE_DEV'})); } |
65 | if (&Header::orange_used() && $netsettings{'ORANGE_DEV'}) {push (@graphs, ($netsettings{'ORANGE_DEV'})); } | |
4e481c3a | 66 | |
0d08de33 | 67 | my @wirelessgraphs = `ls -dA /var/log/rrd/collectd/localhost/wireless* 2>/dev/null`; |
4e481c3a CS |
68 | foreach (@wirelessgraphs){ |
69 | $_ =~ /(.*)\/wireless-(.*)/; | |
70 | push(@wireless,$2); | |
71 | } | |
72 | ||
73 | foreach (@graphs) { | |
74 | &Header::openbox('100%', 'center', "$_ $Lang::tr{'graph'}"); | |
75 | &Graphs::makegraphbox("netinternal.cgi",$_,"day"); | |
76 | &Header::closebox(); | |
77 | } | |
78 | ||
79 | foreach (@wireless) { | |
80 | &Header::openbox('100%', 'center', "Wireless $_ $Lang::tr{'graph'}"); | |
81 | &Graphs::makegraphbox("netinternal.cgi","wireless".$_,"day"); | |
82 | &Header::closebox(); | |
83 | } | |
84 | ||
85 | &Header::closebigbox(); | |
86 | &Header::closepage(); | |
87 | } |