]> git.ipfire.org Git - thirdparty/sarg.git/blobdiff - siteuser.c
Add support to decompress xz files
[thirdparty/sarg.git] / siteuser.c
index 8b4736fc4012bec0ca48bb5e24af785ad9595258..a582b09277c4d8c8167343c7a7c725de304d51b3 100644 (file)
@@ -1,10 +1,11 @@
 /*
- * AUTHOR: Pedro Lineu Orso                         pedro.orso@gmail.com
- *                                                            1998, 2008
  * SARG Squid Analysis Report Generator      http://sarg.sourceforge.net
+ *                                                            1998, 2015
  *
  * SARG donations:
  *      please look at http://sarg.sourceforge.net/donations.php
+ * Support:
+ *     http://sourceforge.net/projects/sarg/forums/forum/363374
  * ---------------------------------------------------------------------
  *
  *  This program is free software; you can redistribute it and/or modify
  */
 
 #include "include/conf.h"
+#include "include/defs.h"
 
 void siteuser(void)
 {
-
-   FILE *fp_in, *fp_ou;
-      
-   char user[MAXLEN];
-   char url[MAXLEN];
-   char wuser[MAXLEN];
-   char ourl[MAXLEN];
-   char nacc[20];
-   char nbytes[20];
-   char obytes[20];
-   char csort[255];
-   char general[MAXLEN];
-   char general2[MAXLEN];
-   char per[MAXLEN];
-   char sites[MAXLEN];
-   char report[MAXLEN];
-   char period[100];
-   int regs=0;
-   int ucount=0;
-   char *users;
-   long long int llbytes=0;
-   int cstatus;
-
-   if(strcmp(Privacy,"yes") == 0)
-      return;
-
-   nsitesusers = 0;
-   sprintf(general,"%s/sarg-general",dirname);
-   sprintf(sites,"%s/sarg-sites",dirname);
-   sprintf(general2,"%s/sarg-general2",dirname);
-   sprintf(per,"%s/sarg-period",dirname);
-   sprintf(report,"%s/siteuser.html",dirname);
-
-   if ((fp_in = fopen(per, "r")) == 0) {
-      fprintf(stderr, "SARG: (topuser) %s: %s\n",text[45],per);
-      exit(1);
-   }
-
-   fgets(period,sizeof(period),fp_in);
-   fclose(fp_in);
-
-   sprintf(csort,"sort -k 4,4 -k 1,1 -o '%s' '%s'",general2,general);
-   cstatus=system(csort);
-   if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
-      fprintf(stderr, "SARG: sort command return status %d\n",WEXITSTATUS(cstatus));
-      fprintf(stderr, "SARG: sort command: %s\n",csort);
-      exit(1);
-   }
-
-   if((fp_in=fopen(general2,"r"))==NULL) {
-     fprintf(stderr, "SARG: (topsite) %s: %s\n",text[8],general2);
-     fprintf(stderr, "SARG: sort command: %s\n",csort);
-     exit(1);
-   }
-
-   if((fp_ou=fopen(report,"w"))==NULL) {
-     fprintf(stderr, "SARG: (topsite) %s: %s\n",text[8],report);
-     exit(1);
-   }
-
-   fprintf(fp_ou, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">\n",CharSet);
-   css(fp_ou);
-   fputs("</head>\n",fp_ou);
-   if(strlen(FontFace) > 0) fprintf(fp_ou,"<font face=%s>\n",FontFace);
-   fprintf(fp_ou,"<body bgcolor=%s text=%s background='%s'>\n",BgColor,TxColor,BgImage);
-   if(strlen(LogoImage) > 0) fprintf(fp_ou, "<center><table cellpadding=\"0\" cellspacing=\"0\">\n<tr><th class=\"logo\"><img src='%s' border=0 align=absmiddle width=%s height=%s>&nbsp;%s</th></tr>\n<tr><td height=\"5\"></td></tr>\n</table>\n",LogoImage,Width,Height,LogoText);
-
-   if(strcmp(IndexTree,"date") == 0)
-      show_sarg(fp_ou, "../../..");
-   else
-      show_sarg(fp_ou, "..");
-
-   fputs("<center><table cellpadding=0 cellspacing=0>\n",fp_ou);
-   fprintf(fp_ou,"<tr><th class=\"title\">%s</th></tr>\n",Title);
-
-   fprintf(fp_ou,"<tr><td class=\"header3\">%s: %s</td></tr>\n",text[89],period);
-   fprintf(fp_ou,"<tr><th class=\"header3\">%s</th></tr>\n",text[85]);
-   fputs("</table></center>\n",fp_ou);
-
-   fputs("<center><table cellpadding=0 cellspacing=2>\n",fp_ou);
-   fputs("<tr><td></td></tr>\n",fp_ou);
-   if(strncmp(strlow(BytesInSitesUsersReport),"yes",3) == 0)
-      fprintf(fp_ou,"<tr><th class=\"header\">%s</th><th class=\"header\">%s</th><th class=\"header\">%s</th><th class=\"header\">%s</th></tr>\n",text[100],text[91],text[93],text[103]);
-   else
-      fprintf(fp_ou,"<tr><th class=\"header\">%s</th><th class=\"header\">%s</th><th class=\"header\">%s</th></tr>\n",text[100],text[91],text[103]);
-  
-   user[0]='\0';
-   ourl[0]='\0';
-   obytes[0]='\0';
-
-   if((users=(char *) malloc(204800))==NULL){
-      fprintf(stderr, "SARG: ERROR: %s",text[87]);
-      exit(1);
-   }
-   strcat(users," ");
-
-   while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
-      if (getword(user,sizeof(user),buf,' ')<0) {
-         printf("SARG: Maybe you have an invalid user in the %s file of the siteuser.\n",general2);
-         exit(1);
-      }
-      if(strcmp(user,"TOTAL") == 0)
-         continue;
-      if(userip)
-         fixip(user);
-
-      if(UserTabFile[0] != '\0') {
-         sprintf(warea,":%s:",user);
-        if((str=(char *) strstr(userfile,warea)) != (char *) NULL ) {
-            z1=0;
-            str2=(char *) strstr(str+1,":");
-            str2++;
-            bzero(name, MAXLEN);
-            while(str2[z1] != ':') {
-               name[z1]=str2[z1];
-              z1++;
-            }
-         } else strcpy(name,user);
-      } else strcpy(name,user);
-
-      if(dotinuser && strstr(name,"_")) {
-         str2=(char *)subs(name,"_",".");
-         strcpy(name,str2);
-      }
-
-      if(strcmp(Ip2Name,"yes") == 0)
-         ip2name(user,sizeof(user));
-
-      if(strcmp(Ip2Name,"yes") == 0)
-         ip2name(user,sizeof(user));
-
-      if (getword(nacc,sizeof(nacc),buf,' ')<0){
-         printf("SARG: Maybe you have an invalid number of access in your %s file of the siteuser.\n",general2);
-         exit(1);
-      }
-      if (atoi(nacc) > 0) nsitesusers = 1;
-      if (getword(nbytes,sizeof(nbytes),buf,' ')<0){
-         printf("SARG: Maybe you have an invalid number of bytes in your %s file of the siteuser.\n",general2);
-         exit(1);
-      }
-      if (getword(url,sizeof(url),buf,' ')<0) {
-         printf("SARG: Maybe you have an invalid url in your %s file of the siteuser.\n",general2);
-         exit(1);
-      }
-
-      if(!regs) {
-         strcpy(ourl,url);
-         strcpy(obytes,nbytes);
-         regs++;
-      }
-      
-      sprintf(wuser," %s ",name);
-      if(strstr(users,wuser) == 0 && strcmp(url,ourl) == 0) {
-         strcat(users,name);
-         strcat(users," ");
-         ucount++;
-         if(ucount>4) {
-            strcat(users,"<br>");
-            ucount=0;
-         }
-      }
-
-      if(SiteUsersReportLimit) {
-         if(regs >= SiteUsersReportLimit)
-            continue;
-      }
-
-      if(strlen(BlockIt) > 0)
-         sprintf(BlockImage,"<a href=\"%s%s?url=%s\"><img src=\"../images/sarg-squidguard-block.png\" border=\"0\"></a>&nbsp;",wwwDocumentRoot,BlockIt,ourl);
-      else BlockImage[0]='\0';
-
-      if(strcmp(url,ourl) != 0 && nsitesusers) {
-         if(strncmp(strlow(BytesInSitesUsersReport),"yes",3) == 0) {
-            llbytes=my_atoll(obytes);
-            sprintf(wwork2,"%s",fixnum(llbytes,1));
-            fprintf(fp_ou,"<tr><td class=\"data\">%d</td><td class=\"data2\">%s<a href=\"http://%s\">%s</td><td class=\"data\">%s</td><td class=\"data2\">%s</td></tr>\n",regs,BlockImage,ourl,ourl,wwork2,users);
-         } else
-            fprintf(fp_ou,"<tr><td class=\"data\">%d</td><td class=\"data2\">%s<a href=\"http://%s\">%s</td><td class=\"data2\">%s</td></tr>\n",regs,BlockImage,ourl,ourl,users);
-         regs++;
-         ucount=0;
-         strcpy(users,name);
-         strcat(users," ");
-         strcpy(ourl,url);
-         strcpy(obytes,nbytes);
-      }
-   }
-
-   if(nsitesusers) {
-      fprintf(fp_ou,"<tr><td class=\"data\">%d</td><td class=\"data2\"><a href=\"http://%s\">%s</td><td class=\"data2\">%s</td></tr>\n",regs,ourl,ourl,users);
-   }
-
-   unlink(general2);
-
-   fputs("</table></center>\n",fp_ou);
-
-   show_info(fp_ou);
-
-   fputs("</body>\n</html>\n",fp_ou);
-   
-   fclose(fp_in);
-   fclose(fp_ou);
-
-   if(users)
-      free(users);
-
-   return;
-
+       FileObject *fp_in;
+       FILE *fp_ou;
+
+       char *buf;
+       char *ourl;
+       char csort[4096];
+       char general[MAXLEN];
+       char general2[MAXLEN];
+       char sites[MAXLEN];
+       char report[MAXLEN];
+       int regs=0;
+       int ourl_size;
+       int url_len;
+       int topuser_link;
+       int nsitesusers;
+       int cstatus;
+       longline line;
+       struct generalitemstruct item;
+       struct userinfostruct *uinfo;
+
+       if(Privacy) {
+               if (debugz>=LogLevel_Process) debugaz(__FILE__,__LINE__,_("Sites & users report not generated because privacy option is on\n"));
+               return;
+       }
+
+       if (debugz>=LogLevel_Process)
+               debuga(__FILE__,__LINE__,_("Creating report to list who visisted what site...\n"));
+       nsitesusers = 0;
+       sprintf(general,"%s/sarg-general",outdirname);
+       sprintf(sites,"%s/sarg-sites",outdirname);
+       sprintf(general2,"%s/sarg-general2",outdirname);
+       sprintf(report,"%s/siteuser.html",outdirname);
+
+       if (snprintf(csort,sizeof(csort),"sort -t \"\t\" -k 4,4 -k 1,1 -o \"%s\" \"%s\"",general2,general)>=sizeof(csort)) {
+               debuga(__FILE__,__LINE__,_("Sort command too long when sorting file \"%s\" to \"%s\"\n"),general,general2);
+               exit(EXIT_FAILURE);
+       }
+       cstatus=system(csort);
+       if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
+               debuga(__FILE__,__LINE__,_("sort command return status %d\n"),WEXITSTATUS(cstatus));
+               debuga(__FILE__,__LINE__,_("sort command: %s\n"),csort);
+               exit(EXIT_FAILURE);
+       }
+
+       if((fp_in=FileObject_Open(general2))==NULL) {
+               debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),general2,FileObject_GetLastOpenError());
+               debuga(__FILE__,__LINE__,_("sort command: %s\n"),csort);
+               exit(EXIT_FAILURE);
+       }
+
+       if((fp_ou=fopen(report,"w"))==NULL) {
+               debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),report,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+
+       write_html_header(fp_ou,(IndexTree == INDEX_TREE_DATE) ? 3 : 1,_("Sites & Users"),HTML_JS_SORTTABLE);
+       fputs("<tr><td class=\"header_c\">",fp_ou);
+       fprintf(fp_ou,_("Period: %s"),period.html);
+       fputs("</td></tr>\n",fp_ou);
+       fprintf(fp_ou,"<tr><th class=\"header_c\">%s</th></tr>\n",_("Sites & Users"));
+       close_html_header(fp_ou);
+
+       fputs("<div class=\"report\"><table cellpadding=\"0\" cellspacing=\"2\"",fp_ou);
+       if (SortTableJs[0]) fputs(" class=\"sortable\"",fp_ou);
+       fprintf(fp_ou,">\n<thead><tr><th class=\"header_l\">%s</th><th class=\"header_l",_("NUM"));
+       if (SortTableJs[0]) fputs(" sorttable_alpha",fp_ou);
+       fprintf(fp_ou,"\">%s</th>",_("ACCESSED SITE"));
+       if(BytesInSitesUsersReport)
+               fprintf(fp_ou,"<th class=\"header_l\">%s</th>",_("BYTES"));
+       fputs("<th class=\"header_l",fp_ou);
+       if (SortTableJs[0]) fputs(" sorttable_alpha",fp_ou);
+       /* TRANSLATORS: This is a column header showing the users who visited each site. */
+       fprintf(fp_ou,"\">%s</th></tr></thead>\n",_("USERS"));
+
+       ourl=NULL;
+       ourl_size=0;
+
+       userinfo_clearflag();
+       topuser_link=((ReportType & REPORT_TYPE_USERS_SITES) != 0 && !indexonly);
+
+       if ((line=longline_create())==NULL) {
+               debuga(__FILE__,__LINE__,_("Not enough memory to read file \"%s\"\n"),general2);
+               exit(EXIT_FAILURE);
+       }
+
+       while((buf=longline_read(fp_in,line))!=NULL) {
+               ger_read(buf,&item,general2);
+               if(item.total) continue;
+               uinfo=userinfo_find_from_id(item.user);
+               if (!uinfo) {
+                       debuga(__FILE__,__LINE__,_("Unknown user ID %s in file \"%s\"\n"),item.user,general2);
+                       exit(EXIT_FAILURE);
+               }
+
+               if (item.nacc > 0) nsitesusers = 1;
+               if (!nsitesusers) continue;
+
+               if (ourl==NULL || strcmp(item.url,ourl) != 0) {
+                       if (regs>0) fputs("</td></tr>\n",fp_ou);
+
+                       regs++;
+                       if (SiteUsersReportLimit && regs >= SiteUsersReportLimit)
+                               break;
+                       fprintf(fp_ou,"<tr><td class=\"data\">%d</td><td class=\"data2\">",regs);
+
+                       url_len=strlen(item.url);
+                       if (url_len>=ourl_size) {
+                               ourl_size=url_len+1;
+                               ourl=realloc(ourl,ourl_size);
+                               if (!ourl) {
+                                       debuga(__FILE__,__LINE__,_("Not enough memory to store the url\n"));
+                                       exit(EXIT_FAILURE);
+                               }
+                       }
+                       strcpy(ourl,item.url);
+
+                       if(BlockIt[0]!='\0' && ourl[0]!=ALIAS_PREFIX) {
+                               fprintf(fp_ou,"<a href=\"%s%s?url=",wwwDocumentRoot,BlockIt);
+                               output_html_url(fp_ou,ourl);
+                               fputs("\"><img src=\"../images/sarg-squidguard-block.png\"></a>&nbsp;",fp_ou);
+                       }
+                       output_html_link(fp_ou,ourl,100);
+                       fputs("</td>",fp_ou);
+
+                       if (BytesInSitesUsersReport) {
+                               fputs("<td class=\"data\"",fp_ou);
+                               if (SortTableJs[0]) fprintf(fp_ou," sorttable_customkey=\"%"PRId64"\"",(int64_t)item.nbytes);
+                               fprintf(fp_ou,">%s</td>",fixnum(item.nbytes,1));
+                       }
+                       fputs("<td class=\"data2\">",fp_ou);
+
+                       userinfo_clearflag();
+                       if (topuser_link && uinfo->topuser)
+                               fprintf(fp_ou,"<a href=\"%s/%s.html\">%s</a>",uinfo->filename,uinfo->filename,uinfo->label);
+                       else
+                               fprintf(fp_ou,"%s",uinfo->label);
+                       uinfo->flag=1;
+               }
+               else if (uinfo->flag==0) {
+                       if (topuser_link && uinfo->topuser)
+                               fprintf(fp_ou," <a href=\"%s/%s.html\">%s</a>",uinfo->filename,uinfo->filename,uinfo->label);
+                       else
+                               fprintf(fp_ou," %s",uinfo->label);
+                       uinfo->flag=1;
+               }
+
+       }
+       if (FileObject_Close(fp_in)) {
+               debuga(__FILE__,__LINE__,_("Read error in \"%s\": %s\n"),general2,FileObject_GetLastCloseError());
+               exit(EXIT_FAILURE);
+       }
+       longline_destroy(&line);
+
+       if(regs>0) {
+               fputs("</td></tr>\n",fp_ou);
+       }
+       if (ourl) free(ourl);
+
+       if (!KeepTempLog && unlink(general2)) {
+               debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),general2,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+
+       fputs("</table></div>\n",fp_ou);
+       write_html_trailer(fp_ou);
+       if (fclose(fp_ou)==EOF) {
+               debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),report,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+
+       return;
 }