mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Hoffentlich die letzten Config Types bereinigt Samba und SSHd init Skripte angepasst Pakfire CGI optisch angepasst git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@779 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
368 lines
11 KiB
Perl
368 lines
11 KiB
Perl
#!/usr/bin/perl
|
|
#
|
|
# SmoothWall CGIs
|
|
#
|
|
# This code is distributed under the terms of the GPL
|
|
#
|
|
# (c) The SmoothWall Team
|
|
#
|
|
# $Id: traffics.cgi,v 1.12 2006/11/15 21:14:02 dotzball Exp $
|
|
#
|
|
# traffics.cgi, v1.1.0 2003/10/18
|
|
# supports now:
|
|
# * IPCop v1.3.0
|
|
# * choosing year
|
|
|
|
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}/net-traffic/net-traffic-admin.pl";
|
|
require "${General::swroot}/net-traffic/net-traffic-lib.pl";
|
|
|
|
my %color = ();
|
|
my %mainsettings = ();
|
|
&General::readhash("${General::swroot}/main/settings", \%mainsettings);
|
|
&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
|
|
|
|
my %cgiparams;
|
|
my %netsettings;
|
|
|
|
&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
|
|
|
|
my @days = ( 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 );
|
|
|
|
my @now = localtime(time);
|
|
|
|
$now[5] = $now[5]+1900;
|
|
|
|
$cgiparams{'STARTDAY'} = 10;
|
|
$cgiparams{'STOPDAY'} = 11;
|
|
$cgiparams{'STARTYEAR'} = $now[5];
|
|
$cgiparams{'STOPYEAR'} = $now[5];
|
|
|
|
if($NETTRAFF::settings{'MONTHLY_VOLUME_ON'} eq 'on')
|
|
{
|
|
$cgiparams{'STARTDAY'} = $NETTRAFF::settings{'STARTDAY'};
|
|
$cgiparams{'STOPDAY'} = $NETTRAFF::settings{'STARTDAY'};
|
|
}
|
|
|
|
# this periode started last month
|
|
if ($now[3] < $cgiparams{'STARTDAY'}) {
|
|
$cgiparams{'STARTMONTH'} = $now[4]-1;
|
|
$cgiparams{'STOPMONTH'} = $now[4];
|
|
# when current month is january we start in last year december
|
|
if ($cgiparams{'STOPMONTH'} == 0) {
|
|
$cgiparams{'STARTYEAR'} = $now[5]-1;
|
|
$cgiparams{'STARTMONTH'} = 11;
|
|
}
|
|
}
|
|
else {
|
|
$cgiparams{'STARTMONTH'} = $now[4];
|
|
$cgiparams{'STOPMONTH'} = $now[4]+1;
|
|
# when we are in december, this periode ends next year january
|
|
if ($cgiparams{'STARTMONTH'} == 11) {
|
|
$cgiparams{'STOPYEAR'} = $now[5]+1;
|
|
$cgiparams{'STOPMONTH'} = 0;
|
|
}
|
|
}
|
|
|
|
&Header::getcgihash(\%cgiparams);
|
|
&Header::showhttpheaders();
|
|
&Header::openpage($Lang::tr{'sstraffic'}, 1, '');
|
|
&Header::openbigbox('100%', 'left');
|
|
&Header::openbox('100%', 'left', "");
|
|
|
|
print <<END;
|
|
<table width='100%' align='center'>
|
|
<tr>
|
|
<td width='90%' class='base' align='center'>
|
|
<form method='post' action='/cgi-bin/traffics.cgi'>
|
|
$Lang::tr{'trafficfrom'}
|
|
<select name='STARTDAY'>
|
|
END
|
|
|
|
foreach my $day (@days)
|
|
{
|
|
print "\t<option ";
|
|
if ($day == $cgiparams{'STARTDAY'}) {
|
|
print 'selected=\'selected\' '; }
|
|
print "value='$day'>$day</option>\n";
|
|
}
|
|
print <<END;
|
|
</select>
|
|
<select name='STARTMONTH'>
|
|
END
|
|
|
|
foreach my $month (@NETTRAFF::months)
|
|
{
|
|
print "\t<option ";
|
|
if ($month == $cgiparams{'STARTMONTH'}) {
|
|
print 'selected=\'selected\' '; }
|
|
print "value='$month'>$NETTRAFF::longmonths[$month]</option>\n";
|
|
}
|
|
|
|
print <<END;
|
|
</select>
|
|
<select name='STARTYEAR'>
|
|
END
|
|
|
|
foreach my $year (@NETTRAFF::years) {
|
|
print "\t<option ";
|
|
if ($year == $cgiparams{'STARTYEAR'}) {
|
|
print 'selected=\'selected\' '; }
|
|
print "value='$year'>$year</option>\n";
|
|
}
|
|
|
|
print <<END;
|
|
</select>
|
|
$Lang::tr{'trafficto'}
|
|
<select name='STOPDAY'>
|
|
END
|
|
|
|
foreach my $day (@days)
|
|
{
|
|
print "\t<option ";
|
|
if ($day == $cgiparams{'STOPDAY'})
|
|
{
|
|
print 'selected=\'selected\' '; }
|
|
print "value='$day'>$day</option>\n";
|
|
}
|
|
|
|
print <<END;
|
|
</select>
|
|
<select name='STOPMONTH'>
|
|
END
|
|
|
|
foreach my $month (@NETTRAFF::months)
|
|
{
|
|
print "\t<option ";
|
|
if ($month == $cgiparams{'STOPMONTH'}) {
|
|
print 'selected=\'selected\' '; }
|
|
print "value='$month'>$NETTRAFF::longmonths[$month]</option>\n";
|
|
}
|
|
|
|
print <<END;
|
|
</select>
|
|
<select name='STOPYEAR'>
|
|
END
|
|
|
|
foreach my $year (@NETTRAFF::years) {
|
|
print "\t<option ";
|
|
if ($year == $cgiparams{'STOPYEAR'}) {
|
|
print 'selected=\'selected\' '; }
|
|
print "value='$year'>$year</option>\n";
|
|
}
|
|
|
|
|
|
print <<END;
|
|
</select>
|
|
<input type='submit' name='ACTION' value='$Lang::tr{'update'}' />
|
|
</form>
|
|
</td>
|
|
<td width='5%' align='center'>
|
|
<form method='post' action='/cgi-bin/traffic.cgi'>
|
|
<input type='submit' name='ACTION' value=' > ' />
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
END
|
|
|
|
&Header::closebox();
|
|
|
|
&Header::openbox('100%', 'left', "$Lang::tr{'traffics'}");
|
|
|
|
my $dateWidth = '20%';
|
|
my $netWidth = '34%';
|
|
my $inOutWidth = '17%';
|
|
|
|
# 4 networks
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(4)$/) {
|
|
$dateWidth = '12%';
|
|
$netWidth = '22%';
|
|
$inOutWidth = '11%';
|
|
}
|
|
# 3 networks
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(2|3)$/) {
|
|
$dateWidth = '16%';
|
|
$netWidth = '28%';
|
|
$inOutWidth = '14%';
|
|
}
|
|
|
|
print <<END;
|
|
<table width='100%'>
|
|
<tr>
|
|
<td width='$dateWidth' align='center' class='boldbase'></td>
|
|
<td width='$netWidth' align='center' class='boldbase' ><b>$Lang::tr{'trafficgreen'}</b></td>
|
|
END
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(3|4)$/) {
|
|
print "<td width='$netWidth' align='center' class='boldbase' ><b>$Lang::tr{'trafficblue'}</b></td>";
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(2|4)$/) {
|
|
print "<td width='$netWidth' align='center' class='boldbase' ><b>$Lang::tr{'trafficorange'}</b></td>";
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/)
|
|
{
|
|
print "<td width='$netWidth' align='center' class='boldbase'><b>$Lang::tr{'trafficred'}</b></td>";
|
|
}
|
|
print <<END;
|
|
</tr>
|
|
</table>
|
|
<table width='100%'>
|
|
<tr>
|
|
<td width='$dateWidth' align='center' class='boldbase'><b>$Lang::tr{'trafficdate'}</b></td>
|
|
<td width='$inOutWidth' align='center' class='boldbase'><font color='$Header::colourgreen'><b>$Lang::tr{'trafficin'}</b></font></td>
|
|
<td width='$inOutWidth' align='center' class='boldbase'><font color='$Header::colourgreen'><b>$Lang::tr{'trafficout'}</b></font></td>
|
|
END
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(3|4)$/)
|
|
{
|
|
print "<td width='$inOutWidth' align='center' class='boldbase'><font color='${Header::colourblue}'><b>$Lang::tr{'trafficin'}</b></font></td>";
|
|
print "<td width='$inOutWidth' align='center' class='boldbase'><font color='${Header::colourblue}'><b>$Lang::tr{'trafficout'}</b></font></td>";
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(2|4)$/)
|
|
{
|
|
print "<td width='$inOutWidth' align='center' class='boldbase'><font color='$Header::colourorange'><b>$Lang::tr{'trafficin'}</b></font></td>";
|
|
print "<td width='$inOutWidth' align='center' class='boldbase'><font color='$Header::colourorange'><b>$Lang::tr{'trafficout'}</b></font></td>";
|
|
}
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/)
|
|
{
|
|
print "<td width='$inOutWidth' align='center' class='boldbase'><font color='$Header::colourred'><b>$Lang::tr{'trafficin'}</b></font></td>";
|
|
print "<td width='$inOutWidth' align='center' class='boldbase'><font color='$Header::colourred'><b>$Lang::tr{'trafficout'}</b></font></td>";
|
|
}
|
|
print "</tr>";
|
|
|
|
my $total_blue_in=0;
|
|
my $total_blue_out=0;
|
|
my $total_green_in=0;
|
|
my $total_green_out=0;
|
|
my $total_orange_in=0;
|
|
my $total_orange_out=0;
|
|
my $total_red_in=0;
|
|
my $total_red_out=0;
|
|
my $lines=0;
|
|
|
|
|
|
my $startyear = $cgiparams{'STARTYEAR'};
|
|
my $stopyear = $cgiparams{'STOPYEAR'};
|
|
|
|
my $startMonth = $cgiparams{'STARTMONTH'}+1;
|
|
$startMonth = $startMonth < 10 ? $startMonth = "0".$startMonth : $startMonth;
|
|
|
|
my $endMonth = $cgiparams{'STOPMONTH'}+1;
|
|
$endMonth = $endMonth < 10 ? $endMonth = "0".$endMonth : $endMonth;
|
|
|
|
my $startDay = $cgiparams{'STARTDAY'};
|
|
$startDay = $startDay < 10 ? $startDay = "0".$startDay : $startDay;
|
|
|
|
my $endDay = $cgiparams{'STOPDAY'}+1;
|
|
$endDay = $endDay < 10 ? $endDay = "0".$endDay : $endDay;
|
|
|
|
my $displayMode = "daily_multi";
|
|
my $start = $startyear.$startMonth.$startDay;
|
|
my $end = $stopyear.$endMonth.$endDay;
|
|
|
|
my %allDaysBytes = ();
|
|
my @allDays = &Traffic::calcTraffic(\%allDaysBytes,$start,$end, $displayMode);
|
|
|
|
|
|
foreach (@allDays) {
|
|
$total_green_in += $allDaysBytes{$_}{${Traffic::green_in}};
|
|
$total_green_out += $allDaysBytes{$_}{${Traffic::green_out}};
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(3|4)$/)
|
|
{
|
|
$total_blue_in += $allDaysBytes{$_}{${Traffic::blue_in}};
|
|
$total_blue_out += $allDaysBytes{$_}{${Traffic::blue_out}};
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(2|4)$/)
|
|
{
|
|
$total_orange_in += $allDaysBytes{$_}{${Traffic::orange_in}};
|
|
$total_orange_out += $allDaysBytes{$_}{${Traffic::orange_out}};
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/)
|
|
{
|
|
$total_red_in += $allDaysBytes{$_}{${Traffic::red_in}};
|
|
$total_red_out += $allDaysBytes{$_}{${Traffic::red_out}};
|
|
}
|
|
|
|
if ($lines % 2) {
|
|
print "<tr bgcolor='$color{'color20'}'>"; }
|
|
else {
|
|
print "<tr bgcolor='$color{'color22'}'>"; }
|
|
|
|
printf "<td align='center' nowrap='nowrap'>%s</td>\n", $allDaysBytes{$_}{'Day'};
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::green_in}}/1048576);
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::green_out}}/1048576);
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(3|4)$/)
|
|
{
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::blue_in}}/1048576);
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::blue_out}}/1048576);
|
|
}
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(2|4)$/)
|
|
{
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::orange_in}}/1048576);
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::orange_out}}/1048576);
|
|
}
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/)
|
|
{
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td>\n", ($allDaysBytes{$_}{${Traffic::red_in}}/1048576);
|
|
printf "<td align='center' nowrap='nowrap'>%.3f</td></tr>\n", ($allDaysBytes{$_}{${Traffic::red_out}}/1048576);
|
|
}
|
|
$lines++;
|
|
}
|
|
|
|
$total_green_in=sprintf("%.2f", ($total_green_in/1048576));
|
|
$total_green_out=sprintf("%.2f", ($total_green_out/1048576));
|
|
$total_blue_in=sprintf("%.2f", ($total_blue_in/1048576));
|
|
$total_blue_out=sprintf("%.2f", ($total_blue_out/1048576));
|
|
$total_orange_in=sprintf("%.2f", ($total_orange_in/1048576));
|
|
$total_orange_out=sprintf("%.2f", ($total_orange_out/1048576));
|
|
$total_red_in=sprintf("%.2f", ($total_red_in/1048576));
|
|
$total_red_out=sprintf("%.2f", ($total_red_out/1048576));
|
|
|
|
if ($lines % 2) {print "<tr bgcolor='$color{'color20'}'>"; }
|
|
else {print "<tr bgcolor='$color{'color22'}'>"; }
|
|
|
|
print <<END;
|
|
<td align='center' class='boldbase' height='20' nowrap='nowrap'><b>$Lang::tr{'trafficsum'}</b></td>
|
|
<td align='center' class='boldbase' nowrap='nowrap'><b>$total_green_in MB</b></td>
|
|
<td align='center' class='boldbase' nowrap='nowrap'><b>$total_green_out MB</b></td>
|
|
END
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(3|4)$/)
|
|
{
|
|
print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_blue_in MB</b></td>";
|
|
print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_blue_out MB</b></td>";
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(2|4)$/)
|
|
{
|
|
print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_orange_in MB</b></td>";
|
|
print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_orange_out MB</b></td>";
|
|
}
|
|
|
|
if ($netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/)
|
|
{
|
|
print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_red_in MB</b></td>";
|
|
print "<td align='center' class='boldbase' nowrap='nowrap'><b>$total_red_out MB</b></td>";
|
|
}
|
|
print "</tr></table>";
|
|
|
|
&Header::closebox();
|
|
&Header::closebigbox();
|
|
&Header::closepage();
|