mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
Squid-accounting: new addon for measuring proxy traffic per user/ip
This commit is contained in:
13
config/rootfiles/packages/squid-accounting
Normal file
13
config/rootfiles/packages/squid-accounting
Normal file
@@ -0,0 +1,13 @@
|
||||
etc/fcron.hourly/squid-accounting
|
||||
var/log/accounting.log
|
||||
srv/web/ipfire/cgi-bin/accounting.cgi
|
||||
srv/web/ipfire/html/accounting/logo
|
||||
usr/local/bin/acct.pl
|
||||
var/ipfire/accounting
|
||||
var/ipfire/accounting/dbinstall.pl
|
||||
var/ipfire/accounting/bill
|
||||
var/ipfire/accounting/acct-lib.pl
|
||||
var/ipfire/addon-lang/acct.de.pl
|
||||
var/ipfire/addon-lang/acct.en.pl
|
||||
var/ipfire/menu.d/EX-squid-accounting.menu
|
||||
var/ipfire/backup/addons/includes/squid-accounting
|
||||
72
lfs/squid-accounting
Normal file
72
lfs/squid-accounting
Normal file
@@ -0,0 +1,72 @@
|
||||
###############################################################################
|
||||
# IPFire.org - An Open Source Firewall Solution #
|
||||
# Copyright (C) - IPFire Development Team <info@ipfire.org> #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 1.0.1
|
||||
|
||||
THISAPP = squid-accounting-$(VER)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
PROG = squid-accounting
|
||||
PAK_VER = 2
|
||||
|
||||
DEPS = "perl-DBI perl-DBD-SQLite perl-File-ReadBackwards perl-PDF-API2 sendEmail"
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check :
|
||||
|
||||
download :
|
||||
|
||||
md5 :
|
||||
|
||||
dist:
|
||||
@$(PAK)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && mkdir $(DIR_APP) && cp -R $(DIR_SRC)/src/squid-accounting/ $(DIR_APP)
|
||||
cd $(DIR_APP)
|
||||
mkdir -p /var/ipfire/accounting/bill
|
||||
mkdir -p /srv/web/ipfire/html/accounting/logo
|
||||
chmod -R 777 /srv/web/ipfire/html/accounting
|
||||
|
||||
#Touch Logfile
|
||||
touch /var/log/accounting.log
|
||||
chmod 777 /var/log/accounting.log
|
||||
#Set permissions for logo and graphs
|
||||
chmod -R 777 /srv/web/ipfire/html/accounting
|
||||
|
||||
|
||||
install -v -m 755 $(DIR_APP)/squid-accounting/accounting.cgi /srv/web/ipfire/cgi-bin/
|
||||
install -v -m 755 $(DIR_APP)/squid-accounting/acct.pl /usr/local/bin/
|
||||
install -v -m 755 $(DIR_APP)/squid-accounting/acct-lib.pl /var/ipfire/accounting/
|
||||
install -v -m 655 $(DIR_APP)/squid-accounting/acct.de.pl /var/ipfire/addon-lang/
|
||||
install -v -m 655 $(DIR_APP)/squid-accounting/acct.en.pl /var/ipfire/addon-lang/
|
||||
install -v -m 655 $(DIR_APP)/squid-accounting/EX-squid-accounting.menu /var/ipfire/menu.d/
|
||||
install -v -m 755 $(DIR_APP)/squid-accounting/dbinstall.pl /var/ipfire/accounting/
|
||||
install -v -m 644 $(DIR_APP)/squid-accounting/config/backup/includes/squid-accounting \
|
||||
/var/ipfire/backup/addons/includes/squid-accounting
|
||||
|
||||
#activate hourly logging of proxy logfile
|
||||
ln -sf /usr/local/bin/acct.pl /etc/fcron.hourly/squid-accounting
|
||||
|
||||
chown -R nobody.nobody /var/ipfire/accounting
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
|
||||
2
make.sh
2
make.sh
@@ -810,6 +810,8 @@ buildipfire() {
|
||||
ipfiremake sslscan
|
||||
ipfiremake owncloud
|
||||
ipfiremake bacula
|
||||
ipfiremake perl-PDF-API2
|
||||
ipfiremake squid-accounting
|
||||
}
|
||||
|
||||
buildinstaller() {
|
||||
|
||||
34
src/paks/squid-accounting/install.sh
Normal file
34
src/paks/squid-accounting/install.sh
Normal file
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2009 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
extract_files
|
||||
restore_backup ${NAME}
|
||||
|
||||
#Generate SQLite DB if it does not exist
|
||||
if [ ! -f /var/ipfire/accounting/acct.db ]; then
|
||||
perl /var/ipfire/accounting/dbinstall.pl
|
||||
chmod 777 /var/ipfire/accounting/acct.db
|
||||
fi
|
||||
rm -f /var/ipfire/accounting/dbinstall.pl
|
||||
/usr/local/bin/update-lang-cache
|
||||
26
src/paks/squid-accounting/uninstall.sh
Normal file
26
src/paks/squid-accounting/uninstall.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2014 IPFire-Team <alexander.marx@ipfire.org> #
|
||||
# #
|
||||
############################################################################
|
||||
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
make_backup ${NAME}
|
||||
remove_files
|
||||
26
src/paks/squid-accounting/update.sh
Normal file
26
src/paks/squid-accounting/update.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire 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 2 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire 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 IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
./uninstall.sh
|
||||
./install.sh
|
||||
5
src/squid-accounting/EX-squid-accounting.menu
Executable file
5
src/squid-accounting/EX-squid-accounting.menu
Executable file
@@ -0,0 +1,5 @@
|
||||
$sublogs->{'32.proxy'} = {'caption' => $Lang::tr{'acct menu'},
|
||||
'uri' => '/cgi-bin/accounting.cgi',
|
||||
'title' => $Lang::tr{'acct menu'},
|
||||
'enabled' => 1,
|
||||
};
|
||||
2193
src/squid-accounting/accounting.cgi
Executable file
2193
src/squid-accounting/accounting.cgi
Executable file
File diff suppressed because it is too large
Load Diff
919
src/squid-accounting/acct-lib.pl
Executable file
919
src/squid-accounting/acct-lib.pl
Executable file
@@ -0,0 +1,919 @@
|
||||
#!/usr/bin/perl
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2014 IPFire Team <alexander.marx@ipfire.org> #
|
||||
# #
|
||||
# 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 <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
package ACCT;
|
||||
|
||||
use DBI;
|
||||
use POSIX;
|
||||
use Time::Local;
|
||||
use PDF::API2;
|
||||
use utf8;
|
||||
use Encode;
|
||||
use File::Copy;
|
||||
|
||||
###############################################################################
|
||||
my $dbh;
|
||||
my $dsn="dbi:SQLite:dbname=/var/ipfire/accounting/acct.db";
|
||||
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$ydat,$isdst)=localtime();
|
||||
my %mainsettings;
|
||||
###############################################################################
|
||||
|
||||
&General::readhash("/var/ipfire/main/settings", \%mainsettings);
|
||||
my $uplang=uc($mainsettings{'LANGUAGE'});
|
||||
|
||||
#############
|
||||
# Functions #
|
||||
#############
|
||||
|
||||
sub connectdb {
|
||||
$dbh = DBI->connect($dsn, "", "",{RaiseError => 1, AutoCommit => 1})or die "ERROR $!";
|
||||
return $dbh;
|
||||
}
|
||||
|
||||
sub closedb {
|
||||
$dbh->disconnect();
|
||||
return $dbh;
|
||||
}
|
||||
|
||||
sub getminmax {
|
||||
my $min;
|
||||
my $max;
|
||||
$dbh=&connectdb;
|
||||
my $sth = $dbh->prepare('Select min(TIME_RUN),max(TIME_RUN) from ACCT;');
|
||||
$sth->execute;
|
||||
while ( my @row = $sth->fetchrow_array ) {
|
||||
$min=$row[0];
|
||||
$max=$row[1];
|
||||
}
|
||||
$dbh->disconnect();
|
||||
return ($min,$max);
|
||||
}
|
||||
|
||||
sub cleardbtraf {
|
||||
&connectdb;
|
||||
$dbh->do("DELETE FROM ACCT;");
|
||||
$dbh->do("DELETE FROM ACCT_HIST;");
|
||||
&closedb;
|
||||
}
|
||||
|
||||
sub cleardb {
|
||||
&connectdb;
|
||||
$dbh->do("DELETE FROM ACCT;");
|
||||
$dbh->do("DELETE FROM ACCT_HIST;");
|
||||
$dbh->do("DELETE FROM ACCT_ADDR ");
|
||||
$dbh->do("DELETE FROM BILLINGGRP");
|
||||
$dbh->do("DELETE FROM BILLINGHOST");
|
||||
&closedb;
|
||||
}
|
||||
|
||||
sub delbefore {
|
||||
my $till=$_[0];
|
||||
&connectdb;
|
||||
$dbh->do("DELETE FROM ACCT WHERE TIME_RUN < ".$till.";");
|
||||
$dbh->do("DELETE FROM ACCT_HIST WHERE TIME_RUN < date('".$till."','unixepoch');");
|
||||
&closedb;
|
||||
}
|
||||
|
||||
sub movedbdata {
|
||||
$dbh->do("insert into ACCT_HIST select datetime(TIME_RUN,'unixepoch'),NAME,SUM(BYTES) from ACCT where date(TIME_RUN,'unixepoch') < date('now','-2 months') group by NAME,date(TIME_RUN,'unixepoch');");
|
||||
$dbh->do("DELETE FROM ACCT WHERE datetime(TIME_RUN,'unixepoch') < date('now','-2 months');");
|
||||
}
|
||||
|
||||
sub gethourgraphdata {
|
||||
my $table=$_[0];
|
||||
my $from=$_[1];
|
||||
my $till=$_[2];
|
||||
my $name=$_[3];
|
||||
my $res;
|
||||
$dbh=connectdb;
|
||||
if ($table eq 'ACCT'){
|
||||
$res = $dbh->selectall_arrayref( "SELECT TIME_RUN,BYTES FROM ACCT WHERE TIME_RUN BETWEEN ".$from." AND ".$till." AND NAME = '".$name."';");
|
||||
}else{
|
||||
$res = $dbh->selectall_arrayref( "SELECT TIME_RUN,BYTES FROM ACCT_HIST WHERE TIME_RUN BETWEEN date(".$from.",'unixepoch') AND date(".$till.",'unixepoch') AND NAME = '".$name."';");
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub getmonthgraphdata {
|
||||
my $table=$_[0];
|
||||
my $from=$_[1];
|
||||
my $till=$_[2];
|
||||
my $name=$_[3];
|
||||
my $res;
|
||||
$dbh=connectdb;
|
||||
if ($table eq 'ACCT'){
|
||||
$res = $dbh->selectall_arrayref( "SELECT strftime('%d.%m.%Y',xx.tag),(SELECT SUM(BYTES)/1024/1024 FROM ACCT WHERE date(TIME_RUN,'unixepoch') <= xx.tag and NAME = '".$name."') kum_bytes FROM (SELECT date(TIME_RUN,'unixepoch') tag,SUM(BYTES)/1024/1024 sbytes FROM ACCT WHERE NAME='".$name."' and TIME_RUN between ".$from." and ".$till." GROUP by date(TIME_RUN,'unixepoch')) xx;");
|
||||
}else{
|
||||
$res = $dbh->selectall_arrayref( "SELECT TIME_RUN, (SELECT SUM(BYTES)/1024/1024 FROM ACCT_HIST WHERE TIME_RUN <= ah.TIME_RUN and NAME = '".$name."') kum_bytes FROM ACCT_HIST ah WHERE TIME_RUN BETWEEN date(".$from.",'unixepoch') AND date(".$till.",'unixepoch') AND NAME = '".$name."' group by TIME_RUN;");
|
||||
}
|
||||
$dbh=closedb;
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub writeaddr {
|
||||
my $comp = $_[0];
|
||||
my $type = $_[1];
|
||||
my $name1 = $_[2];
|
||||
my $str = $_[3];
|
||||
my $nr = $_[4];
|
||||
my $post = $_[5];
|
||||
my $city = $_[6];
|
||||
my $bank = $_[7];
|
||||
my $iban = $_[8];
|
||||
my $bic = $_[9];
|
||||
my $blz = $_[10];
|
||||
my $kto = $_[11];
|
||||
my $mail = $_[12];
|
||||
my $inet = $_[13];
|
||||
my $hrb = $_[14];
|
||||
my $ustid = $_[15];
|
||||
my $tel = $_[16];
|
||||
my $fax = $_[17];
|
||||
$dbh=&connectdb;
|
||||
#COMPANY,TYPE,NAME1,STR,NR,POSTCODE,CITY,BANK,IBAN,BLZ,ACCOUNT,EMAIL,INTERNET,HRB,USTID,TEL,FAX
|
||||
my $sql = "INSERT INTO ACCT_ADDR (COMPANY,TYPE,NAME1,STR,NR,POSTCODE,CITY,BANK,IBAN,BIC,BLZ,ACCOUNT,EMAIL,INTERNET,HRB,USTID,TEL,FAX) VALUES ( ?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
|
||||
my $sth = $dbh->prepare( $sql );
|
||||
$sth->execute( $comp,$type,$name1,$str,$nr,$post,$city,$bank,$iban,$bic,$blz,$kto,$mail,$inet,$hrb,$ustid,$tel,$fax );
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub updateaddr {
|
||||
my $type = $_[0];
|
||||
my $comp = $_[1];
|
||||
my $name1 = $_[2];
|
||||
my $str = $_[3];
|
||||
my $nr = $_[4];
|
||||
my $post = $_[5];
|
||||
my $city = $_[6];
|
||||
my $bank = $_[7];
|
||||
my $iban = $_[8];
|
||||
my $bic = $_[9];
|
||||
my $blz = $_[10];
|
||||
my $kto = $_[11];
|
||||
my $mail = $_[12];
|
||||
my $inet = $_[13];
|
||||
my $hrb = $_[14];
|
||||
my $ustid = $_[15];
|
||||
my $tel = $_[16];
|
||||
my $fax = $_[17];
|
||||
my $oldname = $_[18];
|
||||
$dbh=&connectdb;
|
||||
$dbh->do("UPDATE ACCT_ADDR SET COMPANY=?,TYPE=?,NAME1=?,STR=?,NR=?,POSTCODE=?,CITY=?,BANK=?,IBAN=?,BIC=?,BLZ=?,ACCOUNT=?,EMAIL=?,INTERNET=?,HRB=?,USTID=?,TEL=?,FAX=? WHERE COMPANY=?", undef,$comp,$type,$name1,$str,$nr,$post,$city,$bank,$iban,$bic,$blz,$kto,$mail,$inet,$hrb,$ustid,$tel,$fax,$oldname)or die "Could not UPDATE Address.";
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub deladdr {
|
||||
my $comp = $_[0];
|
||||
$dbh=&connectdb;
|
||||
$dbh->do("DELETE FROM ACCT_ADDR WHERE COMPANY=?", undef,$comp )or die "Could not delete address $comp!";
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub getaddresses {
|
||||
$dbh=&connectdb;
|
||||
my $res=$dbh->selectall_arrayref("SELECT (SELECT COUNT(NAME) FROM BILLINGGRP GROUP BY NAME),* FROM ACCT_ADDR ORDER BY COMPANY;");
|
||||
$dbh=&closedb;
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub gethosts{
|
||||
$dbh=&connectdb;
|
||||
my $res =$dbh->selectall_arrayref("SELECT NAME from ACCT GROUP BY NAME ORDER BY NAME;");
|
||||
$dbh=&closedb;
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub getbillgroups {
|
||||
$dbh=connectdb;
|
||||
my $res=$dbh->selectall_arrayref("SELECT NAME,HOST,CUST,BILLTEXT,(SELECT COUNT(HOST) FROM BILLINGHOST WHERE BILLINGGRP.NAME=BILLINGHOST.GRP),CENT FROM BILLINGGRP ORDER BY NAME;");
|
||||
return $res;
|
||||
$dbh->disconnect();
|
||||
}
|
||||
|
||||
sub getextrabillpos {
|
||||
my $grp=$_[0];
|
||||
$dbh=&connectdb;
|
||||
my $res=$dbh->selectall_arrayref("SELECT * from BILLPOS WHERE GRP =?", undef,$grp);
|
||||
$dbh=&closedb;
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub savebillgroup {
|
||||
my $grp=$_[0];
|
||||
my $txt=$_[1];
|
||||
my $host=$_[2];
|
||||
my $cust=$_[3];
|
||||
my $ust=$_[4];
|
||||
my @ips=@{$_[5]};
|
||||
$dbh=&connectdb;
|
||||
my $sql = "INSERT INTO BILLINGGRP (NAME,BILLTEXT,HOST,CUST,CENT) VALUES (?,?,?,?,?)";
|
||||
my $sth = $dbh->prepare( $sql );
|
||||
$sth->execute( $grp,$txt,$host,$cust,$ust );
|
||||
foreach my $ip (@ips){
|
||||
my $sql = "INSERT INTO BILLINGHOST (GRP,HOST) VALUES (?,?)";
|
||||
my $sth = $dbh->prepare( $sql ) or die "Could not prepare insert into BILLINGHOST $!";
|
||||
$sth->execute( $grp,$ip ) or die "Could not execute INSERT into BILLINGHOST $!";
|
||||
}
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub updatebillgrouphost {
|
||||
my $oldgrp=$_[0];
|
||||
my $newgrp=$_[1];
|
||||
$dbh=&connectdb;
|
||||
my $sql = "UPDATE BILLINGGRP SET HOST=? WHERE HOST=?;";
|
||||
my $sth = $dbh->prepare( $sql );
|
||||
$sth->execute( $newgrp,$oldgrp );
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub updatebillgroupcust {
|
||||
my $oldgrp=$_[0];
|
||||
my $newgrp=$_[1];
|
||||
$dbh=&connectdb;
|
||||
my $sql = "UPDATE BILLINGGRP SET CUST=? WHERE CUST=?;";
|
||||
my $sth = $dbh->prepare( $sql );
|
||||
$sth->execute( $newgrp,$oldgrp );
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub deletebillgroup {
|
||||
my $name=shift;
|
||||
$dbh=connectdb;
|
||||
$dbh->do("DELETE FROM BILLINGGRP WHERE NAME=?;", undef,$name);
|
||||
$dbh->do("DELETE FROM BILLINGHOST WHERE GRP=?;", undef,$name);
|
||||
&closedb;
|
||||
}
|
||||
|
||||
sub savebillpos {
|
||||
my $grp=$_[0];
|
||||
my $amnt=$_[1];
|
||||
my $pos=$_[2];
|
||||
my $price=$_[3];
|
||||
$dbh=&connectdb;
|
||||
my $sql = "INSERT INTO BILLPOS (GRP,AMOUNT,POS,PRICE) VALUES (?,?,?,?)";
|
||||
my $sth = $dbh->prepare( $sql )or die "Could not prepare insert into BILLINGPOS $!";
|
||||
$sth->execute( $grp,$amnt,$pos,$price ) or die "Could not execute INSERT into BILLINGHOST $!";
|
||||
$dbh->disconnect();
|
||||
}
|
||||
|
||||
sub updatebillpos {
|
||||
my $oldgrp=shift;
|
||||
my $newgrp=shift;
|
||||
$dbh=&connectdb;
|
||||
my $sql = "UPDATE BILLPOS SET GRP=? WHERE GRP=?;";
|
||||
my $sth = $dbh->prepare( $sql );
|
||||
$sth->execute( $newgrp,$oldgrp );
|
||||
my $sql1 = "UPDATE BILLS SET GRP=? WHERE GRP=?;";
|
||||
my $sth1 = $dbh->prepare( $sql1 );
|
||||
$sth1->execute( $newgrp,$oldgrp );
|
||||
$dbh=&closedb;
|
||||
#Now rename directories
|
||||
rename ("/srv/web/ipfire/html/accounting/logo/$oldgrp","/srv/web/ipfire/html/accounting/logo/$newgrp");
|
||||
rename ("/var/ipfire/accounting/bill/$oldgrp","/var/ipfire/accounting/bill/$newgrp")
|
||||
|
||||
}
|
||||
|
||||
sub delbillpos_single {
|
||||
my $pos=$_[0];
|
||||
my $grp=$_[1];
|
||||
my $sql = "DELETE FROM BILLPOS WHERE GRP=? AND POS=?;";
|
||||
$dbh=&connectdb;
|
||||
my $sth = $dbh->prepare( $sql )or die "Could not prepare DELETE POS from BILLINGPOS $!";
|
||||
$sth->execute( $grp,$pos ) or die "Could not execute DELETE from BILLINGHOST $!";
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub delbillpos {
|
||||
my $grp=$_[0];
|
||||
my $sql = "DELETE FROM BILLPOS WHERE GRP=?;";
|
||||
$dbh=&connectdb;
|
||||
my $sth = $dbh->prepare( $sql )or die "Could not prepare DELETE POS from BILLINGPOS $!";
|
||||
$sth->execute( $grp ) or die "Could not execute DELETE from BILLINGHOST $!";
|
||||
$dbh=&closedb;
|
||||
}
|
||||
|
||||
sub listhosts{
|
||||
my $name=$_[0];
|
||||
my $a;
|
||||
my $res=$dbh->selectall_arrayref("SELECT * FROM BILLINGHOST WHERE GRP='".$name."';");
|
||||
foreach my $gzu (@$res){
|
||||
my ($x,$y)=@$gzu;
|
||||
$a.= "|$y";
|
||||
}
|
||||
return $a;
|
||||
}
|
||||
|
||||
sub checkusergrp {
|
||||
$dbh=connectdb;
|
||||
my $res=$dbh->selectall_arrayref("SELECT * FROM BILLINGHOST;");
|
||||
$dbh->disconnect();
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub getmonth{
|
||||
#GET : 1. month 2. year
|
||||
#GIVES: 1.day of given month AND last day of given month in seconds since 1.1.1970
|
||||
($sec,$min,$hour,$mday,$mon,$year,$wday,$ydat,$isdst)=localtime();
|
||||
my $jahr=$_[1];
|
||||
my $monat=$_[0]-1 if($_[0]);
|
||||
my $tag=1;
|
||||
my $time1=timelocal(0,0,0,$tag,$monat,$jahr);
|
||||
my $time2=timelocal(0,0,0,$tag,($monat+1),$jahr);
|
||||
--$time2;
|
||||
return ($time1,$time2);
|
||||
}
|
||||
|
||||
sub GetTaValues {
|
||||
$dbh=&connectdb;
|
||||
my $from = $_[0]; #unixtimestamp
|
||||
my $till = $_[1]; #unixtimestamp
|
||||
my $grp = $_[2]; #Billgroupname
|
||||
my $all = $dbh->selectall_arrayref("SELECT bh.HOST,SUM(ac.BYTES) sbytes,bh.GRP FROM ACCT ac ,BILLINGHOST bh WHERE ac.NAME=bh.HOST AND bh.GRP=? AND ac.TIME_RUN between ? AND ? GROUP BY bh.GRP,bh.HOST;", undef, $grp, $from, $till) or die "Could not fetch Groupdata $!";
|
||||
my $nri1 = @$all;
|
||||
my @return;
|
||||
my $cnt=0;
|
||||
if ($nri1 eq "0"){
|
||||
$return[$cnt]="999";
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach my $row (@$all){
|
||||
my ($bytes,$billgrp,$host) = @$row;
|
||||
$return[$cnt]="$bytes,$billgrp,$host";
|
||||
$cnt++;
|
||||
}
|
||||
}
|
||||
&closedb;
|
||||
return @return;
|
||||
}
|
||||
|
||||
sub getTaAddress {
|
||||
my $grp=$_[0];
|
||||
my $type=$_[1];
|
||||
$dbh=&connectdb;
|
||||
my $res = $dbh->selectall_arrayref("select * from ACCT_ADDR,BILLINGGRP where (BILLINGGRP.HOST=ACCT_ADDR.COMPANY AND BILLINGGRP.NAME=? AND ACCT_ADDR.TYPE=?) or (BILLINGGRP.CUST=ACCT_ADDR.COMPANY and BILLINGGRP.NAME=? AND ACCT_ADDR.TYPE=?);", undef, $grp,$type,$grp,$type);
|
||||
&closedb;
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub checkbillgrp {
|
||||
my $comp=$_[0];
|
||||
$dbh=&connectdb;
|
||||
my $res=$dbh->selectall_arrayref("SELECT NAME,HOST,CUST FROM BILLINGGRP;");
|
||||
&closedb;
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub pdf2 {
|
||||
my @billar = @{$_[0]}; #DATA from sendbill (just host/values)
|
||||
my $month = $_[1];
|
||||
$month = '0'.$month if $month < 10;
|
||||
my $year = $_[2];
|
||||
my $mwst = $_[3];
|
||||
my @address_cust= @{$_[4]}; #Array which contains customer and hoster adresses and some additional info from billgroup
|
||||
my @address_host= @{$_[5]};
|
||||
my @billpos = @{$_[6]};
|
||||
my $grp = $_[7];
|
||||
my $cur = $_[8]; #(Eur,USD,...)
|
||||
my $preview = $_[9];
|
||||
my $no = &getBillNr;
|
||||
my $name = $month."-".$year."-".$no.".pdf";
|
||||
my $path ="/var/ipfire/accounting/bill/";
|
||||
my $filename = "$path/$grp/$name";
|
||||
my @summen; #Used for counting the sums
|
||||
my $x = 500;
|
||||
my $y = 1;
|
||||
my $zwsum;
|
||||
my $pages = 0;
|
||||
my $anzbillpos = @billpos;
|
||||
my $anz = (@billar+$anzbillpos)/18; #Total pages
|
||||
$anz = ceil($anz); #round the $anz value
|
||||
my $aktpage=1;
|
||||
my $sum=0;
|
||||
my $sum1=0;
|
||||
my $lines;
|
||||
my $title;
|
||||
my $txt;
|
||||
my $txt1;
|
||||
my $txt2;
|
||||
my $txt3;
|
||||
my $txt4;
|
||||
my $txt5;
|
||||
my $fnt;
|
||||
my $fnt1;
|
||||
my $fulldate = strftime('%d.%m.%Y',localtime(time()));
|
||||
my($company_host,$type_host,$name1_host,$str_host,$str_nr_host,$plz_host,$city_host,$bank,$iban,$bic,$blz,$kto,$email,$internet,$hrb,$stnr,$tel_host,$fax_host,$ccmail,$billgrp,$text,$host,$cust,$cent);
|
||||
my($company_cust,$type_cust,$name1_cust,$str_cust,$str_nr_cust,$plz_cust,$city_cust);
|
||||
|
||||
#First of all check if directory exists, else create it
|
||||
if(! -d "$path/$grp" && $preview ne 'on'){
|
||||
mkdir("$path/$grp",0777);
|
||||
}
|
||||
|
||||
#Check if we are creating a preview or a real bill
|
||||
if($preview eq 'on'){
|
||||
$filename="$path/tmp.pdf";
|
||||
}
|
||||
####################################################################
|
||||
#Prepare DATA from arrays
|
||||
####################################################################
|
||||
#Get HOSTER for this grp
|
||||
foreach my $addrline (@address_host){
|
||||
($company_host,$type_host,$name1_host,$str_host,$str_nr_host,$plz_host,$city_host,$bank,$iban,$bic,$blz,$kto,$email,$internet,$hrb,$stnr,$tel_host,$fax_host,$ccmail,$billgrp,$text,$host,$cust,$cent)=@$addrline;
|
||||
}
|
||||
#Get CUST for this grp
|
||||
foreach my $addrline_cust (@address_cust){
|
||||
($company_cust,$type_cust,$name1_cust,$str_cust,$str_nr_cust,$plz_cust,$city_cust)=@$addrline_cust;
|
||||
}
|
||||
|
||||
|
||||
#Generate PDF File
|
||||
my $pdf = PDF::API2->new(-file => $filename);
|
||||
$pdf->mediabox('A4');
|
||||
my $page = $pdf->page;
|
||||
$fnt = $pdf->corefont('Helvetica');
|
||||
$fnt1 = $pdf->corefont('HelveticaBold');
|
||||
|
||||
#Set lines
|
||||
$lines = $page->gfx;
|
||||
$title = $page->gfx;
|
||||
$lines->strokecolor('grey');
|
||||
$lines->linewidth('0.5');
|
||||
|
||||
#Fill BILL DATA into PDF
|
||||
setlocale(LC_ALL, "$mainsettings{'LANGUAGE'}_$uplang");
|
||||
foreach (@billar) {
|
||||
my ($a1,$a2) = split( /\,/, $_ );
|
||||
$a2=sprintf"%.2f",($a2/1024/1024);
|
||||
my $sum=(($a2)*$cent);
|
||||
$sum = sprintf"%.2f",($sum);
|
||||
# Seitenwechsel ermitteln
|
||||
if ($y % 18 == 0) {
|
||||
$txt1->translate(390, 120);
|
||||
$txt1->text($Lang::tr{'acct pdf zwsum'}); #Pos
|
||||
$zwsum=sprintf("%.2f",($zwsum));
|
||||
$txt1->translate(540, 120);
|
||||
$txt1->text_right("$zwsum".decode('utf8',$cur)); #Pos
|
||||
$zwsum=0;
|
||||
$pages++;
|
||||
$aktpage++;
|
||||
$x=500;
|
||||
$page=$pdf->page;
|
||||
#draw lines
|
||||
$lines = $page->gfx;
|
||||
$title = $page->gfx;
|
||||
$lines->strokecolor('grey');
|
||||
$lines->linewidth('0.5');
|
||||
}
|
||||
|
||||
#TITLES
|
||||
$title->linewidth(14);
|
||||
$title->move(385, 168);
|
||||
$title->line(545, 168); #Title of SUMBOX
|
||||
$title->move(60, 523);
|
||||
$title->line(545, 523);#Bottom horiz. line of Title
|
||||
|
||||
# Generate Tables
|
||||
$lines->move(59, 745);
|
||||
$lines->line(545, 745);
|
||||
$lines->move(59, 563);
|
||||
$lines->line(545, 563);
|
||||
|
||||
# Addressbox
|
||||
$lines->move(61, 710);
|
||||
$lines->line(61, 715, 66, 715); #TL
|
||||
$lines->move(61, 610);
|
||||
$lines->line(61, 605, 66, 605); #BL
|
||||
$lines->move(285, 715);
|
||||
$lines->line(290, 715, 290, 710); #TR
|
||||
$lines->move(290, 610);
|
||||
$lines->line(290, 605, 285, 605); #BR
|
||||
|
||||
# Table for positions
|
||||
$lines->move(60, 530);
|
||||
$lines->line(60, 200); #First vert. line POS
|
||||
$lines->move(90, 523);
|
||||
$lines->line(90, 200); #Second vert. line
|
||||
$lines->move(280, 523);
|
||||
$lines->line(280, 200); #third vert. line
|
||||
$lines->move(385, 523);
|
||||
$lines->line(385, 200); #third vert. line
|
||||
$lines->move(430, 523);
|
||||
$lines->line(430, 200); #fourth vert. line
|
||||
$lines->move(545, 530);
|
||||
$lines->line(545, 200); #fifth vert. line
|
||||
$lines->move(60, 200);
|
||||
$lines->line(545, 200); #Bottom horizontal line
|
||||
|
||||
#SUM BOX
|
||||
$lines->move(385, 175);
|
||||
$lines->line(385, 115); #Left vert. line of SUMBOX
|
||||
$lines->move(545, 175);
|
||||
$lines->line(545, 115); #Right vert. line of SUMBOX
|
||||
$lines->move(385, 115);
|
||||
$lines->line(545, 115); #Bottom horiz. line of SUMBOX
|
||||
|
||||
#Lines on right side after sender and after "bank"
|
||||
$lines->move(420, 723);
|
||||
$lines->line(545, 723);# Line "Sender"
|
||||
$lines->move(420, 648);
|
||||
$lines->line(545, 648);# Line "Bank"
|
||||
$lines->move(420, 600);
|
||||
$lines->line(545, 600);# Line HRB/USTID
|
||||
|
||||
#Make lines Visible
|
||||
$lines->stroke;
|
||||
$title->stroke;
|
||||
if (-f "/srv/web/ipfire/html/accounting/logo/$grp/logo.png"){
|
||||
#Image LOGO
|
||||
my $gfx = $page->gfx;
|
||||
my $image = $pdf->image_png("/srv/web/ipfire/html/accounting/logo/$grp/logo.png");
|
||||
my $width= $image->width;
|
||||
my $height= $image->height;
|
||||
$gfx->image($image, (545+($width/2))-$width, 750,0.5);
|
||||
}
|
||||
|
||||
#Set Fonts
|
||||
$txt = $page->text;
|
||||
$txt1 = $page->text;
|
||||
$txt2 = $page->text;
|
||||
$txt3 = $page->text;
|
||||
$txt4 = $page->text;
|
||||
$txt5 = $page->text;
|
||||
$txt->textstart; #Begin Text
|
||||
$txt->font($fnt, 10); #Set fontsize for font1
|
||||
$txt1->font($fnt, 8); #Set fontsize for font2
|
||||
$txt2->font($fnt1, 10); #Set fontsize for font3
|
||||
$txt3->font($fnt1, 16); #Set fontsize for font4
|
||||
$txt4->font($fnt, 6); #Set fontsize for font5
|
||||
$txt5->font($fnt1, 6); #Set fontsize for font6
|
||||
|
||||
#if $cent not set, set it to 0.5
|
||||
if(!$cent){$cent='0.005';}
|
||||
|
||||
#if MWst not set, set it to 19%
|
||||
if(!$mwst){$mwst='19';}
|
||||
|
||||
# Titles
|
||||
$txt1->translate(65,520);
|
||||
$txt1->text($Lang::tr{'acct pos'}); #Pos
|
||||
$txt1->translate(95, 520);
|
||||
$txt1->text($Lang::tr{'acct name'}); #Host/Name
|
||||
$txt1->translate(285, 520);
|
||||
$txt1->text($Lang::tr{'acct amount'}); #Traffic
|
||||
$txt1->translate(390, 520);
|
||||
$txt1->text($Lang::tr{'acct cent1'}); #Price /MB
|
||||
$txt1->translate(435, 520);
|
||||
$txt1->text($Lang::tr{'acct pdf price'}); #Sum
|
||||
|
||||
####################################################################
|
||||
#Fill Recipient address
|
||||
my $rec_name= "$company_cust";
|
||||
my $rec_name1="$name1_cust";
|
||||
my $rec_str = "$str_cust $str_nr_cust";
|
||||
my $rec_city = "$plz_cust $city_cust";
|
||||
#INSERT RECIPIENT
|
||||
my $o=675;
|
||||
$txt2->translate(78, 685);
|
||||
$txt2->text(decode('utf8',$rec_name));
|
||||
if($rec_name1){
|
||||
$txt1->translate(78, $o);
|
||||
$txt1->text(decode('utf8',$rec_name1));
|
||||
$o=$o-15;
|
||||
}else{
|
||||
$o=$o-15;
|
||||
}
|
||||
$txt1->translate(78, $o);
|
||||
$txt1->text(decode('utf8',$rec_str));
|
||||
$o=$o-10;
|
||||
$txt1->translate(78, $o);
|
||||
$txt1->text(decode('utf8',$rec_city));
|
||||
|
||||
# INSERT SENDER
|
||||
my $send_name= "$company_host";
|
||||
my $send_str = "$str_host $str_nr_host";
|
||||
my $send_city = "$plz_host $city_host";
|
||||
my $send_bank ="$bank";
|
||||
|
||||
$txt5->translate(420, 725);
|
||||
$txt5->text(decode('utf8',$Lang::tr{'acct pdf prov'}));
|
||||
$txt5->translate(420, 715);
|
||||
$txt5->text(decode('utf8',$send_name));
|
||||
my $j=705;
|
||||
if($name1_host){
|
||||
$txt4->translate(420, $j);
|
||||
$txt4->text(decode('utf8',$name1_host));
|
||||
$j=$j-8;
|
||||
}
|
||||
$txt4->translate(420, $j);
|
||||
$txt4->text(decode('utf8',$send_str)); #STR
|
||||
$j=$j-8;
|
||||
$txt4->translate(420, $j);
|
||||
$txt4->text(decode('utf8',$send_city)); #PLZ.City
|
||||
#Print optional Values tel,fax
|
||||
my $i=680;
|
||||
if($tel_host){
|
||||
$txt4->translate(420, $i);
|
||||
$txt4->text($Lang::tr{'acct tel'}); #Tel
|
||||
$txt4->translate(480, $i);
|
||||
$txt4->text($tel_host); #Telnr
|
||||
$i=$i-8;
|
||||
}
|
||||
if($fax_host){
|
||||
$txt4->translate(420, $i);
|
||||
$txt4->text($Lang::tr{'acct fax'}); #Fax
|
||||
$txt4->translate(480, $i);
|
||||
$txt4->text($fax_host); #Faxnr
|
||||
$i=$i-8;
|
||||
}
|
||||
if($internet){
|
||||
$txt4->translate(420, $i);
|
||||
$txt4->text($Lang::tr{'acct inet'}); #Internet
|
||||
$txt4->translate(480, $i);
|
||||
$txt4->text($internet); #www-address
|
||||
$i=$i-8;
|
||||
}
|
||||
$txt5->translate(420, 650);
|
||||
$txt5->text(decode('utf8',$Lang::tr{'acct bank'})); #"BANK"
|
||||
$txt4->lead(7);
|
||||
$txt4->translate(420, 640);
|
||||
$txt4->paragraph(decode('utf8',$bank), 130, 20, -align => "justify"); #Bankname
|
||||
if($iban){
|
||||
$txt4->translate(420, 625);
|
||||
$txt4->text($Lang::tr{'acct iban'}); #iban
|
||||
$txt4->translate(480, 625);
|
||||
$txt4->text(decode('utf8',$iban)); #iban
|
||||
$txt4->translate(420, 619);
|
||||
$txt4->text($Lang::tr{'acct bic'}); #bic
|
||||
$txt4->translate(480, 619);
|
||||
$txt4->text(decode('utf8',$bic)); #bic
|
||||
}
|
||||
if($blz){
|
||||
$txt4->translate(420, 613);
|
||||
$txt4->text($Lang::tr{'acct blz'}); #blz
|
||||
$txt4->translate(420, 607);
|
||||
$txt4->text($Lang::tr{'acct kto'}); #kto
|
||||
$txt4->translate(480, 613);
|
||||
$txt4->text(decode('utf8',$blz)); #blz
|
||||
$txt4->translate(480, 607);
|
||||
$txt4->text(decode('utf8',$kto)); #kto
|
||||
}
|
||||
|
||||
#Print USTID and optional HRB
|
||||
$txt4->translate(420, 590);
|
||||
$txt4->text($Lang::tr{'acct ustid'}); #USTID
|
||||
$txt4->translate(480, 590);
|
||||
$txt4->text($stnr); #ustid
|
||||
if($hrb){
|
||||
$txt4->translate(420, 580);
|
||||
$txt4->text($Lang::tr{'acct hrb'}); #USTID
|
||||
$txt4->translate(480, 580);
|
||||
$txt4->text($hrb); #ustid
|
||||
}
|
||||
################################################################
|
||||
|
||||
#Print Date, Pages ....
|
||||
$txt3->translate(59, 545);
|
||||
$txt3->text($Lang::tr{'acct pdf billtxt'});
|
||||
$txt1->translate(160, 545);
|
||||
$txt1->text("$no $Lang::tr{'acct billnr'}");
|
||||
$txt1->translate(60, 532);
|
||||
$txt1->text("$Lang::tr{'acct pdf time'} $month/$year");
|
||||
$txt1->translate(545, 550);
|
||||
$txt1->text_right("$Lang::tr{'acct pdf date'} $fulldate");
|
||||
$txt1->translate(545, 532);
|
||||
$txt1->text_right("$Lang::tr{'acct pdf page'} $aktpage / $anz");
|
||||
|
||||
if ($a1 eq '999'){last;}
|
||||
#Print DATA from array to Position table
|
||||
$txt1->translate(80, $x);
|
||||
$txt1->text_right($y);
|
||||
$txt1->translate(95, $x);
|
||||
$txt1->text($a1);
|
||||
$txt1->translate(380, $x);
|
||||
$txt1->text_right("$a2 MB");
|
||||
$txt1->translate(425, $x);
|
||||
$txt1->text_right("$cent ".decode('utf8',$cur));
|
||||
$txt1->translate(540, $x);
|
||||
$txt1->text_right("$sum ".decode('utf8',$cur));
|
||||
|
||||
#Build SUMMARY
|
||||
$summen[$y-1]="$y,$a2,$sum";
|
||||
$zwsum=$zwsum+$sum;
|
||||
$x=$x-15;
|
||||
$y++;
|
||||
}
|
||||
#Print extra billpositions
|
||||
foreach my $line (@billpos){
|
||||
my ($grp,$amount,$art,$price)=@$line;
|
||||
#Print DATA from array to Position table
|
||||
$txt1->translate(80, $x);
|
||||
$txt1->text_right($y);
|
||||
$txt1->translate(95, $x);
|
||||
$txt1->text(decode('utf8',$art));
|
||||
$txt1->translate(380, $x);
|
||||
$txt1->text_right($amount." pcs");
|
||||
$txt1->translate(540, $x);
|
||||
$txt1->text_right("$price ".decode('utf8',$cur));
|
||||
#Build SUMMARY
|
||||
my $zu=$amount * $price;
|
||||
$summen[$y-1]="$y,'0',$zu";
|
||||
$zwsum=$zwsum+$zu;
|
||||
$x=$x-15;
|
||||
$y++;
|
||||
}
|
||||
foreach (@summen){
|
||||
my ($a1,$a2,$a3) = split( /\,/, $_ );
|
||||
$sum=$sum+$a2;
|
||||
$sum1=$sum1+$a3;
|
||||
}
|
||||
|
||||
# Last Line in positiontable prints the sum of all traffic (therefor txt2 which is BOLD)
|
||||
$txt2->translate(95, 205);
|
||||
$txt2->text($Lang::tr{'acct pdf sum1'}); #SUM
|
||||
$txt2->translate(427, 205);
|
||||
$txt2->text_right($cent); #cent
|
||||
$txt2->translate(380, 205);
|
||||
$txt2->text_right("$sum MB"); #MB
|
||||
$sum1=sprintf("%.2f",($sum1));
|
||||
$txt2->translate(540, 205);
|
||||
$txt2->text_right("$sum1 ".decode('utf8',$cur)); #SUM Eur
|
||||
$txt->translate(390, 150);
|
||||
$txt->text($Lang::tr{'acct pdf sum1'});
|
||||
$txt->translate(540, 150);
|
||||
$txt->text_right("$sum1 ".decode('utf8',$cur));
|
||||
$txt->translate(390, 135);
|
||||
my $endsum=$sum1;
|
||||
$txt->text("$Lang::tr{'acct mwst_name'} $mwst%");
|
||||
my $sum1=sprintf("%.2f",($sum1/100*$mwst));
|
||||
$txt->translate(540, 135);
|
||||
$txt->text_right("$sum1 ".decode('utf8',$cur));
|
||||
$txt2->translate(390, 120);
|
||||
$txt2->text($Lang::tr{'acct sum total'});
|
||||
my $endsum=sprintf("%.2f",($sum1+$endsum));
|
||||
$txt2->translate(540, 120);
|
||||
$txt2->text_right("$endsum ".decode('utf8',$cur));
|
||||
|
||||
#Print the optional Billtext if any
|
||||
$txt4->translate(60, 170);
|
||||
$txt4->paragraph(decode('utf8',$text), 300, 40, -align => "justify"); #Bankname
|
||||
|
||||
#Watermark if preview
|
||||
if ($preview eq 'on'){
|
||||
my $eg_trans = $pdf->egstate();
|
||||
$eg_trans->transparency(0.9);
|
||||
$txt5->egstate($eg_trans);
|
||||
$txt5->textlabel(80, 400, $fnt, 60, "PDF preview", -rotate => 40);
|
||||
$txt5->textlabel(150, 330, $fnt, 60, "IPFire accounting", -rotate => 40);
|
||||
}
|
||||
|
||||
$txt->textend; #END Text
|
||||
$pdf->save; #Save pdf
|
||||
$pdf->end( ); #END
|
||||
if ($preview ne 'on'){
|
||||
&fillBill($path.$grp,$name,$no,$grp);
|
||||
}
|
||||
return '0';
|
||||
}
|
||||
|
||||
sub getBillNr {
|
||||
$dbh=&connectdb;
|
||||
my $year1=$year+1900;
|
||||
my $no1;
|
||||
my $res=$dbh->selectall_arrayref("SELECT MAX(NO) FROM BILLS;");
|
||||
foreach my $row (@$res){
|
||||
($no1) = @$row;
|
||||
}
|
||||
if(!$no1){$no1=$year1."1000";}
|
||||
$no1++;
|
||||
return $no1;
|
||||
}
|
||||
|
||||
sub fillBill {
|
||||
my $path=$_[0];
|
||||
my $name=$_[1];
|
||||
my $no=$_[2];
|
||||
my $grp=$_[3];
|
||||
my $sth = $dbh->prepare("INSERT INTO BILLS (NO,GRP,PATH,NAME,DATE) VALUES (?,?,?,?,?);");
|
||||
my $year1=$year+1900;
|
||||
++$mon;
|
||||
$sth->execute($no,$grp,$path,$name,"$mday.$mon.$year1");
|
||||
$sth->finish();
|
||||
$dbh->disconnect();
|
||||
}
|
||||
|
||||
sub getbills {
|
||||
my $grp=shift;
|
||||
$dbh=&connectdb;
|
||||
my $res=$dbh->selectall_arrayref("SELECT * FROM BILLS WHERE GRP=?;",undef, $grp);
|
||||
$dbh->disconnect();
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub pngsize {
|
||||
my $Buffer = shift;
|
||||
my ($width,$height) = ( undef, undef );
|
||||
|
||||
if ($Buffer =~ /IHDR(.{8})/) {
|
||||
my $PNG = $1;
|
||||
($width,$height) = unpack( "NN", $PNG );
|
||||
} else {
|
||||
$width=$Lang::tr{'acct invalid png'};
|
||||
};
|
||||
return ($width,$height);
|
||||
}
|
||||
|
||||
sub gifsize {
|
||||
my ($GIF)=@_;
|
||||
my ($type,$a,$b,$c,$d,$s,$width,$height) ;
|
||||
$type=substr($GIF,0,6);
|
||||
if(!($type =~ m/GIF8[7,9]a/) || (length($s=substr($GIF, 6, 4))!=4) ){
|
||||
return;
|
||||
}
|
||||
($a,$b,$c,$d)=unpack("C"x4,$s);
|
||||
|
||||
$width= $b<<8|$a;
|
||||
$height= $d<<8|$c;
|
||||
return ($width,$height);
|
||||
}
|
||||
|
||||
sub jpegsize {
|
||||
my ($JPEG)=@ _ ;
|
||||
my ($count)=2 ;
|
||||
my ($length)=length($JPEG) ;
|
||||
my ($ch)="" ;
|
||||
my ($c1,$c2,$a,$b,$c,$d,$width,$height) ;
|
||||
|
||||
while (($ch ne "\xda") && ($count<$length)) {
|
||||
while (($ch ne "\xff") && ($count < $length)) {
|
||||
$ch=substr($JPEG,$count,1);
|
||||
$count++;
|
||||
}
|
||||
|
||||
while (($ch eq "\xff") && ($count<$length)) {
|
||||
$ch=substr($JPEG,$count,1);
|
||||
$count++;
|
||||
}
|
||||
|
||||
if ((ord($ch) >= 0xC0) && (ord($ch) <= 0xC3)) {
|
||||
$count+=3;
|
||||
($a,$b,$c,$d)=unpack("C"x4,substr($JPEG,$count,4));
|
||||
$width=$c<<8|$d;
|
||||
$height=$a<<8|$b;
|
||||
return($width,$height);
|
||||
}else {
|
||||
($c1,$c2)= unpack("C"x2,substr($JPEG,$count,2));
|
||||
$count += $c1<<8|$c2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sub time{
|
||||
($sec,$min,$hour,$mday,$mon,$year,$wday,$ydat,$isdst)=localtime();
|
||||
$hour=sprintf("%02d",$hour);
|
||||
$min=sprintf("%02d",$min);
|
||||
$sec=sprintf("%02d",$sec);
|
||||
$year +=1900;
|
||||
$mday=sprintf("%02d",$mday);
|
||||
$mon=sprintf("%02d",$mon+1);
|
||||
my $res="$mday.$mon.$year $hour:$min:$sec - ";
|
||||
return $res;
|
||||
}
|
||||
|
||||
sub logger{
|
||||
my $settings=shift;
|
||||
my $msg=shift;
|
||||
#open LOGFILE
|
||||
if ($settings eq 'on'){
|
||||
open ACCTLOG,">>/var/log/accounting.log" || print "could not open /var/log/accounting.log ";
|
||||
print ACCTLOG &time."$msg";
|
||||
close (ACCTLOG);
|
||||
}
|
||||
}
|
||||
|
||||
sub updateccaddr {
|
||||
my $addr=shift;
|
||||
my $cust=shift;
|
||||
$dbh=&connectdb;
|
||||
$dbh->do("UPDATE ACCT_ADDR SET CCMAIL=? WHERE COMPANY=? ;",undef, $addr, $cust);
|
||||
$dbh->disconnect();
|
||||
}
|
||||
return 1;
|
||||
134
src/squid-accounting/acct.de.pl
Normal file
134
src/squid-accounting/acct.de.pl
Normal file
@@ -0,0 +1,134 @@
|
||||
# Added for Squid accounting
|
||||
%tr = (
|
||||
%tr,
|
||||
'acct action' => 'Aktion',
|
||||
'acct activate' => 'Aktivieren',
|
||||
'acct addresses' => 'Adressverwaltung',
|
||||
'acct bank' => 'Bank',
|
||||
'acct bic' => 'BIC',
|
||||
'acct billarchive' => 'Rechnungsarchiv',
|
||||
'acct billgroup' => 'Rechnungsgruppen',
|
||||
'acct billgroupexists' => 'Eine Abrechnungsgruppe mit diesem Namen existiert bereits',
|
||||
'acct billtext1' => 'Rechnungstext',
|
||||
'acct billnr' => '(Rechnungsnummer immer angeben)',
|
||||
'acct billoverview' => 'Rechnungsübersicht',
|
||||
'acct blz' => 'BLZ',
|
||||
'acct ccmail' => 'E-Mail Kopie an',
|
||||
'acct currency' => 'Währung (EUR,USD)',
|
||||
'acct traffic' => 'Traffic',
|
||||
'acct amount' => 'Anzahl',
|
||||
'acct cent' => 'Preis je MB (z.B 0.003)',
|
||||
'acct cent1' => 'Preis MB',
|
||||
'acct city' => 'Ort',
|
||||
'acct config' => 'Konfiguration',
|
||||
'acct commit' => 'Ausführen',
|
||||
'acct company' => 'Firma',
|
||||
'acct companyexists' => 'Eine Firma mit diesem Namen existiert bereits',
|
||||
'acct companytype' => 'Typ',
|
||||
'acct customer' => 'Kunde',
|
||||
'acct cust empty' => 'Noch keine Kunden-Adressen angelegt',
|
||||
'acct dbsize' => 'Datenbankgröße',
|
||||
'acct dbmaintenance' => 'Datenbank-Wartung',
|
||||
'acct delbefore' => 'Alle Einträge löschen vor',
|
||||
'acct deladr' => 'Löschen',
|
||||
'acct edit' => 'Bearbeiten',
|
||||
'acct edit_addr' => 'Anlegen/Bearbeiten',
|
||||
'acct email' => 'E-Mail',
|
||||
'acct emptydb' => 'Datenbank leeren (alles)',
|
||||
'acct emptydbtraf' => 'Datenbank leeren (nur Trafficdaten)',
|
||||
'acct empty field' => 'Feld darf nicht leer sein: ',
|
||||
'acct entries' => 'Einträge',
|
||||
'acct err custdel' => 'Die Adresse kann nicht gelöscht werden, weil sie als Kunde in einer Rechnungsgruppe verwendet wird - Rechnungsgruppe',
|
||||
'acct err hostdel' => 'Die Adresse kann nicht gelöscht werden, weil sie als Hoster in einer Rechnungsgruppe verwendet wird - Rechnungsgruppe',
|
||||
'acct exst_cust_addr' => 'Kunden-Adressen',
|
||||
'acct exst_host_addr' => 'Hoster-Adressen',
|
||||
'acct expert' => 'Wartungsbereich aktivieren',
|
||||
'acct expdelbefore' => 'Löschen',
|
||||
'acct fax' => 'Fax',
|
||||
'acct fix billpos' => 'Feste Rechnungspositionen der Rechnungsgruppe',
|
||||
'acct gb' => 'GB',
|
||||
'acct generated' => 'Erzeugt',
|
||||
'acct hint billgrp' => 'Bitte zuerst mindestens eine Hoster-Adresse und eine Kunden-Adresse anlegen',
|
||||
'acct hint_hoster' => 'Muss nur ausgefüllt werden, wenn Typ "Hoster"',
|
||||
'acct hrb' => 'HRB-Nr',
|
||||
'acct hoster' => 'Hoster',
|
||||
'acct hosts' => 'Hostübersicht',
|
||||
'acct host empty' => 'Noch keine Hoster-Adressen angelegt',
|
||||
'acct host detail' => 'Host-Details',
|
||||
'acct iban' => 'IBAN',
|
||||
'acct inet' => 'Internet',
|
||||
'acct interval' => 'Checkintervall',
|
||||
'acct invalid' => 'Ungültiger Wert für',
|
||||
'acct invalid billpos' => 'Es müssen alle Felder für Extra-Rechnungspositionen ausgefüllt sein',
|
||||
'acct invalid mailip' => 'Ungültige IP-Adresse für Mailserver',
|
||||
'acct invalid mailfqdn' => 'Ungültiger FQDN für Mailserver',
|
||||
'acct invalid mailport' => 'Ungültiger Port für Mailserver',
|
||||
'acct invalid png' => 'Ungültige PNG Datei',
|
||||
'acct invalid pngsize' => 'Ungültige PNG Größe',
|
||||
'acct kb' => 'KB',
|
||||
'acct kto' => 'KTO',
|
||||
'acct latestdb' => 'Letzter DB-Eintrag',
|
||||
'acct logging' => 'Logging (/var/log/accounting.log) aktivieren',
|
||||
'acct logo' => 'Aktuelles Logo',
|
||||
'acct logo upload' => 'Logo Hochladen (PNG, max. 400x150)',
|
||||
'acct maintenance' => 'Wartung',
|
||||
'acct mailaddr' => 'Mailserver-Adresse',
|
||||
'acct mailport' => 'Mailserver-Port',
|
||||
'acct mailuser' => 'Benutzername',
|
||||
'acct mailpass' => 'Passwort',
|
||||
'acct mailrcpt' => 'E-Mail-Empfänger',
|
||||
'acct mailsender' => 'E-Mail Absender',
|
||||
'acct mailtxt' => 'Text der Rechnungsmails',
|
||||
'acct mb' => 'MB',
|
||||
'acct members' => 'Mitglieder',
|
||||
'acct menu' => 'Proxy-Abrechnung',
|
||||
'acct month' => 'Monat',
|
||||
'acct multiuser' => 'User dürfen in mehreren Gruppen sein',
|
||||
'acct mwst_name' => 'USt.',
|
||||
'acct mwst' => 'Mehrwertsteuer in %',
|
||||
'acct name1' => 'Name 1',
|
||||
'acct name2' => 'Name 2',
|
||||
'acct nr' => 'RG-Nr.',
|
||||
'acct oldestdb' => 'Erster DB-Eintrag',
|
||||
'acct optional' => 'Diese Felder sind optional',
|
||||
'acct parameter' => 'Parameter',
|
||||
'acct path' => 'Pfad',
|
||||
'acct pdf billtxt' => 'Rechnung',
|
||||
'acct pdf date' => 'Datum',
|
||||
'acct pdf zwsum' => 'Zwischensumme',
|
||||
'acct pdf page' => 'Seite',
|
||||
'acct pdf prov' => 'Absender',
|
||||
'acct pdf sum1' => 'Summe',
|
||||
'acct pdf price' => 'Preis',
|
||||
'acct pdf time' => 'Abrechnung',
|
||||
'acct plz' => 'PLZ',
|
||||
'acct preview' => 'Rechnungsvorschau',
|
||||
'acct price pp' => 'Einzelpreis',
|
||||
'acct proxy_enable' => 'Bitte zuerst Proxy aktivieren',
|
||||
'acct pos' => 'Pos.',
|
||||
'acct sum total' => 'Gesamtsumme',
|
||||
'acct name' => 'Bezeichnung',
|
||||
'acct no data' => 'Keine Daten vorhanden',
|
||||
'acct rrdsize' => 'Größe des Rechnungs-Verzeichnisses',
|
||||
'acct settings' => 'Accounting-Einstellungen',
|
||||
'acct skipurl' => 'Diese URLs nicht bewerten',
|
||||
'acct status' => 'Status',
|
||||
'acct str' => 'Straße',
|
||||
'acct str_nr' => 'Nr.',
|
||||
'acct subject' => 'Betreff der Rechnungsmails',
|
||||
'acct sum' => 'Summe',
|
||||
'acct task' => 'Aufgabe',
|
||||
'acct tb' => 'TB',
|
||||
'acct tel' => 'Telefon',
|
||||
'acct tls' => 'Benutze TLS',
|
||||
'acct traffic monthly' => 'Monatliches Datenvolumen',
|
||||
'acct title' => 'Webproxy-Abrechnung',
|
||||
'acct usemail' => 'Mailversand aktivieren',
|
||||
'acct usermulti' => 'befindet sich bereits in Gruppe',
|
||||
'acct ustid' => 'USt-ID',
|
||||
'acct edit settings' => 'Einstellungen bearbeiten',
|
||||
'acct value' => 'Wert',
|
||||
'acct view' => 'Anzeigen',
|
||||
'acct year' => 'Jahr'
|
||||
);
|
||||
# End Squid accounting
|
||||
134
src/squid-accounting/acct.en.pl
Normal file
134
src/squid-accounting/acct.en.pl
Normal file
@@ -0,0 +1,134 @@
|
||||
# Added for Squid accounting
|
||||
%tr = (
|
||||
%tr,
|
||||
'acct action' => 'Action',
|
||||
'acct activate' => 'Activate',
|
||||
'acct addresses' => 'Address Management',
|
||||
'acct bank' => 'Bank',
|
||||
'acct bic' => 'BIC',
|
||||
'acct billarchive' => 'Bill Archive',
|
||||
'acct billgroup' => 'Billing Groups',
|
||||
'acct billgroupexists' => 'A billing group with this name already exists',
|
||||
'acct billtext1' => 'Bill text',
|
||||
'acct billnr' => '(always state bill number)',
|
||||
'acct billoverview' => 'Bill overview',
|
||||
'acct blz' => 'Bank code',
|
||||
'acct ccmail' => 'E-Mail CC-Addresses',
|
||||
'acct currency' => 'Currency (EUR,USD)',
|
||||
'acct traffic' => 'Traffic',
|
||||
'acct amount' => 'Amount',
|
||||
'acct cent' => 'Price/MB (e.g. 0.003)',
|
||||
'acct cent1' => 'Price MB',
|
||||
'acct city' => 'City',
|
||||
'acct config' => 'Configuration',
|
||||
'acct commit' => 'Execute',
|
||||
'acct company' => 'Company',
|
||||
'acct companyexists' => 'A Company with this name already exists',
|
||||
'acct companytype' => 'Type',
|
||||
'acct customer' => 'Customer',
|
||||
'acct cust empty' => 'No Customer addresses defined',
|
||||
'acct dbsize' => 'Database size',
|
||||
'acct dbmaintenance' => 'Database maintenance',
|
||||
'acct delbefore' => 'Delete all entries before',
|
||||
'acct deladr' => 'Delete',
|
||||
'acct edit' => 'Edit',
|
||||
'acct edit_addr' => 'Add / Edit',
|
||||
'acct email' => 'E-Mail',
|
||||
'acct emptydb' => 'Erase Database (all data)',
|
||||
'acct emptydbtraf' => 'Erase Database (only traffic data)',
|
||||
'acct empty field' => 'Field must not be empty: ',
|
||||
'acct entries' => 'Entries',
|
||||
'acct err custdel' => 'Address can not be deleted. It is defined as customer in a Bill group - Bill group',
|
||||
'acct err hostdel' => 'Address can not be deleted. It is defined as provider in a Bill group - Bill group',
|
||||
'acct exst_cust_addr' => 'Customer addresses',
|
||||
'acct exst_host_addr' => 'Provider addresses',
|
||||
'acct expert' => 'Activate maintenance area',
|
||||
'acct expdelbefore' => 'Delete',
|
||||
'acct fax' => 'Faximile',
|
||||
'acct fix billpos' => 'Fixed bill positions of bill group',
|
||||
'acct gb' => 'GB',
|
||||
'acct generated' => 'Generated',
|
||||
'acct hint billgrp' => 'You have to define a provider and a customer address first',
|
||||
'acct hint_hoster' => 'Has only to be filled when type "provider"',
|
||||
'acct hrb' => 'HRB-No',
|
||||
'acct hoster' => 'Provider',
|
||||
'acct hosts' => 'Host Overview',
|
||||
'acct host empty' => 'No provider addresses defined',
|
||||
'acct host detail' => 'Host Details',
|
||||
'acct iban' => 'IBAN',
|
||||
'acct inet' => 'Internet',
|
||||
'acct interval' => 'Checkintervall',
|
||||
'acct invalid' => 'Invalid value for',
|
||||
'acct invalid billpos' => 'You have to fill in all fields for fixed bill positions',
|
||||
'acct invalid mailip' => 'Invalid IP address for mailserver',
|
||||
'acct invalid mailfqdn' => 'Invalid FQDN for mailserver',
|
||||
'acct invalid mailport' => 'Invalid port for mailserver',
|
||||
'acct invalid png' => 'Invalid PNG file',
|
||||
'acct invalid pngsize' => 'Invalid PNG size',
|
||||
'acct kb' => 'KB',
|
||||
'acct kto' => 'Account Number',
|
||||
'acct latestdb' => 'Last DB entry',
|
||||
'acct logging' => 'Activate Logging (/var/log/accounting.log)',
|
||||
'acct logo' => 'Actual Logo',
|
||||
'acct logo upload' => 'Upload Logo (PNG, max. 400x150)',
|
||||
'acct maintenance' => 'Maintenance',
|
||||
'acct mailaddr' => 'Mailserver address',
|
||||
'acct mailport' => 'Mailserver port',
|
||||
'acct mailuser' => 'Username',
|
||||
'acct mailpass' => 'Password',
|
||||
'acct mailrcpt' => 'E-Mail Recipient',
|
||||
'acct mailsender' => 'E-Mail Sender',
|
||||
'acct mailtxt' => 'Text for bill mail',
|
||||
'acct mb' => 'MB',
|
||||
'acct members' => 'Members',
|
||||
'acct menu' => 'Proxy Accounting',
|
||||
'acct month' => 'Month',
|
||||
'acct multiuser' => 'User can be in multiple groups',
|
||||
'acct mwst_name' => 'VAT',
|
||||
'acct mwst' => 'Tax rate',
|
||||
'acct name1' => 'Name 1',
|
||||
'acct name2' => 'Name 2',
|
||||
'acct nr' => 'RG-No.',
|
||||
'acct oldestdb' => 'Fist DB Entry',
|
||||
'acct optional' => 'These fields are optional',
|
||||
'acct parameter' => 'Parameter',
|
||||
'acct path' => 'Path',
|
||||
'acct pdf billtxt' => 'Bill',
|
||||
'acct pdf date' => 'Date',
|
||||
'acct pdf zwsum' => 'subtotal',
|
||||
'acct pdf page' => 'Page',
|
||||
'acct pdf prov' => 'Sender',
|
||||
'acct pdf sum1' => 'Sum',
|
||||
'acct pdf price' => 'Price',
|
||||
'acct pdf time' => 'Accounting',
|
||||
'acct plz' => 'Postcode',
|
||||
'acct preview' => 'Bill preview',
|
||||
'acct price pp' => 'Unit price',
|
||||
'acct proxy_enable' => 'Please actiavte proxy first',
|
||||
'acct pos' => 'Pos.',
|
||||
'acct sum total' => 'Total',
|
||||
'acct name' => 'Description',
|
||||
'acct no data' => 'No Data available',
|
||||
'acct rrdsize' => 'Size of Bill directory',
|
||||
'acct settings' => 'Accounting settings',
|
||||
'acct skipurl' => 'Skip these URLs (Intranet)',
|
||||
'acct status' => 'Status',
|
||||
'acct str' => 'Steet',
|
||||
'acct str_nr' => 'No.',
|
||||
'acct subject' => 'Subject',
|
||||
'acct sum' => 'Sum',
|
||||
'acct task' => 'Task',
|
||||
'acct tb' => 'TB',
|
||||
'acct tel' => 'Telephone',
|
||||
'acct tls' => 'Use TLS',
|
||||
'acct traffic monthly' => 'Monthly data volume',
|
||||
'acct title' => 'Webproxy Accounting',
|
||||
'acct usemail' => 'Send bills via Mail',
|
||||
'acct usermulti' => 'is already in group',
|
||||
'acct ustid' => 'USt-ID',
|
||||
'acct edit settings' => 'Edit settings',
|
||||
'acct value' => 'Value',
|
||||
'acct view' => 'Show',
|
||||
'acct year' => 'Year'
|
||||
);
|
||||
# End Squid accounting
|
||||
265
src/squid-accounting/acct.pl
Executable file
265
src/squid-accounting/acct.pl
Executable file
@@ -0,0 +1,265 @@
|
||||
#!/usr/bin/perl
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2014 IPFire Team <alexander.marx@ipfire.org> #
|
||||
# #
|
||||
# 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 <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
|
||||
###########
|
||||
# Modules #
|
||||
###########
|
||||
|
||||
use Time::Local;
|
||||
use File::ReadBackwards;
|
||||
use strict;
|
||||
#use warnings;
|
||||
|
||||
require '/var/ipfire/general-functions.pl';
|
||||
require "${General::swroot}/accounting/acct-lib.pl";
|
||||
require "${General::swroot}/lang.pl";
|
||||
|
||||
#############
|
||||
# Variables #
|
||||
#############
|
||||
|
||||
my $count = 0;
|
||||
my $dbh;
|
||||
my $logfile = "/var/log/squid/access.log";
|
||||
my $line = '';
|
||||
my $checktime = 3600; #1 hour = 3600 sec
|
||||
my $starttime = time;
|
||||
my ($time,$elapsed,$ip,$state,$bytes,$method,$url,$user,$peerstate,$type); #split logfileline into variables
|
||||
my $name;
|
||||
my $name1;
|
||||
my $settingsfile = "${General::swroot}/accounting/settings.conf";
|
||||
my $proxyenabled = "${General::swroot}/proxy/enable";
|
||||
my %counter = ();
|
||||
my %counterip = ();
|
||||
my %settings = ();
|
||||
my %toplist = ();
|
||||
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$ydat,$isdst)=localtime();
|
||||
my $skipurlcount=0;
|
||||
my $skipurlsum=0;
|
||||
&General::readhash("$settingsfile", \%settings);
|
||||
my $skipurl=$settings{'SKIPURLS'};
|
||||
$skipurl="'".$skipurl."'";
|
||||
my ($mini,$max)=&ACCT::getminmax;
|
||||
my $now = localtime;
|
||||
my $proxylog;
|
||||
my $proxysrv;
|
||||
|
||||
########
|
||||
# Main #
|
||||
########
|
||||
|
||||
&checkproxy;
|
||||
|
||||
#If we have a disabled file and the proxy is off, we don't need to check anything, exit!
|
||||
if((! -f $proxyenabled || $proxylog eq $Lang::tr{'stopped'}) && -f "${General::swroot}/accounting/disabled"){
|
||||
&ACCT::logger($settings{'LOG'}," Proxy or proxylogging disabled - exiting with no data collection\n");
|
||||
exit 0;
|
||||
}
|
||||
#If proxy was turned off within last hour, we need to check missing minutes and write a disabled file
|
||||
if ((! -f $proxyenabled || $proxylog eq $Lang::tr{'stopped'}) && ! -f "${General::swroot}/accounting/disabled"){
|
||||
$checktime = (time-$max);
|
||||
open (FH,">${General::swroot}/accounting/disabled");
|
||||
close (FH);
|
||||
&ACCT::logger($settings{'LOG'}," Proxy or proxylogging was disabled during last hour - just checking meantime and disabling data collection\n");
|
||||
}
|
||||
|
||||
#If proxy is on, we are doing a normal run. maybe we had a disabled file, so delete it here
|
||||
if (-f $proxyenabled && $proxylog eq $Lang::tr{'running'}){
|
||||
#check if we are running again after the was shutdown and reenabled
|
||||
if (-f "${General::swroot}/accounting/disabled"){
|
||||
unlink("${General::swroot}/accounting/disabled");
|
||||
}
|
||||
#Find out if the month changed
|
||||
$dbh=&ACCT::connectdb;
|
||||
my $m=sprintf("%d",(localtime((time-3600)))[4]+1);
|
||||
&ACCT::logger($settings{'LOG'},"month before one hour $m, now is ".($mon+1)."\n");
|
||||
if ($m < ($mon+1) || $m == '12' && ($mon+1) == '1'){
|
||||
#Logrotate
|
||||
my $year1=$year+1900;
|
||||
system ("tar", "cfz", "/var/log/accounting-$m-$year1.tar.gz", "/var/log/accounting.log");
|
||||
unlink ("/var/log/accounting.log");
|
||||
open (FH,">/var/log/accounting.log");
|
||||
close (FH);
|
||||
chmod 0755, "/var/log/accounting.log";
|
||||
#move all db entries older than 2 months to second table and cumulate them hourly
|
||||
&ACCT::movedbdata;
|
||||
&ACCT::logger($settings{'LOG'},"New Month. Old trafficvalues moved to ACCT_HIST Table\n");
|
||||
if ($settings{'USEMAIL'} eq 'on'){
|
||||
&ACCT::logger($settings{'LOG'},"Mailserver is activated - Now sending bills via mail...\n");
|
||||
my $res=&ACCT::getbillgroups;
|
||||
foreach my $line (@$res){
|
||||
my ($grp) = @$line;
|
||||
&sendbill($grp,$settings{'MWST'},$settings{'CURRENCY'});
|
||||
}
|
||||
}else{
|
||||
&ACCT::logger($settings{'LOG'},"Mailserver is deactivated - We are NOT sending bills via mail...\n");
|
||||
}
|
||||
}
|
||||
|
||||
&ACCT::logger($settings{'LOG'},"Start reading last hour of access.log\n");
|
||||
&readlog;
|
||||
&fill_db;
|
||||
&ACCT::closedb;
|
||||
$skipurlsum=sprintf("%.2f",$skipurlsum/(1024*1024));
|
||||
&ACCT::logger($settings{'LOG'},"skipped: $skipurlcount Adressen\n");
|
||||
&ACCT::logger($settings{'LOG'},"skipped: $skipurlsum MB\n") if ($skipurl);
|
||||
}
|
||||
#############
|
||||
# functions #
|
||||
#############
|
||||
|
||||
sub checkproxy{
|
||||
if(-f "${General::swroot}/proxy/enable"){
|
||||
$proxysrv=$Lang::tr{'running'};
|
||||
}else{
|
||||
$proxysrv=$Lang::tr{'stopped'};
|
||||
}
|
||||
my $srce = "${General::swroot}/proxy/squid.conf";
|
||||
my $string1 = 'access\.log';
|
||||
open(FH, $srce);
|
||||
while(my $line = <FH>) {
|
||||
if($line =~ m/$string1/) {
|
||||
$proxylog=$Lang::tr{'running'};
|
||||
}
|
||||
}
|
||||
close FH;
|
||||
return;
|
||||
}
|
||||
|
||||
sub readlog{
|
||||
my $url1;
|
||||
my $user1;
|
||||
$count = 0;
|
||||
my $urlcnt=0;
|
||||
&ACCT::logger($settings{'LOG'},"Start: $now. Reading data back till: ".localtime(($starttime-$checktime)).".\n");
|
||||
#Open Logfile and begin to read the file backwards
|
||||
my $bw = File::ReadBackwards->new( $logfile ) or die "can't read $logfile $!" ;
|
||||
while( defined( $line = $bw->readline ) ) {
|
||||
undef $url1;
|
||||
chomp $line;
|
||||
#Divide $line into single variables to get timestamp and check if we are within hte desired timerange
|
||||
($time,$elapsed,$ip,$state,$bytes,$method,$url,$user,$peerstate,$type)=split(m/\s+/, $line);
|
||||
$count += $bytes;
|
||||
$time = substr($time, 0, -4);
|
||||
if (($time > ($starttime-$checktime))){
|
||||
#Skip DENIED stated lines (can be reactivated later)
|
||||
next if ($state =~ m/DENIED/);
|
||||
|
||||
#extract site name
|
||||
if ($url =~ m/([a-z]+:\/\/)??([a-z0-9\-]+\.){1}(([a-z0-9\-]+\.){0,})([a-z0-9\-]+){1}(:[0-9]+)?\/(.*)/o) {
|
||||
$url=$2.$3.$5;
|
||||
} else {
|
||||
my ($a,$b)=split(":",$url);
|
||||
$url=$a;
|
||||
}
|
||||
|
||||
#Skip special URLs like intranet and webservers from local network
|
||||
if ($url =~ m/$skipurl/o) {
|
||||
$skipurlcount++;
|
||||
$skipurlsum+=$bytes;
|
||||
next;
|
||||
};
|
||||
|
||||
#Increase urlcounter
|
||||
$urlcnt++;
|
||||
|
||||
#Get Data for accounting
|
||||
$counter{$user}{'bytes'} += $bytes if ($user ne '-');
|
||||
$counter{$ip}{'bytes'} += $bytes;
|
||||
}else{
|
||||
#If we are out of timewindow, break
|
||||
last;
|
||||
}
|
||||
}
|
||||
$count=sprintf("%.2f",$count/(1024*1024));
|
||||
&ACCT::logger($settings{'LOG'},"got $count MB from $urlcnt URLs this run.\n");
|
||||
$bw->close;
|
||||
}
|
||||
sub fill_db{
|
||||
my $tim=time();
|
||||
#Fill ACCT table with accounting information
|
||||
foreach my $name (sort keys %counter){
|
||||
foreach my $bytes (keys %{ $counter{$name} }) {
|
||||
$dbh->do("insert into ACCT (TIME_RUN,NAME,BYTES) values ('$tim','$name','$counter{$name}{$bytes}');");
|
||||
}
|
||||
}
|
||||
}
|
||||
sub sendbill {
|
||||
my $rggrp=$_[0];
|
||||
my $mwst=$_[1];
|
||||
my $cur = $_[2];
|
||||
my @now = localtime(time);
|
||||
$now[5] = $now[5] + 1900;
|
||||
my $actmonth = $now[4]+1;
|
||||
my $month = '0'.$actmonth if $actmonth < 10;
|
||||
my $actyear = $now[5];
|
||||
my ($from,$till)=&ACCT::getmonth($actmonth,$actyear); #FIXME month and year as variables!
|
||||
my @billar = &ACCT::GetTaValues($from,$till,$rggrp);
|
||||
my $address_cust = &ACCT::getTaAddress($rggrp,'CUST');
|
||||
my $address_host = &ACCT::getTaAddress($rggrp,'HOST');
|
||||
my $billpos = &ACCT::getextrabillpos($rggrp);
|
||||
my $no = &ACCT::getBillNr;
|
||||
my $back = &ACCT::pdf2(\@billar,$actmonth,$actyear,$mwst,$address_cust,$address_host,$billpos,$rggrp,$cur);
|
||||
my ($company_cust,$type_cust,$name1_cust,$str_cust,$str_nr_cust,$plz_cust,$city_cust,$bank,$iban,$bic,$blz,$kto,$email,$internet,$hrb,$stnr,$tel_host,$fax_host,$ccmail,$billgrp,$text,$host,$cust,$cent);
|
||||
|
||||
foreach my $addrline_cust (@$address_cust){
|
||||
($company_cust,$type_cust,$name1_cust,$str_cust,$str_nr_cust,$plz_cust,$city_cust,$bank,$iban,$bic,$blz,$kto,$email,$internet,$hrb,$stnr,$tel_host,$fax_host,$ccmail,$billgrp,$text,$host,$cust,$cent)=@$addrline_cust;
|
||||
}
|
||||
|
||||
if ($back eq '0'){
|
||||
&ACCT::logger($settings{'LOG'},"Bill for $company_cust successfully created.\n");
|
||||
my $file="'/var/ipfire/accounting/bill/$rggrp/$month-$actyear-$no.pdf'";
|
||||
$settings{'MAILTXT'} =~ tr/\|/\r\n/ ;
|
||||
my $cmd = "/usr/local/bin/sendEmail ";
|
||||
$cmd .= " -f $settings{'MAILSENDER'}"; #Sender
|
||||
$cmd .= " -t $email"; #Recipient
|
||||
if ($ccmail){
|
||||
$cmd .= " -cc $ccmail";
|
||||
}
|
||||
#Send Mail via TLS?
|
||||
if ($settings{'TLS'} eq 'on'){
|
||||
$cmd .= " -o tls=yes"; #TLS
|
||||
}
|
||||
$cmd .= " -u '$settings{'MAILSUB'}'"; #Subject
|
||||
$cmd .= " -m '$settings{'MAILTXT'}'"; #Mailtext
|
||||
$cmd .= " -s $settings{'MAILSRV'}:$settings{'MAILPORT'}"; #Mailserver:port
|
||||
$cmd .= " -a $file";
|
||||
my $res=system ($cmd);
|
||||
if ($res == 0){
|
||||
&ACCT::logger($settings{'LOG'},"Bill for $company_cust successfully sent.\n");
|
||||
}elsif ($res > 0){
|
||||
&ACCT::logger($settings{'LOG'},"ERROR: Bill for $company_cust NOT sent.\n");
|
||||
}
|
||||
return 0;
|
||||
|
||||
}else{
|
||||
&ACCT::logger($settings{'LOG'},"ERROR Bill for $company_cust could not be created.\n");
|
||||
my $cmd = "/usr/local/bin/sendEmail ";
|
||||
$cmd .= " -f $settings{'MAILSENDER'}";
|
||||
$cmd .= " -t $settings{'MAILSENDER'}";
|
||||
$cmd .= " -u Fehler Squid Accounting";
|
||||
$cmd .= " -m 'Die Rechnung konnte nicht erzeugt und per Mail versendet werden' $company_cust";
|
||||
$cmd .= " -s $settings{'MAILSRV'}:$settings{'MAILPORT'}";
|
||||
my $res=system ($cmd);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
/var/ipfire/accounting/settings.conf
|
||||
/var/ipfire/accounting/bill
|
||||
/srv/web/ipfire/html/accounting
|
||||
/var/ipfire/accounting/acct.db
|
||||
/var/log/accounting.log
|
||||
49
src/squid-accounting/dbinstall.pl
Executable file
49
src/squid-accounting/dbinstall.pl
Executable file
@@ -0,0 +1,49 @@
|
||||
#!/usr/bin/perl
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2014 IPFire Team <alexander.marx@ipfire.org> #
|
||||
# #
|
||||
# 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 <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
|
||||
use DBI;
|
||||
|
||||
###############################################################################
|
||||
my $dbh;
|
||||
my $dsn="dbi:SQLite:dbname=/var/ipfire/accounting/acct.db";
|
||||
###############################################################################
|
||||
|
||||
|
||||
$dbh = DBI->connect($dsn, "", "",{RaiseError => 1, AutoCommit => 1})or die "ERROR $!";
|
||||
|
||||
$dbh->do('CREATE TABLE ACCT (TIME_RUN "NUM",NAME "TXT",BYTES "NUM");');
|
||||
|
||||
$dbh->do('CREATE TABLE ACCT_HIST (TIME_RUN "NUM",NAME "TXT",BYTES "NUM");');
|
||||
|
||||
$dbh->do('CREATE TABLE ACCT_ADDR (COMPANY "TXT",TYPE "TXT",NAME1 "TXT", STR "TXT", NR "TXT", POSTCODE "NUM", CITY "TXT",BANK "TXT",IBAN "TXT",BIC "TXT",BLZ "NUM",ACCOUNT "NUM", EMAIL "TXT",INTERNET "TXT", HRB "TXT", USTID "TXT", TEL "TXT", FAX "TXT", CCMAIL "TXT");');
|
||||
|
||||
$dbh->do('CREATE TABLE BILLINGGRP (NAME "TXT",BILLTEXT "TXT",HOST "TXT",CUST "TXT",CENT "NUM");');
|
||||
|
||||
$dbh->do('CREATE TABLE BILLINGHOST (GRP "TXT",HOST "TXT");');
|
||||
|
||||
$dbh->do('CREATE TABLE BILLPOS (GRP "TXT",AMOUNT "INT", POS "TXT", PRICE "NUM");');
|
||||
|
||||
$dbh->do('CREATE TABLE BILLS (NO "NUM", PATH "TXT", NAME "TXT", DATE "NUM", GRP "TXT");');
|
||||
|
||||
$dbh->disconnect();
|
||||
|
||||
exit 0;
|
||||
Reference in New Issue
Block a user