]> git.ipfire.org Git - thirdparty/sarg.git/blame - html.c
Output the period as an HTML text in the HTML reports
[thirdparty/sarg.git] / html.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
1164c474 3 * 1998, 2010
25697a35
GS
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
1164c474
FM
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
25697a35
GS
9 * ---------------------------------------------------------------------
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
24 *
25 */
26
27#include "include/conf.h"
5f3cfd1d 28#include "include/defs.h"
25697a35 29
32e71fa4 30void htmlrel(void)
25697a35
GS
31{
32 DIR *dirp;
32e71fa4 33 FILE *fp_in, *fp_ou, *fp_ip, *fp_ip2, *fp_usr;
25697a35
GS
34
35 struct dirent *direntp;
36 long long int nnbytes=0, unbytes=0, tnbytes=0, totbytes=0, totbytes2=0;
37 long long int totelap=0, totelap2=0, nnelap=0, unelap=0, tnelap=0;
9f20cdae 38 long long int incache=0, oucache=0, tnincache=0, tnoucache=0, twork=0;
0a4e18e1
FM
39 long long int ltemp;
40 long long int ntotuser;
41 long long int userbytes, userelap;
e5b2c6f0 42 char *buf;
25697a35 43 char arqin[MAXLEN], arqou[MAXLEN], arqper[MAXLEN], arqip[MAXLEN];
e5b2c6f0 44 char *url, tmsg[50], csort[MAXLEN];
fa6552b0 45 char user[MAXLEN], duser[MAXLEN];
e5b2c6f0 46 char userhora[9], userdia[9];
0a4e18e1 47 char user_ip[MAXLEN], olduserip[MAXLEN], tmp2[MAXLEN], tmp3[MAXLEN];
f2ec8c75 48 char denied_report[255];
25697a35 49 char *str;
32e71fa4 50 char warea[MAXLEN];
0a4e18e1 51 char totuser[8];
ac422f9b 52 char ltext110[100];
2240dcea 53 char tmp6[MAXLEN];
25697a35 54 long long int tnacc=0, ttnacc=0, unacc=0;
9f20cdae 55 double perc=0, perc2=0, ouperc=0, inperc=0;
25697a35 56 char *s;
32e71fa4 57 int count;
456d78a5 58 int cstatus;
936c9905
FM
59 const char txtext[]=".txt";
60 int dlen;
e5b2c6f0 61 char siteind[MAX_TRUNCATED_URL];
9c7c6346 62 struct getwordstruct gwarea;
afaa3b67 63 longline line,line1;
2240dcea 64 struct generalitemstruct item;
f2ec8c75 65 const struct userinfostruct *uinfo;
25697a35 66
085c1e1f 67 if((ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
25697a35
GS
68
69 strcpy(tmp2,TempDir);
70 strcat(tmp2,"/sargtmp.unsort");
71
72 strcpy(tmp3,TempDir);
73 strcat(tmp3,"/sargtmp.log");
74
d5d021c5 75 snprintf(arqper,sizeof(arqper),"%s/sarg-general",outdirname);
25697a35 76 if ((fp_in = fopen(arqper, "r")) == 0){
9f70c14e 77 debuga(_("(html2) Cannot open file %s\n"),arqper);
06b39c87 78 exit(EXIT_FAILURE);
25697a35 79 }
afaa3b67 80 if ((line=longline_create())==NULL) {
10210234 81 debuga(_("Not enough memory to read file %s\n"),arqper);
06b39c87 82 exit(EXIT_FAILURE);
e5b2c6f0 83 }
9f20cdae
FM
84 ttnacc=0;
85 totbytes=0;
86 totelap=0;
afaa3b67 87 while((buf=longline_read(fp_in,line))!=NULL) {
2240dcea
FM
88 ger_read(buf,&item,arqper);
89 if(item.total) {
90 ttnacc+=item.nacc;
91 totbytes+=item.nbytes;
92 totelap+=item.nelap;
25697a35
GS
93 }
94 }
9f20cdae 95 fclose(fp_in);
afaa3b67 96 longline_destroy(&line);
25697a35 97
d5d021c5 98 snprintf(arqper,sizeof(arqper),"%s/sarg-users",outdirname);
9f20cdae 99 if ((fp_in = fopen(arqper, "r")) == 0){
9f70c14e 100 debuga(_("(html11) Cannot open file %s\n"),arqper);
06b39c87 101 exit(EXIT_FAILURE);
9f20cdae
FM
102 }
103 if (!fgets(totuser,sizeof(totuser),fp_in)) {
d5d021c5 104 debuga(_("(html11) read error in %s\n"),arqper);
06b39c87 105 exit(EXIT_FAILURE);
9f20cdae 106 }
25697a35 107 fclose(fp_in);
9f20cdae
FM
108 ntotuser=my_atoll(totuser);
109 if (ntotuser<=0) ntotuser=1;
25697a35 110
e21b6c02
FM
111 if ((dirp = opendir(tmp)) == NULL) {
112 debuga(_("Failed to open directory %s - %s\n"),tmp,strerror(errno));
113 exit(EXIT_FAILURE);
114 }
25697a35 115 while ( (direntp = readdir( dirp )) != NULL ) {
936c9905
FM
116 dlen=strlen(direntp->d_name)-(sizeof(txtext)-1);
117 if (dlen<0) continue;
118 if(strcmp(direntp->d_name+dlen,txtext) != 0)
25697a35
GS
119 continue;
120
121 count=1;
936c9905 122 if (dlen>0) {
d25d4e6a
FM
123 if (dlen>=sizeof(user)) continue;
124 strncpy(user,direntp->d_name,dlen);
125 user[dlen]=0;
936c9905 126 } else {
d25d4e6a 127 user[0]=0;
25697a35 128 }
f2ec8c75 129
d25d4e6a 130 uinfo=userinfo_find_from_file(user);
f2ec8c75 131 if (!uinfo) {
10210234 132 debuga(_("Unknown user ID %s in directory %s\n"),user,tmp);
06b39c87 133 exit(EXIT_FAILURE);
f2ec8c75 134 }
d25d4e6a 135 str=strrchr(user,'.');
936c9905
FM
136 if (str)
137 strcpy(denied_report,str+1);
138 else
d25d4e6a 139 strcpy(denied_report,user);
936c9905 140
d5d021c5
FM
141 if (snprintf(warea,sizeof(warea),"%s/%s",outdirname,user)>=sizeof(warea)) {
142 debuga(_("Destination directory too long: %s/%s\n"),outdirname,user);
06b39c87 143 exit(EXIT_FAILURE);
05b90947 144 }
25697a35
GS
145 mkdir(warea,0755);
146
f2ec8c75
FM
147 report_day(uinfo);
148 greport_day(uinfo);
25697a35 149
f2ec8c75 150 if (snprintf(arqin,sizeof(arqin),"%s/%s",tmp,direntp->d_name)>=sizeof(arqin)) {
10210234 151 debuga(_("Input file name too long: %s/%s\n"),tmp,direntp->d_name);
06b39c87 152 exit(EXIT_FAILURE);
f2ec8c75 153 }
d5d021c5
FM
154 if (snprintf(arqou,sizeof(arqou),"%s/%s/%s.html",outdirname,uinfo->filename,uinfo->filename)>=sizeof(arqou)) {
155 debuga(_("Output file name too long: %s/%s/%s.html\n"),outdirname,uinfo->filename,uinfo->filename);
06b39c87 156 exit(EXIT_FAILURE);
f2ec8c75
FM
157 }
158 if (snprintf(duser,sizeof(duser),"%s/%s/denied_%s.html",tmp,direntp->d_name,denied_report)>=sizeof(duser)) {
10210234 159 debuga(_("File name too long: %s/%s/denied_%s.html\n"),tmp,direntp->d_name,denied_report);
06b39c87 160 exit(EXIT_FAILURE);
25697a35 161 }
25697a35
GS
162 if(access(duser, R_OK) != 0)
163 denied_report[0]='\0';
936c9905 164
25697a35 165 if ((fp_in = fopen(arqin, "r")) == 0){
9f70c14e 166 debuga(_("(html3) Cannot open file %s\n"),arqin);
06b39c87 167 exit(EXIT_FAILURE);
25697a35 168 }
48864d28 169
afaa3b67 170 if ((line=longline_create())==NULL) {
10210234 171 debuga(_("Not enough memory to read file %s\n"),arqin);
06b39c87 172 exit(EXIT_FAILURE);
ac422f9b
FM
173 }
174
9f20cdae
FM
175 tnacc=0;
176 tnbytes=0;
177 tnelap=0;
178 tnincache=0;
179 tnoucache=0;
afaa3b67 180 while((buf=longline_read(fp_in,line))!=NULL) {
e5b2c6f0 181 getword_start(&gwarea,buf);
0a4e18e1 182 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
10210234 183 debuga(_("There is a broken number of access in file %s\n"),arqin);
06b39c87 184 exit(EXIT_FAILURE);
4bcb77cf 185 }
0a4e18e1
FM
186 tnacc+=ltemp;
187 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
10210234 188 debuga(_("There is a broken downloaded size in file %s\n"),arqin);
06b39c87 189 exit(EXIT_FAILURE);
4bcb77cf 190 }
0a4e18e1 191 tnbytes+=ltemp;
e5b2c6f0 192 if (getword_ptr(NULL,NULL,&gwarea,'\t')<0) {
10210234 193 debuga(_("There is a broken url in file %s\n"),arqin);
06b39c87 194 exit(EXIT_FAILURE);
ac422f9b
FM
195 }
196 if (getword_skip(MAXLEN,&gwarea,'\t')<0) {
10210234 197 debuga(_("There is a broken access code in file %s\n"),arqin);
06b39c87 198 exit(EXIT_FAILURE);
ac422f9b
FM
199 }
200 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
10210234 201 debuga(_("There is a broken elapsed time in file %s\n"),arqin);
06b39c87 202 exit(EXIT_FAILURE);
4bcb77cf 203 }
0a4e18e1
FM
204 tnelap+=ltemp;
205 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
10210234 206 debuga(_("There is a broken in-cache volume in file %s\n"),arqin);
06b39c87 207 exit(EXIT_FAILURE);
4bcb77cf 208 }
0a4e18e1
FM
209 tnincache+=ltemp;
210 if (getword_atoll(&ltemp,&gwarea,'\n')<0) {
10210234 211 debuga(_("There is a broken out-cache volume in file %s\n"),arqin);
06b39c87 212 exit(EXIT_FAILURE);
4bcb77cf 213 }
0a4e18e1 214 tnoucache+=ltemp;
25697a35
GS
215 }
216
ec7b26a5 217 rewind(fp_in);
32d1c674 218
25697a35 219 if ((fp_ou = fopen(arqou, "w")) == 0){
9f70c14e 220 debuga(_("(html5) Cannot open file %s\n"),arqou);
06b39c87 221 exit(EXIT_FAILURE);
25697a35 222 }
32d1c674 223
c0ec9cc7 224 write_html_header(fp_ou,(IndexTree == INDEX_TREE_DATE) ? 4 : 2,_("User report"));
fd46f082 225 fprintf(fp_ou,"<tr><td class=\"header_l\">%s:&nbsp;%s</td></tr>\n",_("Period"),period.html);
c36c7384
FM
226 fprintf(fp_ou,"<tr><td class=\"header_l\">%s:&nbsp;%s</td></tr>\n",_("User"),uinfo->label);
227 fprintf(fp_ou,"<tr><td class=\"header_l\">%s:&nbsp;%s, %s</td></tr>\n",_("Sort"),UserSortField,UserSortOrder);
7cad6336 228 fprintf(fp_ou,"<tr><td class=\"header_c\">%s</td></tr>\n",_("User report"));
c0ec9cc7
FM
229 //fputs("<tr><td></td></tr>\n",fp_ou);
230 close_html_header(fp_ou);
25697a35 231
c0ec9cc7 232 fputs("<div class=\"report\"><table cellpadding=\"2\" cellspacing=\"1\">\n",fp_ou);
32d1c674 233
4157aa09 234 if(denied_report[0]!='\0') {
c36c7384 235 fprintf(fp_ou,"<tr><td class=\"header_l\" colspan=\"11\"><a href=\"denied_%s.html\">%s</a> %s</td></tr>\n",denied_report,_("SmartFilter"),_("Report"));
25697a35 236 }
32d1c674 237
c36c7384 238 fprintf(fp_ou,"<tr><th></th><th class=\"header_l\">%s</th>",_("ACCESSED SITE"));
594c9da4
FM
239
240 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
c36c7384 241 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("CONNECT"));
594c9da4 242 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
c36c7384 243 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("BYTES"));
594c9da4 244 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0)
c36c7384 245 fprintf(fp_ou,"<th class=\"header_l\">%%%s</th>",_("BYTES"));
594c9da4 246 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0)
156404e9 247 fprintf(fp_ou,"<th class=\"header_c\" colspan=\"2\">%s</th>",_("IN-CACHE-OUT"));
594c9da4 248 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
c36c7384 249 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("ELAPSED TIME"));
594c9da4 250 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
156404e9 251 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("MILLISEC"));
594c9da4 252 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0)
c36c7384 253 fprintf(fp_ou,"<th class=\"header_l\">%%%s</th>",_("TIME"));
594c9da4
FM
254
255 fputs("</tr>\n",fp_ou);
32d1c674 256
25697a35 257 if(debug) {
10210234 258 debuga(_("Making report: %s\n"),uinfo->id);
25697a35
GS
259 }
260
afaa3b67 261 while((buf=longline_read(fp_in,line))!=NULL) {
e5b2c6f0 262 getword_start(&gwarea,buf);
0a4e18e1 263 if (getword_atoll(&twork,&gwarea,'\t')<0) {
9f70c14e 264 debuga(_("Maybe you have a broken number of access in your %s file\n"),arqin);
06b39c87 265 exit(EXIT_FAILURE);
4157aa09 266 }
0a4e18e1 267 if (getword_atoll(&nnbytes,&gwarea,'\t')<0) {
9f70c14e 268 debuga(_("Maybe you have a broken number of bytes in your %s file\n"),arqin);
06b39c87 269 exit(EXIT_FAILURE);
4157aa09 270 }
e5b2c6f0 271 if (getword_ptr(buf,&url,&gwarea,'\t')<0) {
10210234 272 debuga(_("Maybe you have a broken url in your %s file\n"),arqin);
06b39c87 273 exit(EXIT_FAILURE);
4157aa09 274 }
9c7c6346 275 if (getword(tmsg,sizeof(tmsg),&gwarea,'\t')<0) {
9f70c14e 276 debuga(_("Maybe you have a broken status in your %s file\n"),arqin);
06b39c87 277 exit(EXIT_FAILURE);
4157aa09 278 }
0a4e18e1 279 if (getword_atoll(&nnelap,&gwarea,'\t')<0) {
9f70c14e 280 debuga(_("Maybe you have a broken elapsed time in your %s file\n"),arqin);
06b39c87 281 exit(EXIT_FAILURE);
4157aa09 282 }
0a4e18e1 283 if (getword_atoll(&incache,&gwarea,'\t')<0) {
9f70c14e 284 debuga(_("Maybe you have a broken in cache column in your %s file\n"),arqin);
06b39c87 285 exit(EXIT_FAILURE);
4157aa09 286 }
0a4e18e1 287 if (getword_atoll(&oucache,&gwarea,'\n')<0) {
9f70c14e 288 debuga(_("Maybe you have a broken not in cache column in your %s file (%d)\n"),arqin,__LINE__);
06b39c87 289 exit(EXIT_FAILURE);
4157aa09 290 }
25697a35 291
594c9da4
FM
292 if(UserReportLimit<=0 || count<=UserReportLimit) {
293 fputs("<tr>",fp_ou);
25697a35 294
0349fa24 295 if(IndexTree == INDEX_TREE_DATE)
dfb337be
FM
296 sprintf(tmp6,"../%s",ImageFile);
297 else
298 strcpy(tmp6,"../../images");
25697a35 299
c0ec9cc7 300 if((ReportType & REPORT_TYPE_SITE_USER_TIME_DATE) != 0) {
c36c7384 301 s=_("DATE/TIME");
ac422f9b
FM
302 for(z1=0 ; z1<sizeof(ltext110)-1 && s[z1] ; z1++)
303 ltext110[z1]=tolower(s[z1]);
304 ltext110[z1]='\0';
e5b2c6f0 305 url_to_file(url,siteind,sizeof(siteind));
c36c7384 306 fprintf(fp_ou,"<td class=\"data\"><a href=\"tt%s-%s.html\"><img src=\"%s/datetime.png\" title=\"%s %s\" alt=\"T\"></a></td>",uinfo->filename,siteind,tmp6,ltext110,_("Report"));
c0ec9cc7
FM
307 } else {
308 fprintf(fp_ou,"<td class=\"data\"></td>");
309 }
310
594c9da4
FM
311 if(Privacy)
312 fprintf(fp_ou,"<td class=\"data2\"><span style=\"color:%s;\">%s</span></td>",PrivacyStringColor,PrivacyString);
313 else {
e5b2c6f0 314 fputs("<td class=\"data2\">",fp_ou);
594c9da4 315 if(BlockIt[0]!='\0') {
e5b2c6f0
FM
316 fprintf(fp_ou,"<a href=\"%s%s?url=",wwwDocumentRoot,BlockIt);
317 output_html_url(fp_ou,url);
318 fprintf(fp_ou,"\"><img src=\"%s/sarg-squidguard-block.png\"></a>&nbsp;",tmp6);
319 }
320 fputs("<a href=\"http://",fp_ou);
321 output_html_url(fp_ou,url);
e6c0aebd 322 fputs("\">",fp_ou);
e5b2c6f0
FM
323 output_html_string(fp_ou,url,100);
324 fputs("</a></td>",fp_ou);
594c9da4 325 }
4157aa09 326
594c9da4
FM
327 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
328 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum(twork,1));
329 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
330 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum(nnbytes,1));
9f20cdae
FM
331 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0) {
332 perc=(tnbytes) ? nnbytes * 100. / tnbytes : 0.;
333 fprintf(fp_ou,"<td class=\"data\">%3.2lf%%</td>",perc);
334 }
335 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0) {
336 inperc=(nnbytes) ? incache * 100. / nnbytes : 0.;
337 ouperc=(nnbytes) ? oucache * 100. / nnbytes : 0.;
338 fprintf(fp_ou,"<td class=\"data\">%3.2lf%%</td><td class=\"data\">%3.2lf%%</td>",inperc,ouperc);
339 }
594c9da4
FM
340 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
341 fprintf(fp_ou,"<td class=\"data\">%s</td>",buildtime(nnelap));
342 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
343 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum2(nnelap,1));
9f20cdae
FM
344 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0) {
345 perc2=(tnelap) ? nnelap * 100. / tnelap : 0.;
346 fprintf(fp_ou,"<td class=\"data\">%3.2lf%%</td>",perc2);
347 }
594c9da4
FM
348
349 if(strncmp(tmsg,"OK",2) != 0)
c36c7384 350 fprintf(fp_ou,"<td class=\"data\">%s</td>",_("DENIED"));
594c9da4
FM
351
352 fputs("</tr>\n",fp_ou);
354c1a68
FM
353 count++;
354 }
25697a35
GS
355
356 if(iprel) {
d25d4e6a 357 if (snprintf(arqip,sizeof(arqip),"%s/%s.ip",tmp,uinfo->filename)>=sizeof(arqip)) {
10210234 358 debuga(_("File name too long: %s/%s.ip\n"),tmp,uinfo->filename);
06b39c87 359 exit(EXIT_FAILURE);
d25d4e6a 360 }
936c9905 361
25697a35 362 if ((fp_ip = fopen(arqip, "r")) == 0){
9f70c14e 363 debuga(_("(html6) Cannot open file %s\n"),arqip);
06b39c87 364 exit(EXIT_FAILURE);
25697a35 365 }
0dda06bf 366
936c9905 367 if ((fp_ip2 = MY_FOPEN(tmp2, "a")) == 0){
9f70c14e 368 debuga(_("(html7) Cannot open file %s\n"),tmp2);
06b39c87 369 exit(EXIT_FAILURE);
25697a35 370 }
936c9905 371
afaa3b67 372 if ((line1=longline_create())==NULL) {
10210234 373 debuga(_("Not enough memory to read file %s\n"),arqip);
06b39c87 374 exit(EXIT_FAILURE);
e5b2c6f0 375 }
afaa3b67 376 while((buf=longline_read(fp_ip,line1))!=NULL) {
25697a35
GS
377 if(strstr(buf,url) != 0)
378 fputs(buf,fp_ip2);
379 }
afaa3b67 380 longline_destroy(&line1);
936c9905 381
25697a35
GS
382 fclose(fp_ip);
383 fclose(fp_ip2);
384
9a2efbd0 385 sprintf(csort,"sort -n -T \"%s\" -k 1,1 -k 5,5 -o \"%s\" \"%s\"",TempDir,tmp3,tmp2);
456d78a5
FM
386 cstatus=system(csort);
387 if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
9f70c14e
FM
388 debuga(_("sort command return status %d\n"),WEXITSTATUS(cstatus));
389 debuga(_("sort command: %s\n"),csort);
06b39c87 390 exit(EXIT_FAILURE);
456d78a5 391 }
936c9905
FM
392
393 if ((fp_ip = MY_FOPEN(tmp3, "r")) == 0) {
9f70c14e 394 debuga(_("(html8) Cannot open file %s\n"),tmp3);
06b39c87 395 exit(EXIT_FAILURE);
25697a35
GS
396 }
397
05b90947 398 olduserip[0]='\0';
dfb337be 399
afaa3b67 400 if ((line1=longline_create())==NULL) {
10210234 401 debuga(_("Not enough memory to read file %s\n"),arqip);
06b39c87 402 exit(EXIT_FAILURE);
e5b2c6f0 403 }
afaa3b67 404 while((buf=longline_read(fp_ip,line1))!=NULL) {
9c7c6346
FM
405 getword_start(&gwarea,buf);
406 if (getword(user_ip,sizeof(user_ip),&gwarea,'\t')<0) {
9f70c14e 407 debuga(_("Maybe you have a broken user IP in your %s file\n"),tmp3);
06b39c87 408 exit(EXIT_FAILURE);
05b90947 409 }
e5b2c6f0 410 if (getword_ptr(NULL,NULL,&gwarea,'\t')<0) {
d574e592 411 debuga(_("Maybe you have a broken url in your %s file\n"),tmp3);
06b39c87 412 exit(EXIT_FAILURE);
05b90947 413 }
9c7c6346 414 if (getword(userdia,sizeof(userdia),&gwarea,'\t')<0) {
9f70c14e 415 debuga(_("Maybe you have a broken day in your %s file\n"),tmp3);
06b39c87 416 exit(EXIT_FAILURE);
05b90947 417 }
9c7c6346 418 if (getword(userhora,sizeof(userhora),&gwarea,'\t')<0) {
9f70c14e 419 debuga(_("Maybe you have a broken time in your %s file\n"),tmp3);
06b39c87 420 exit(EXIT_FAILURE);
05b90947 421 }
0a4e18e1 422 if (getword_atoll(&userbytes,&gwarea,'\t')<0) {
9f70c14e 423 debuga(_("Maybe you have a broken size in your %s file\n"),tmp3);
06b39c87 424 exit(EXIT_FAILURE);
05b90947 425 }
0a4e18e1 426 if (getword_atoll(&userelap,&gwarea,'\t')<0) {
9f70c14e 427 debuga(_("Maybe you have a broken elapsed time in your %s file (%d)\n"),tmp3,__LINE__);
06b39c87 428 exit(EXIT_FAILURE);
05b90947 429 }
25697a35 430 if(strcmp(user_ip,olduserip) != 0) {
25697a35 431 sprintf(wwork1,"%s",fixnum(unbytes,1));
e5b2c6f0 432 fprintf(fp_ou,"<tr><td></td><td class=\"data\">%s</td><td></td><td class=\"data\">%s</td><td></td><td></td><td></td><td class=\"data\">%s</td><td class=\"data\">%lld</td></tr>\n",olduserip,wwork1,buildtime(unelap),unelap);
dfb337be 433
25697a35
GS
434 strcpy(olduserip,user_ip);
435 unacc=0;
436 unbytes=0;
437 unelap=0;
438 }
dfb337be 439
0a4e18e1
FM
440 unbytes=unbytes+userbytes;
441 unelap=unelap+userelap;
25697a35
GS
442 }
443
444 fclose(fp_ip);
afaa3b67 445 longline_destroy(&line1);
25697a35
GS
446
447 unlink(tmp2);
448 unlink(tmp3);
449
25697a35 450 sprintf(wwork1,"%s",fixnum(unbytes,1));
e5b2c6f0 451 fprintf(fp_ou,"<tr><td></td><td class=\"data\">%s</td><td></td><td class=\"data\">%s</td><td></td><td></td><td></td><td class=\"data\">%s</td><td class=\"data\">%lld</td></tr>\n",olduserip,wwork1,buildtime(unelap),unelap);
25697a35
GS
452 }
453
454 unacc=0;
455 unbytes=0;
456 unelap=0;
25697a35
GS
457 }
458
9f20cdae 459 fclose(fp_in);
afaa3b67 460 longline_destroy(&line);
9f20cdae 461
25697a35
GS
462 if(iprel)
463 unlink(arqip);
464 unlink(arqin);
465
085c1e1f 466 if((UserReportFields & USERREPORTFIELDS_TOTAL) != 0) {
c36c7384 467 fprintf(fp_ou,"<tr><th></th><th class=\"header_l\">%s</th>",_("TOTAL"));
594c9da4 468 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
b18ce4a0 469 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(tnacc,1));
594c9da4 470 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
b18ce4a0 471 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(tnbytes,1));
9f20cdae
FM
472 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0) {
473 perc=(totbytes) ? tnbytes *100. / totbytes :0.;
b18ce4a0 474 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th>",perc);
9f20cdae
FM
475 }
476 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0) {
477 inperc=(tnbytes) ? tnincache * 100. / tnbytes : 0.;
478 ouperc=(tnbytes) ? tnoucache * 100. / tnbytes : 0.;
b18ce4a0 479 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th><th class=\"header_r\">%3.2lf%%</th>",inperc,ouperc);
9f20cdae 480 }
594c9da4 481 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
b18ce4a0 482 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",buildtime(tnelap));
594c9da4 483 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
b18ce4a0 484 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum2(tnelap,1));
9f20cdae
FM
485 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0) {
486 perc2=(totelap) ? tnelap * 100. / totelap : 0.;
b18ce4a0 487 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th>",perc2);
9f20cdae 488 }
594c9da4 489 fputs("</tr>\n",fp_ou);
25697a35
GS
490 }
491
e6414a9d
FM
492 if(PerUserLimit > 0) {
493 if(tnbytes > (PerUserLimit*1000000)) {
25697a35
GS
494 limit_flag=0;
495 if(access(PerUserLimitFile, R_OK) == 0) {
496 if((fp_usr = fopen(PerUserLimitFile, "r")) == 0) {
bc877ad2 497 debuga(_("(html9) Cannot open file %s\n"),PerUserLimitFile);
06b39c87 498 exit(EXIT_FAILURE);
25697a35 499 }
491b862f 500 while(fgets(tmp6,sizeof(tmp6),fp_usr)!=NULL) {
9f20cdae 501 fixendofline(tmp6);
f2ec8c75 502 if(strcmp(tmp6,uinfo->label) == 0) {
25697a35
GS
503 limit_flag=1;
504 break;
505 }
506 }
507 fclose(fp_usr);
508 }
936c9905 509
25697a35
GS
510 if(!limit_flag) {
511 if((fp_usr = fopen(PerUserLimitFile, "a")) == 0) {
9f70c14e 512 debuga(_("(html10) Cannot open file %s\n"),PerUserLimitFile);
06b39c87 513 exit(EXIT_FAILURE);
25697a35 514 }
f2ec8c75 515 fprintf(fp_usr,"%s\n",uinfo->label);
25697a35 516 fclose(fp_usr);
936c9905 517
d2fe0c32 518 if(debug)
10210234 519 debuga(_("User %s limit exceeded (%d MB). Added to file %s\n"),uinfo->label,PerUserLimit,PerUserLimitFile);
25697a35
GS
520 }
521 }
522 }
523
d6e703cc
FM
524// if(indexonly) {
525// unlink(arqou);
526// continue;
527// }
528
9f20cdae 529 if ((ReportType & REPORT_TYPE_TOPUSERS) != 0 && (UserReportFields & USERREPORTFIELDS_AVERAGE) != 0) {
0a4e18e1
FM
530 totbytes2=totbytes/ntotuser;
531 totelap2=totelap/ntotuser;
dfb337be 532
c36c7384 533 fprintf(fp_ou,"<tr><th></th><th class=\"header_l\">%s</th>",_("AVERAGE"));
9f20cdae 534 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
b18ce4a0 535 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(ttnacc/ntotuser,1));
9f20cdae 536 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
b18ce4a0 537 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(totbytes2,1));
9f20cdae
FM
538 fprintf(fp_ou,"<th></th><th></th><th></th>");
539 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
b18ce4a0 540 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",buildtime(totelap2));
9f20cdae 541 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
b18ce4a0 542 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum2(totelap2,1));
9f20cdae
FM
543 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0) {
544 perc2 = (totelap) ? totelap2 * 100. / totelap : 0.;
b18ce4a0 545 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th>",perc2);
936c9905 546 }
9f20cdae
FM
547 fputs("</tr>\n",fp_ou);
548 }
25697a35 549
dfb337be 550 fputs("</table></div>\n",fp_ou);
fa6552b0
FM
551 if (write_html_trailer(fp_ou)<0)
552 debuga(_("Write error in file %s\n"),arqou);
553 if (fclose(fp_ou)==EOF)
554 debuga(_("Failed to close file %s - %s\n"),arqou,strerror(errno));
25697a35 555
d25d4e6a 556 htaccess(uinfo);
25697a35
GS
557 }
558
25697a35 559 (void)closedir(dirp);
c274f011 560 greport_cleanup();
25697a35
GS
561
562 return;
563}