]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/traffic.cgi
makegraphs umgebaut, sodass nurnoch rrd daten geschrieben werden die graphen
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / traffic.cgi
CommitLineData
10a04d70
MT
1#!/usr/bin/perl
2#
3# SmoothWall CGIs
4#
5# This code is distributed under the terms of the GPL
6#
7# (c) The SmoothWall Team
8#
9
10use strict;
11
12# enable only the following on debugging purpose
13use warnings;
14use CGI::Carp 'fatalsToBrowser';
15
16require '/var/ipfire/general-functions.pl';
17require "${General::swroot}/lang.pl";
18require "${General::swroot}/header.pl";
19require '/var/ipfire/net-traffic/net-traffic-lib.pl';
20
f2fdd0c1
CS
21my %color = ();
22my %mainsettings = ();
23&General::readhash("${General::swroot}/main/settings", \%mainsettings);
24&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
25
10a04d70
MT
26my %cgiparams;
27my %pppsettings;
28my %netsettings;
29
30&General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
31&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
32
33my @wday = ($Lang::tr{'wday1'}, $Lang::tr{'wday2'}, $Lang::tr{'wday3'}, $Lang::tr{'wday4'}, $Lang::tr{'wday5'}, $Lang::tr{'wday6'}, $Lang::tr{'wday7'});
34
35my ($s, $min, $h, $d, $m,$y) = localtime(time);
36$y+=1900;
37$m+=1;
38$m = $m < 10 ? $m = "0".$m : $m;
39
40$cgiparams{'MONTH'} = $m;
41&Header::getcgihash(\%cgiparams);
42$cgiparams{'YEAR'} = $y;
43&Header::getcgihash(\%cgiparams);
44
45&Header::showhttpheaders();
46
47my %selectYear;
10a04d70
MT
48$selectYear{'YEAR'}{'2007'} = '';
49$selectYear{'YEAR'}{'2008'} = '';
50$selectYear{'YEAR'}{'2009'} = '';
1be59789
MT
51$selectYear{'YEAR'}{'2010'} = '';
52$selectYear{'YEAR'}{'2011'} = '';
53$selectYear{'YEAR'}{'2012'} = '';
10a04d70
MT
54$selectYear{'YEAR'}{'????'} = '';
55$selectYear{'YEAR'}{$cgiparams{'YEAR'}} = 'selected=\'selected\'';
56
57
58my %selected;
59
60$selected{'MONTH'}{'01'} = '';
61$selected{'MONTH'}{'02'} = '';
62$selected{'MONTH'}{'03'} = '';
63$selected{'MONTH'}{'04'} = '';
64$selected{'MONTH'}{'05'} = '';
65$selected{'MONTH'}{'06'} = '';
66$selected{'MONTH'}{'07'} = '';
67$selected{'MONTH'}{'08'} = '';
68$selected{'MONTH'}{'09'} = '';
69$selected{'MONTH'}{'10'} = '';
70$selected{'MONTH'}{'11'} = '';
71$selected{'MONTH'}{'12'} = '';
72$selected{'MONTH'}{'??'} = '';
73$selected{'MONTH'}{$cgiparams{'MONTH'}} = 'selected=\'selected\'';
74
75&Header::openpage($Lang::tr{'sstraffic'}, 1, '');
76
77&Header::openbigbox('100%', 'left');
78
79&Header::openbox('100%', 'left', $Lang::tr{'settingsc'});
80
81print <<END;
82 <table width='80%' align='center'>
83 <tr>
84 <td width='95%' align='left' nowrap='nowrap'>
85 <form method='post' action='/cgi-bin/traffic.cgi'>
86 $Lang::tr{'selecttraffic'}
87 <select name='MONTH'>
88 <option $selected{'MONTH'}{'01'} value='01'>$Lang::tr{'january'}</option>
89 <option $selected{'MONTH'}{'02'} value='02'>$Lang::tr{'february'}</option>
90 <option $selected{'MONTH'}{'03'} value='03'>$Lang::tr{'march'}</option>
91 <option $selected{'MONTH'}{'04'} value='04'>$Lang::tr{'april'}</option>
92 <option $selected{'MONTH'}{'05'} value='05'>$Lang::tr{'may'}</option>
93 <option $selected{'MONTH'}{'06'} value='06'>$Lang::tr{'june'}</option>
94 <option $selected{'MONTH'}{'07'} value='07'>$Lang::tr{'july'}</option>
95 <option $selected{'MONTH'}{'08'} value='08'>$Lang::tr{'august'}</option>
96 <option $selected{'MONTH'}{'09'} value='09'>$Lang::tr{'september'}</option>
97 <option $selected{'MONTH'}{'10'} value='10'>$Lang::tr{'october'}</option>
98 <option $selected{'MONTH'}{'11'} value='11'>$Lang::tr{'november'}</option>
99 <option $selected{'MONTH'}{'12'} value='12'>$Lang::tr{'december'}</option>
100 <option $selected{'MONTH'}{'??'} value='??'>$Lang::tr{'allmsg'}</option>
101 </select>
102 <select name='YEAR'>
1be59789
MT
103 <option $selectYear{'YEAR'}{'2007'} value='2007'>2007</option>
104 <option $selectYear{'YEAR'}{'2008'} value='2008'>2008</option>
105 <option $selectYear{'YEAR'}{'2009'} value='2009'>2009</option>
106 <option $selectYear{'YEAR'}{'2010'} value='2010'>2010</option>
107 <option $selectYear{'YEAR'}{'2011'} value='2011'>2011</option>
108 <option $selectYear{'YEAR'}{'2012'} value='2012'>2012</option>
10a04d70
MT
109 <option $selectYear{'YEAR'}{'????'} value='????'>$Lang::tr{'allmsg'}</option>
110 </select>
111 <input type='submit' name='ACTION' value='$Lang::tr{'update'}' />
112 </form>
113 </td>
114 <td width='5%' align='center'>
115 <form method='post' action='/cgi-bin/traffics.cgi'>
116 <input type='submit' name='ACTION' value=' > ' />
117 </form>
118 </td>
119 </tr>
120 </table>
121END
122
123&Header::closebox();
124
125&Header::openbox('100%', 'left', $Lang::tr{'traffics'});
126
127my $dateWidth = '20%';
128my $netWidth = '34%';
129my $inOutWidth = '17%';
130
131# 4 networks
132if ($netsettings{'CONFIG_TYPE'} =~ /^(5|7)$/) {
133 $dateWidth = '12%';
134 $netWidth = '22%';
135 $inOutWidth = '11%';
136}
137# 3 networks
138if ($netsettings{'CONFIG_TYPE'} =~ /^(1|3|4|6)$/) {
139 $dateWidth = '16%';
140 $netWidth = '28%';
141 $inOutWidth = '14%';
142}
143
144print <<END;
145 <table width='100%'>
146 <tr>
147 <td width='$dateWidth' align='center' class='boldbase'></td>
148 <td width='$netWidth' align='center' class='boldbase' ><b>$Lang::tr{'trafficgreen'}</b></td>
149END
150
151if ($netsettings{'CONFIG_TYPE'} =~ /^(4|5|6|7)$/) {
152 print "<td width='$netWidth' align='center' class='boldbase' ><b>$Lang::tr{'trafficblue'}</b></td>";
153}
154
155if ($netsettings{'CONFIG_TYPE'} =~ /^(1|3|5|7)$/) {
156 print "<td width='$netWidth' align='center' class='boldbase' ><b>$Lang::tr{'trafficorange'}</b></td>";
157}
158
159print <<END;
160 <td width='$netWidth' align='center' class='boldbase'><b>$Lang::tr{'trafficred'}</b></td>
161 </tr>
162 </table>
163 <table width='100%'>
164 <tr>
165 <td width='$dateWidth' align='center' class='boldbase'><b>$Lang::tr{'trafficdate'}</b></td>
166 <td width='$inOutWidth' align='center' class='boldbase'><font color='#16A61D'><b>$Lang::tr{'trafficin'}</b></font></td>
167 <td width='$inOutWidth' align='center' class='boldbase'><font color='#16A61D'><b>$Lang::tr{'trafficout'}</b></font></td>
168END
169
170if ($netsettings{'CONFIG_TYPE'} =~ /^(4|5|6|7)$/)
171{
172 print "<td width='$inOutWidth' align='center' class='boldbase'><font color='${Header::colourblue}'><b>$Lang::tr{'trafficin'}</b></font></td>";
173 print "<td width='$inOutWidth' align='center' class='boldbase'><font color='${Header::colourblue}'><b>$Lang::tr{'trafficout'}</b></font></td>";
174}
175
176if ($netsettings{'CONFIG_TYPE'} =~ /^(1|3|5|7)$/)
177{
178 print "<td width='$inOutWidth' align='center' class='boldbase'><font color='#FF9933'><b>$Lang::tr{'trafficin'}</b></font></td>";
179 print "<td width='$inOutWidth' align='center' class='boldbase'><font color='#FF9933'><b>$Lang::tr{'trafficout'}</b></font></td>";
180}
181print <<END;
182 <td width='$inOutWidth' align='center' class='boldbase'><font color='#CE1B31'><b>$Lang::tr{'trafficin'}</b></font></td>
183 <td width='$inOutWidth' align='center' class='boldbase'><font color='#CE1B31'><b>$Lang::tr{'trafficout'}</b></font></td>
184 </tr>
185END
186
187my $total_blue_in=0;
188my $total_blue_out=0;
189my $total_green_in=0;
190my $total_green_out=0;
191my $total_orange_in=0;
192my $total_orange_out=0;
193my $total_red_in=0;
194my $total_red_out=0;
195my $lines=0;
196
197my $displayMode = "daily";
198my $startMonth = $cgiparams{'MONTH'};
199my $endMonth = $cgiparams{'MONTH'};
200
201if ($cgiparams{'MONTH'} eq '??') {
202 $displayMode = "monthly";
203 $startMonth = '01';
204 $endMonth = '12';
205}
206
207my $start = "$cgiparams{'YEAR'}$startMonth"."01";
208my $end = "$cgiparams{'YEAR'}$endMonth"."32";
209my %allDaysBytes = ();
210my @allDays = &Traffic::calcTraffic(\%allDaysBytes,$start,$end, $displayMode);
211
212
213foreach (@allDays) {
214 $total_green_in += $allDaysBytes{$_}{${Traffic::green_in}};
215 $total_green_out += $allDaysBytes{$_}{${Traffic::green_out}};
216
217 if ($netsettings{'CONFIG_TYPE'} =~ /^(4|5|6|7)$/)
218 {
219 $total_blue_in += $allDaysBytes{$_}{${Traffic::blue_in}};
220 $total_blue_out += $allDaysBytes{$_}{${Traffic::blue_out}};
221 }
222
223 if ($netsettings{'CONFIG_TYPE'} =~ /^(1|3|5|7)$/)
224 {
225 $total_orange_in += $allDaysBytes{$_}{${Traffic::orange_in}};
226 $total_orange_out += $allDaysBytes{$_}{${Traffic::orange_out}};
227 }
228
229 $total_red_in += $allDaysBytes{$_}{${Traffic::red_in}};
230 $total_red_out += $allDaysBytes{$_}{${Traffic::red_out}};
231
232 if ($lines % 2) {
f2fdd0c1 233 print "<tr bgcolor='$color{'color20'}'>"; }
10a04d70 234 else {
f2fdd0c1 235 print "<tr bgcolor='$color{'color22'}'>"; }
10a04d70
MT
236
237 printf "<td align='center' nowrap='nowrap'>%s</td>\n", $allDaysBytes{$_}{'Day'};
238 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::green_in}}/1048576);
239 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::green_out}}/1048576);
240
241 if ($netsettings{'CONFIG_TYPE'} =~ /^(4|5|6|7)$/)
242 {
243 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::blue_in}}/1048576);
244 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::blue_out}}/1048576);
245 }
246 if ($netsettings{'CONFIG_TYPE'} =~ /^(1|3|5|7)$/)
247 {
248 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::orange_in}}/1048576);
249 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::orange_out}}/1048576);
250 }
251
252 printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::red_in}}/1048576);
253 printf "<td align='center' nowrap='nowrap'>%.3f</td></tr>\n", ($allDaysBytes{$_}{${Traffic::red_out}}/1048576);
254
255 $lines++;
256}
257
258$total_green_in=sprintf("%.2f", ($total_green_in/1048576));
259$total_green_out=sprintf("%.2f", ($total_green_out/1048576));
260$total_blue_in=sprintf("%.2f", ($total_blue_in/1048576));
261$total_blue_out=sprintf("%.2f", ($total_blue_out/1048576));
262$total_orange_in=sprintf("%.2f", ($total_orange_in/1048576));
263$total_orange_out=sprintf("%.2f", ($total_orange_out/1048576));
264$total_red_in=sprintf("%.2f", ($total_red_in/1048576));
265$total_red_out=sprintf("%.2f", ($total_red_out/1048576));
266
f2fdd0c1
CS
267if ($lines % 2) {print "<tr bgcolor='$color{'color20'}'>"; }
268else {print "<tr bgcolor='$color{'color22'}'>"; }
10a04d70
MT
269
270print <<END;
271 <td align='center' class='boldbase' height='20' nowrap='nowrap'><b>$Lang::tr{'trafficsum'}</b></td>
272 <td align='center' class='boldbase' nowrap='nowrap'><b>$total_green_in MB</b></td>
273 <td align='center' class='boldbase' nowrap='nowrap'><b>$total_green_out MB</b></td>
274END
275
276if ($netsettings{'CONFIG_TYPE'} =~ /^(4|5|6|7)$/)
277{
278 print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_blue_in MB</b></td>";
279 print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_blue_out MB</b></td>";
280}
281
282if ($netsettings{'CONFIG_TYPE'} =~ /^(1|3|5|7)$/)
283{
284 print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_orange_in MB</b></td>";
285 print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_orange_out MB</b></td>";
286}
287
288print <<END;
289 <td align='center' class='boldbase' nowrap='nowrap'><b>$total_red_in MB</b></td>
290 <td align='center' class='boldbase' nowrap='nowrap'><b>$total_red_out MB</b></td>
291 </tr>
292 </table>
293END
294
295&Header::closebox();
296
297&Header::closebigbox();
298
299&Header::closepage();