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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#!/usr/bin/perl
#
# LightSquid Project (c) 2004-2005 Sergey Erokhin aka ESL
#
# 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 2
# of the License, or (at your option) any later version.
#
# detail see in gnugpl.txt
print "Content-Type: text/html\n\n";
use File::Basename;
push (@INC,(fileparse($0))[1]);
use CGI;
require "lightsquid.cfg";
require "common.pl";
$co=new CGI;
$mode="day";
$year =$co->param('year');
$month =$co->param('month');
$day =$co->param('day');
$usersite =$co->param('usersite');
$mode =$co->param('mode');
InitTPL("whousesite",$co->param('tpl'));
if ($mode eq "month") {
$workperiod="##MSG_WHOLE## ##MSG_MONTH## - $year $MonthName[$month]";
$mask = "$year$month*";
} elsif ($mode eq "year") {
$workperiod="##MSG_WHOLE## ##MSG_YEAR## - $year";
$mask = "$year*";
} else {
$mode="day";
$workperiod="$day $MonthName[$month] $year";
$mask = "$year$month$day";
}
#@days=sort glob("$reportpath/$year$month$day/*");
@days=sort glob("$reportpath/$mask/*");
@days=reverse @days;
foreach $userpath (@days) {
next if ($userpath =~ m/\^./);
$userpath =~ m/\/(\d*)\/(.*)$/;
$user=$2;
$date=$1;
GetRealName("$reportpath/$date/","?");
open FF,"<$userpath";
$totalsize=<FF>;chomp $totalsize;$totalsize=~s/total: //;
while (<FF>) {
($site,$size,$hit)=split;
next unless ($site eq $usersite);
$hash{$user}+=$size;
$hhit{$user}+=$hit;
$hday{$user}{$date}=1;
$total +=$size;
$hittotal+=$hit;
}
close FF;
}
$N=0;
foreach $user (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
$listid=0;
$N++;
$printsize =FineDec($hash{$user});
$printconnect=FineDec($hhit{$user});
$usedaylist="";
# if ($mode ne "day") {
foreach $date (sort keys %{$hday{$user}} ) {
$date =~ m/(\d\d\d\d)(\d\d)(\d\d)/;
$daylist[$listid ]{'L'}= URLEncode("user_detail.cgi?year=$1&month=$2&day=$3&user=$user");
$daylist[$listid++]{'B'}= GetTxtDate($date);
}
# }
$rowattr = ($N & 1)?$hTPLVARIABLE{oddattr}:$hTPLVARIABLE{evenattr};
$realname = GetRealName("?",$user);
$tmp=$hTPL{who};
$tmp=~s/##WHOUSER##/$user/;
$tmp=~s/##REALNAME##/$realname/;
$tmp=~s/##WHOCONNECT##/$printconnect/;
$tmp=~s/##WHOSIZE##/$printsize/;
$tmp=~s/##USEDAYURL_L##/$daylist[0]{'L'}/;
$tmp=~s/##USEDAYURL_B##/$daylist[0]{'B'}/;
$tmp=~s/##ROWATTR##/$rowattr/;
$tpl{who} .= $tmp;
for ($i=1;$i<$listid;$i++) {
$tmp=$hTPL{who};
$tmp=~s/##WHOUSER##//;
$tmp=~s/##REALNAME##//;
$tmp=~s/##WHOCONNECT##//;
$tmp=~s/##WHOSIZE##//;
$tmp=~s/##USEDAYURL_L##/$daylist[$i]{'L'}/;
$tmp=~s/##USEDAYURL_B##/$daylist[$i]{'B'}/;
$tmp=~s/##ROWATTR##/$rowattr/;
$tpl{who} .= $tmp;
}
}
close FF;
$totalprint=FineDec($total);
$totalhitprint=FineDec($hittotal);
ReplaceTPL(TOTAL,$totalprint);
ReplaceTPL(TOTALCONNECT,$totalhitprint);
ReplaceTPL(SITE,$usersite);
ReplaceTPL(DATE,$workperiod);
ApplyTPL();
#HideTPL("daylist") if ($mode eq "day");
HideTPL("realname") if ($userealname == 0);
PrintTPL();
__END__
2005-05-01 ADD : month & year mode support
ADD : if mode (month or year) add cell with dates -> user_detail
2005-08-30 ADD : Color Flipper
2005-10-07 ADD : HIDE (DayList)
2005-11-03 FIX : remove???? hide daylis if no DAY mode
2005-11-07 ADD : URLEncode
2006-06-28 ADD : &tpl= support
|