]> git.ipfire.org Git - thirdparty/sarg.git/blame - html.c
Don't rebuild sarg.1 when making all
[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 31{
9bd92830
FM
32 DIR *dirp;
33 FILE *fp_in, *fp_ou, *fp_ip, *fp_ip2, *fp_usr;
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;
38 long long int incache=0, oucache=0, tnincache=0, tnoucache=0, twork=0;
39 long long int ltemp;
40 long long int ntotuser;
41 long long int userbytes, userelap;
42 char *buf;
43 char arqin[MAXLEN], arqou[MAXLEN], arqper[MAXLEN], arqip[MAXLEN];
44 char *url, tmsg[50], csort[MAXLEN];
45 char user[MAXLEN], duser[MAXLEN];
46 char user_ip[MAXLEN], olduserip[MAXLEN], tmp2[MAXLEN], tmp3[MAXLEN];
47 char denied_report[255];
48 char *str;
49 char warea[MAXLEN];
50 char totuser[8];
51 char tmp6[MAXLEN];
52 char *user_url;
53 long long int tnacc=0, ttnacc=0, unacc=0;
54 double perc=0, perc2=0, ouperc=0, inperc=0;
55 int count;
56 int cstatus;
57 const char txtext[]=".txt";
58 const char *sort_field;
59 const char *sort_order;
60 int dlen;
61 char siteind[MAX_TRUNCATED_URL];
62 struct getwordstruct gwarea;
63 longline line,line1;
64 struct generalitemstruct item;
65 const struct userinfostruct *uinfo;
66
67 if((ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
68
69 strcpy(tmp2,tmp);
70 strcat(tmp2,"/sargtmp.unsort");
71
72 strcpy(tmp3,tmp);
73 strcat(tmp3,"/sargtmp.log");
74
75 snprintf(arqper,sizeof(arqper),"%s/sarg-general",outdirname);
76 if ((fp_in = fopen(arqper, "r")) == 0){
77 debuga(_("(html2) Cannot open file %s\n"),arqper);
78 exit(EXIT_FAILURE);
79 }
80 if ((line=longline_create())==NULL) {
81 debuga(_("Not enough memory to read file %s\n"),arqper);
82 exit(EXIT_FAILURE);
83 }
84 ttnacc=0;
85 totbytes=0;
86 totelap=0;
87 while((buf=longline_read(fp_in,line))!=NULL) {
88 ger_read(buf,&item,arqper);
89 if(item.total) {
90 ttnacc+=item.nacc;
91 totbytes+=item.nbytes;
92 totelap+=item.nelap;
93 }
94 }
95 fclose(fp_in);
96 longline_destroy(&line);
97
98 snprintf(arqper,sizeof(arqper),"%s/sarg-users",outdirname);
99 if ((fp_in = fopen(arqper, "r")) == 0){
100 debuga(_("(html11) Cannot open file %s\n"),arqper);
101 exit(EXIT_FAILURE);
102 }
103 if (!fgets(totuser,sizeof(totuser),fp_in)) {
104 debuga(_("(html11) read error in %s\n"),arqper);
105 exit(EXIT_FAILURE);
106 }
107 fclose(fp_in);
108 ntotuser=my_atoll(totuser);
109 if (ntotuser<=0) ntotuser=1;
110
111 greport_prepare();
112
113 sort_labels(&sort_field,&sort_order);
114
115 if ((dirp = opendir(tmp)) == NULL) {
116 debuga(_("Failed to open directory %s - %s\n"),tmp,strerror(errno));
117 exit(EXIT_FAILURE);
118 }
119 while ( (direntp = readdir( dirp )) != NULL ) {
120 dlen=strlen(direntp->d_name)-(sizeof(txtext)-1);
121 if (dlen<0) continue;
122 if(strcmp(direntp->d_name+dlen,txtext) != 0)
123 continue;
124
125 count=1;
126 if (dlen>0) {
127 if (dlen>=sizeof(user)) continue;
128 strncpy(user,direntp->d_name,dlen);
129 user[dlen]=0;
130 } else {
131 user[0]=0;
132 }
133
134 uinfo=userinfo_find_from_file(user);
135 if (!uinfo) {
136 debuga(_("Unknown user ID %s in directory %s\n"),user,tmp);
137 exit(EXIT_FAILURE);
138 }
139 str=strrchr(user,'.');
140 if (str)
141 strcpy(denied_report,str+1);
142 else
143 strcpy(denied_report,user);
144
145 if (snprintf(warea,sizeof(warea),"%s/%s",outdirname,user)>=sizeof(warea)) {
146 debuga(_("Destination directory too long: %s/%s\n"),outdirname,user);
147 exit(EXIT_FAILURE);
148 }
149 mkdir(warea,0755);
150
151 report_day(uinfo);
152 greport_day(uinfo);
153
154 if (snprintf(arqin,sizeof(arqin),"%s/%s",tmp,direntp->d_name)>=sizeof(arqin)) {
155 debuga(_("Input file name too long: %s/%s\n"),tmp,direntp->d_name);
156 exit(EXIT_FAILURE);
157 }
158 if (snprintf(arqou,sizeof(arqou),"%s/%s/%s.html",outdirname,uinfo->filename,uinfo->filename)>=sizeof(arqou)) {
159 debuga(_("Output file name too long: %s/%s/%s.html\n"),outdirname,uinfo->filename,uinfo->filename);
160 exit(EXIT_FAILURE);
161 }
162 if (snprintf(duser,sizeof(duser),"%s/%s/denied_%s.html",tmp,direntp->d_name,denied_report)>=sizeof(duser)) {
163 debuga(_("File name too long: %s/%s/denied_%s.html\n"),tmp,direntp->d_name,denied_report);
164 exit(EXIT_FAILURE);
165 }
166 if(access(duser, R_OK) != 0)
167 denied_report[0]='\0';
168
169 if ((fp_in = fopen(arqin, "r")) == 0){
170 debuga(_("(html3) Cannot open file %s\n"),arqin);
171 exit(EXIT_FAILURE);
172 }
173
174 if ((line=longline_create())==NULL) {
175 debuga(_("Not enough memory to read file %s\n"),arqin);
176 exit(EXIT_FAILURE);
177 }
178
179 tnacc=0;
180 tnbytes=0;
181 tnelap=0;
182 tnincache=0;
183 tnoucache=0;
184 while((buf=longline_read(fp_in,line))!=NULL) {
185 getword_start(&gwarea,buf);
186 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
187 debuga(_("There is a broken number of access in file %s\n"),arqin);
188 exit(EXIT_FAILURE);
189 }
190 tnacc+=ltemp;
191 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
192 debuga(_("There is a broken downloaded size in file %s\n"),arqin);
193 exit(EXIT_FAILURE);
194 }
195 tnbytes+=ltemp;
196 if (getword_ptr(NULL,NULL,&gwarea,'\t')<0) {
197 debuga(_("There is a broken url in file %s\n"),arqin);
198 exit(EXIT_FAILURE);
199 }
200 if (getword_skip(MAXLEN,&gwarea,'\t')<0) {
201 debuga(_("There is a broken access code in file %s\n"),arqin);
202 exit(EXIT_FAILURE);
203 }
204 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
205 debuga(_("There is a broken elapsed time in file %s\n"),arqin);
206 exit(EXIT_FAILURE);
207 }
208 tnelap+=ltemp;
209 if (getword_atoll(&ltemp,&gwarea,'\t')<0) {
210 debuga(_("There is a broken in-cache volume in file %s\n"),arqin);
211 exit(EXIT_FAILURE);
212 }
213 tnincache+=ltemp;
214 if (getword_atoll(&ltemp,&gwarea,'\n')<0) {
215 debuga(_("There is a broken out-cache volume in file %s\n"),arqin);
216 exit(EXIT_FAILURE);
217 }
218 tnoucache+=ltemp;
219 }
220
221 rewind(fp_in);
222
223 if ((fp_ou = fopen(arqou, "w")) == 0){
224 debuga(_("(html5) Cannot open file %s\n"),arqou);
225 exit(EXIT_FAILURE);
226 }
227
228 write_html_header(fp_ou,(IndexTree == INDEX_TREE_DATE) ? 4 : 2,_("User report"),HTML_JS_SORTTABLE);
229 fprintf(fp_ou,"<tr><td class=\"header_c\">%s:&nbsp;%s</td></tr>\n",_("Period"),period.html);
230 fprintf(fp_ou,"<tr><td class=\"header_c\">%s:&nbsp;%s</td></tr>\n",_("User"),uinfo->label);
231 fputs("<tr><td class=\"header_c\">",fp_ou);
232 fprintf(fp_ou,_("Sort:&nbsp;%s, %s"),sort_field,sort_order);
233 fputs("</td></tr>\n",fp_ou);
234 fprintf(fp_ou,"<tr><th class=\"header_c\">%s</th></tr>\n",_("User report"));
235 close_html_header(fp_ou);
236
237 fputs("<div class=\"report\"><table cellpadding=\"2\" cellspacing=\"1\"",fp_ou);
238 if (SortTableJs[0]) fputs(" class=\"sortable\"",fp_ou);
239 fputs(">\n",fp_ou);
240
241 /*! \bug This line lays before the header of the table and is therefore invalid
242 HTML. It will also break the sorttable script. Beside, I suspect it serves no purpose.
243 */
244 if(denied_report[0]!='\0') {
245 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"));
246 }
247
248 fputs("<thead><tr><th class=\"sorttable_nosort\"></th><th class=\"header_l",fp_ou);
249 if (SortTableJs[0]) fputs(" sorttable_alpha",fp_ou);
250 fprintf(fp_ou,"\">%s</th>",_("ACCESSED SITE"));
251
252 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
253 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("CONNECT"));
254 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
255 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("BYTES"));
256 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0)
257 fprintf(fp_ou,"<th class=\"header_l\">%%%s</th>",_("BYTES"));
258 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0)
259 fprintf(fp_ou,"<th class=\"header_c\" colspan=\"2\">%s</th><th style=\"display:none;\"></th>",_("IN-CACHE-OUT"));
260 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
261 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("ELAPSED TIME"));
262 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
263 fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("MILLISEC"));
264 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0)
265 fprintf(fp_ou,"<th class=\"header_l\">%%%s</th>",_("TIME"));
266
267 fputs("</tr></thead>\n",fp_ou);
268
269 if(debug) {
270 debuga(_("Making report: %s\n"),uinfo->id);
271 }
272
273 while((buf=longline_read(fp_in,line))!=NULL) {
274 getword_start(&gwarea,buf);
275 if (getword_atoll(&twork,&gwarea,'\t')<0) {
276 debuga(_("There is a broken number of access in file %s\n"),arqin);
277 exit(EXIT_FAILURE);
278 }
279 if (getword_atoll(&nnbytes,&gwarea,'\t')<0) {
280 debuga(_("There is a broken number of bytes in file %s\n"),arqin);
281 exit(EXIT_FAILURE);
282 }
283 if (getword_ptr(buf,&url,&gwarea,'\t')<0) {
284 debuga(_("There is a broken url in file %s\n"),arqin);
285 exit(EXIT_FAILURE);
286 }
287 if (getword(tmsg,sizeof(tmsg),&gwarea,'\t')<0) {
288 debuga(_("There is a broken access code in file %s\n"),arqin);
289 exit(EXIT_FAILURE);
290 }
291 if (getword_atoll(&nnelap,&gwarea,'\t')<0) {
292 debuga(_("There is a broken elapsed time in file %s\n"),arqin);
293 exit(EXIT_FAILURE);
294 }
295 if (getword_atoll(&incache,&gwarea,'\t')<0) {
296 debuga(_("There is a broken in cache column in file %s\n"),arqin);
297 exit(EXIT_FAILURE);
298 }
299 if (getword_atoll(&oucache,&gwarea,'\n')<0) {
300 debuga(_("There is a broken out of cache column in file %s (%d)\n"),arqin,__LINE__);
301 exit(EXIT_FAILURE);
302 }
303
304 if(UserReportLimit<=0 || count<=UserReportLimit) {
305 fputs("<tr>",fp_ou);
306
307 if(IndexTree == INDEX_TREE_DATE)
308 sprintf(tmp6,"../%s",ImageFile);
309 else
310 strcpy(tmp6,"../../images");
311
312 if((ReportType & REPORT_TYPE_SITE_USER_TIME_DATE) != 0) {
313 url_to_file(url,siteind,sizeof(siteind));
314 fprintf(fp_ou,"<td class=\"data\"><a href=\"tt%s-%s.html\"><img src=\"%s/datetime.png\" title=\"%s\" alt=\"T\"></a></td>",uinfo->filename,siteind,tmp6,_("date/time report"));
315 } else {
316 fprintf(fp_ou,"<td class=\"data\"></td>");
317 }
318
319 if(Privacy)
320 fprintf(fp_ou,"<td class=\"data2\"><span style=\"color:%s;\">%s</span></td>",PrivacyStringColor,PrivacyString);
321 else {
322 fputs("<td class=\"data2\">",fp_ou);
323 if(BlockIt[0]!='\0') {
324 fprintf(fp_ou,"<a href=\"%s%s?url=",wwwDocumentRoot,BlockIt);
325 output_html_url(fp_ou,url);
326 fprintf(fp_ou,"\"><img src=\"%s/sarg-squidguard-block.png\"></a>&nbsp;",tmp6);
327 }
328 fputs("<a href=\"http://",fp_ou);
329 output_html_url(fp_ou,url);
330 fputs("\">",fp_ou);
331 output_html_string(fp_ou,url,100);
332 fputs("</a></td>",fp_ou);
333 }
334
335 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0) {
336 fputs("<td class=\"data\"",fp_ou);
337 if (SortTableJs[0]) fprintf(fp_ou," sorttable_customkey=\"%"PRId64"\"",(int64_t)twork);
338 fprintf(fp_ou,">%s</td>",fixnum(twork,1));
339 }
340 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0) {
341 fputs("<td class=\"data\"",fp_ou);
342 if (SortTableJs[0]) fprintf(fp_ou," sorttable_customkey=\"%"PRId64"\"",(int64_t)nnbytes);
343 fprintf(fp_ou,">%s</td>",fixnum(nnbytes,1));
344 }
345 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0) {
346 perc=(tnbytes) ? nnbytes * 100. / tnbytes : 0.;
347 fprintf(fp_ou,"<td class=\"data\">%3.2lf%%</td>",perc);
348 }
349 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0) {
350 inperc=(nnbytes) ? incache * 100. / nnbytes : 0.;
351 ouperc=(nnbytes) ? oucache * 100. / nnbytes : 0.;
352 fprintf(fp_ou,"<td class=\"data\">%3.2lf%%</td><td class=\"data\">%3.2lf%%</td>",inperc,ouperc);
353 }
354 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0) {
355 fputs("<td class=\"data\"",fp_ou);
356 if (SortTableJs[0]) fprintf(fp_ou," sorttable_customkey=\"%"PRId64"\"",(int64_t)nnelap);
357 fprintf(fp_ou,">%s</td>",buildtime(nnelap));
358 }
359 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0) {
360 fputs("<td class=\"data\"",fp_ou);
361 if (SortTableJs[0]) fprintf(fp_ou," sorttable_customkey=\"%"PRId64"\"",(int64_t)nnelap);
362 fprintf(fp_ou,">%s</td>",fixnum2(nnelap,1));
363 }
364 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0) {
365 perc2=(tnelap) ? nnelap * 100. / tnelap : 0.;
366 fprintf(fp_ou,"<td class=\"data\">%3.2lf%%</td>",perc2);
367 }
368
369 if(strncmp(tmsg,"OK",2) != 0)
370 fprintf(fp_ou,"<td class=\"data\">%s</td>",_("DENIED"));
371
372 fputs("</tr>\n",fp_ou);
373 count++;
374 } else if ((ReportType & REPORT_TYPE_SITE_USER_TIME_DATE) != 0) {
375 url_to_file(url,siteind,sizeof(siteind));
376 snprintf(tmp2,sizeof(tmp2),"%s/%s/tt%s-%s.html",outdirname,uinfo->filename,uinfo->filename,siteind);
377 if (unlink(tmp2)!=0) {
378 debuga(_("Cannot delete unused file \"%s\" - %s\n"),tmp2,strerror(errno));
379 }
380 }
381
382 if(iprel) {
383 if (snprintf(arqip,sizeof(arqip),"%s/%s.ip",tmp,uinfo->filename)>=sizeof(arqip)) {
384 debuga(_("File name too long: %s/%s.ip\n"),tmp,uinfo->filename);
385 exit(EXIT_FAILURE);
386 }
387
388 if ((fp_ip = fopen(arqip, "r")) == 0){
389 debuga(_("(html6) Cannot open file %s\n"),arqip);
390 exit(EXIT_FAILURE);
391 }
392
393 if ((fp_ip2 = MY_FOPEN(tmp2, "a")) == 0){
394 debuga(_("(html7) Cannot open file %s\n"),tmp2);
395 exit(EXIT_FAILURE);
396 }
397
398 if ((line1=longline_create())==NULL) {
399 debuga(_("Not enough memory to read file %s\n"),arqip);
400 exit(EXIT_FAILURE);
401 }
402 while((buf=longline_read(fp_ip,line1))!=NULL) {
403 getword_start(&gwarea,buf);
404 if (getword(user_ip,sizeof(user_ip),&gwarea,'\t')<0) {
405 debuga(_("Maybe you have a broken user IP in your %s file\n"),tmp3);
406 exit(EXIT_FAILURE);
407 }
408 if (getword_ptr(buf,&user_url,&gwarea,'\t')<0) {
409 debuga(_("Maybe you have a broken url in your %s file\n"),tmp3);
410 exit(EXIT_FAILURE);
411 }
412 if (strncmp(user_url,url,strlen(url))!=0) continue;
413 if (getword_skip(15,&gwarea,'\t')<0) {
414 debuga(_("Maybe you have a broken day in your %s file\n"),tmp3);
415 exit(EXIT_FAILURE);
416 }
417 if (getword_skip(15,&gwarea,'\t')<0) {
418 debuga(_("Maybe you have a broken time in your %s file\n"),tmp3);
419 exit(EXIT_FAILURE);
420 }
421 if (getword_atoll(&userbytes,&gwarea,'\t')<0) {
422 debuga(_("Maybe you have a broken size in your %s file\n"),tmp3);
423 exit(EXIT_FAILURE);
424 }
425 if (getword_atoll(&userelap,&gwarea,'\0')<0) {
426 debuga(_("Maybe you have a broken elapsed time in your %s file\n"),tmp3);
427 exit(EXIT_FAILURE);
428 }
429 fprintf(fp_ip2,"%s\t%"PRIu64"\t%"PRIu64"\n",user_ip,(uint64_t)userbytes,(uint64_t)userelap);
430 }
431 longline_destroy(&line1);
432
433 fclose(fp_ip);
434 fclose(fp_ip2);
435
436 sprintf(csort,"sort -n -T \"%s\" -k 1,1 -k 2,2 -o \"%s\" \"%s\"",tmp,tmp3,tmp2);
437 cstatus=system(csort);
438 if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
439 debuga(_("sort command return status %d\n"),WEXITSTATUS(cstatus));
440 debuga(_("sort command: %s\n"),csort);
441 exit(EXIT_FAILURE);
442 }
443
444 if ((fp_ip = MY_FOPEN(tmp3, "r")) == 0) {
445 debuga(_("(html8) Cannot open file %s\n"),tmp3);
446 exit(EXIT_FAILURE);
447 }
448
449 olduserip[0]='\0';
450
451 if ((line1=longline_create())==NULL) {
452 debuga(_("Not enough memory to read file %s\n"),arqip);
453 exit(EXIT_FAILURE);
454 }
455 while((buf=longline_read(fp_ip,line1))!=NULL) {
456 getword_start(&gwarea,buf);
457 if (getword(user_ip,sizeof(user_ip),&gwarea,'\t')<0) {
458 debuga(_("Maybe you have a broken user IP in your %s file\n"),tmp3);
459 exit(EXIT_FAILURE);
460 }
461 if (getword_atoll(&userbytes,&gwarea,'\t')<0) {
462 debuga(_("Maybe you have a broken size in your %s file\n"),tmp3);
463 exit(EXIT_FAILURE);
464 }
465 if (getword_atoll(&userelap,&gwarea,'\0')<0) {
466 debuga(_("Maybe you have a broken elapsed time in your %s file\n"),tmp3);
467 exit(EXIT_FAILURE);
468 }
469 if(strcmp(user_ip,olduserip) != 0) {
470 if (olduserip[0]!='\0') {
471 fprintf(fp_ou,"<tr><td></td><td class=\"data\">%s</td>",olduserip);
472 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
473 fputs("<td></td>",fp_ou);
474 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
475 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum(unbytes,1));
476 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0)
477 fputs("<td></td>",fp_ou);
478 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0)
479 fputs("</td><td></td><td></td>",fp_ou);
480 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
481 fprintf(fp_ou,"<td class=\"data\">%s</td>",buildtime(unelap));
482 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
483 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum2(unelap,1));
484 fputs("</tr>\n",fp_ou);
485 }
486
487 strcpy(olduserip,user_ip);
488 unacc=0;
489 unbytes=0;
490 unelap=0;
491 }
492
493 unbytes+=userbytes;
494 unelap+=userelap;
495 }
496
497 fclose(fp_ip);
498 longline_destroy(&line1);
499
500 unlink(tmp2);
501 unlink(tmp3);
502
503 if (olduserip[0]!='\0') {
504 fprintf(fp_ou,"<tr><td></td><td class=\"data\">%s</td>",olduserip);
505 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
506 fputs("<td></td>",fp_ou);
507 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
508 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum(unbytes,1));
509 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0)
510 fputs("<td></td>",fp_ou);
511 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0)
512 fputs("</td><td></td><td></td>",fp_ou);
513 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
514 fprintf(fp_ou,"<td class=\"data\">%s</td>",buildtime(unelap));
515 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
516 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum2(unelap,1));
517 fputs("</tr>\n",fp_ou);
518 }
519 }
520
521 unacc=0;
522 unbytes=0;
523 unelap=0;
524 }
525
526 fclose(fp_in);
527 longline_destroy(&line);
528
529 if(iprel)
530 unlink(arqip);
531 unlink(arqin);
532
533 if ((UserReportFields & (USERREPORTFIELDS_TOTAL | USERREPORTFIELDS_AVERAGE)) != 0)
534 fputs("<tfoot>",fp_ou);
535
536 if((UserReportFields & USERREPORTFIELDS_TOTAL) != 0) {
537 fprintf(fp_ou,"<tr><th></th><th class=\"header_l\">%s</th>",_("TOTAL"));
538 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
539 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(tnacc,1));
540 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
541 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(tnbytes,1));
542 if((UserReportFields & USERREPORTFIELDS_SETYB) != 0) {
543 perc=(totbytes) ? tnbytes *100. / totbytes :0.;
544 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th>",perc);
545 }
546 if((UserReportFields & USERREPORTFIELDS_IN_CACHE_OUT) != 0) {
547 inperc=(tnbytes) ? tnincache * 100. / tnbytes : 0.;
548 ouperc=(tnbytes) ? tnoucache * 100. / tnbytes : 0.;
549 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th><th class=\"header_r\">%3.2lf%%</th>",inperc,ouperc);
550 }
551 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
552 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",buildtime(tnelap));
553 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
554 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum2(tnelap,1));
555 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0) {
556 perc2=(totelap) ? tnelap * 100. / totelap : 0.;
557 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th>",perc2);
558 }
559 fputs("</tr>\n",fp_ou);
560 }
561
562 if(PerUserLimit > 0) {
563 if(tnbytes > (PerUserLimit*1000000)) {
564 limit_flag=0;
565 if(access(PerUserLimitFile, R_OK) == 0) {
566 if((fp_usr = fopen(PerUserLimitFile, "r")) == 0) {
567 debuga(_("(html9) Cannot open file %s\n"),PerUserLimitFile);
568 exit(EXIT_FAILURE);
569 }
570 while(fgets(tmp6,sizeof(tmp6),fp_usr)!=NULL) {
571 fixendofline(tmp6);
572 if(strcmp(tmp6,uinfo->label) == 0) {
573 limit_flag=1;
574 break;
575 }
576 }
577 fclose(fp_usr);
578 }
579
580 if(!limit_flag) {
581 if((fp_usr = fopen(PerUserLimitFile, "a")) == 0) {
582 debuga(_("(html10) Cannot open file %s\n"),PerUserLimitFile);
583 exit(EXIT_FAILURE);
584 }
585 fprintf(fp_usr,"%s\n",uinfo->label);
586 fclose(fp_usr);
587
588 if(debug)
589 debuga(_("User %s limit exceeded (%d MB). Added to file %s\n"),uinfo->label,PerUserLimit,PerUserLimitFile);
590 }
591 }
592 }
25697a35 593
9bd92830
FM
594 if ((ReportType & REPORT_TYPE_TOPUSERS) != 0 && (UserReportFields & USERREPORTFIELDS_AVERAGE) != 0) {
595 totbytes2=totbytes/ntotuser;
596 totelap2=totelap/ntotuser;
597
598 fprintf(fp_ou,"<tr><th></th><th class=\"header_l\">%s</th>",_("AVERAGE"));
599 if((UserReportFields & USERREPORTFIELDS_CONNECT) != 0)
600 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(ttnacc/ntotuser,1));
601 if((UserReportFields & USERREPORTFIELDS_BYTES) != 0)
602 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum(totbytes2,1));
603 fprintf(fp_ou,"<th></th><th></th><th></th>");
604 if((UserReportFields & USERREPORTFIELDS_USED_TIME) != 0)
605 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",buildtime(totelap2));
606 if((UserReportFields & USERREPORTFIELDS_MILISEC) != 0)
607 fprintf(fp_ou,"<th class=\"header_r\">%s</th>",fixnum2(totelap2,1));
608 if((UserReportFields & USERREPORTFIELDS_PTIME) != 0) {
609 perc2 = (totelap) ? totelap2 * 100. / totelap : 0.;
610 fprintf(fp_ou,"<th class=\"header_r\">%3.2lf%%</th>",perc2);
611 }
612 fputs("</tr>\n",fp_ou);
613 }
614
615 if ((UserReportFields & (USERREPORTFIELDS_TOTAL | USERREPORTFIELDS_AVERAGE)) != 0)
616 fputs("</tfoot>",fp_ou);
617
618 fputs("</table></div>\n",fp_ou);
619 if (write_html_trailer(fp_ou)<0)
620 debuga(_("Write error in file %s\n"),arqou);
621 if (fclose(fp_ou)==EOF)
622 debuga(_("Failed to close file %s - %s\n"),arqou,strerror(errno));
623
624 htaccess(uinfo);
625 }
626
627 (void)closedir(dirp);
628 greport_cleanup();
629
630 return;
25697a35 631}