]> git.ipfire.org Git - thirdparty/sarg.git/blob - siteuser.c
Output the period as an HTML text in the HTML reports
[thirdparty/sarg.git] / siteuser.c
1 /*
2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
3 * 1998, 2010
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
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"
28 #include "include/defs.h"
29
30 void siteuser(void)
31 {
32
33 FILE *fp_in, *fp_ou;
34
35 char *buf;
36 char wuser[MAXLEN];
37 char *ourl;
38 char csort[255];
39 char general[MAXLEN];
40 char general2[MAXLEN];
41 char sites[MAXLEN];
42 char report[MAXLEN];
43 int regs=0;
44 int ucount=0;
45 int ourl_size;
46 int url_len;
47 char *users;
48 long long int obytes;
49 int cstatus;
50 longline line;
51 struct generalitemstruct item;
52 const struct userinfostruct *uinfo;
53
54 if(Privacy)
55 return;
56
57 nsitesusers = 0;
58 sprintf(general,"%s/sarg-general",outdirname);
59 sprintf(sites,"%s/sarg-sites",outdirname);
60 sprintf(general2,"%s/sarg-general2",outdirname);
61 sprintf(report,"%s/siteuser.html",outdirname);
62
63 sprintf(csort,"sort -k 4,4 -k 1,1 -o \"%s\" \"%s\"",general2,general);
64 cstatus=system(csort);
65 if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
66 debuga(_("sort command return status %d\n"),WEXITSTATUS(cstatus));
67 debuga(_("sort command: %s\n"),csort);
68 exit(EXIT_FAILURE);
69 }
70
71 if((fp_in=fopen(general2,"r"))==NULL) {
72 debuga(_("(siteuser) Cannot open log file %s\n"),general2);
73 debuga(_("sort command: %s\n"),csort);
74 exit(EXIT_FAILURE);
75 }
76
77 if((fp_ou=fopen(report,"w"))==NULL) {
78 debuga(_("(siteuser) Cannot open log file %s\n"),report);
79 exit(EXIT_FAILURE);
80 }
81
82 write_html_header(fp_ou,(IndexTree == INDEX_TREE_DATE) ? 3 : 1,_("Sites & Users"));
83 fputs("<tr><td class=\"header_c\">",fp_ou);
84 fprintf(fp_ou,_("Period: %s"),period.html);
85 fputs("</td></tr>\n",fp_ou);
86 fprintf(fp_ou,"<tr><th class=\"header_c\">%s</th></tr>\n",_("Sites & Users"));
87 close_html_header(fp_ou);
88
89 fputs("<div class=\"report\"><table cellpadding=\"0\" cellspacing=\"2\">\n",fp_ou);
90 fputs("<tr><td></td></tr>\n",fp_ou);
91 if(BytesInSitesUsersReport)
92 fprintf(fp_ou,"<tr><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th></tr>\n",_("NUM"),_("ACCESSED SITE"),_("BYTES"),_("USERS"));
93 else
94 fprintf(fp_ou,"<tr><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th></tr>\n",_("NUM"),_("ACCESSED SITE"),_("USERS"));
95
96 ourl=NULL;
97 ourl_size=0;
98 obytes=0;
99
100 if((users=(char *) malloc(204800))==NULL){
101 debuga(_("ERROR: Cannot load. Memory fault\n"));
102 exit(EXIT_FAILURE);
103 }
104 strcpy(users," ");
105
106 if ((line=longline_create())==NULL) {
107 debuga(_("Not enough memory to read file %s\n"),general2);
108 exit(EXIT_FAILURE);
109 }
110
111 while((buf=longline_read(fp_in,line))!=NULL) {
112 ger_read(buf,&item,general2);
113 if(item.total) continue;
114 uinfo=userinfo_find_from_id(item.user);
115 if (!uinfo) {
116 debuga(_("Unknown user ID %s in file %s\n"),item.user,general2);
117 exit(EXIT_FAILURE);
118 }
119
120 if (item.nacc > 0) nsitesusers = 1;
121 if(!regs) {
122 url_len=strlen(item.url);
123 if (!ourl || url_len>=ourl_size) {
124 ourl_size=url_len+1;
125 ourl=realloc(ourl,ourl_size);
126 if (!ourl) {
127 debuga(_("Not enough memory to store the url\n"));
128 exit(EXIT_FAILURE);
129 }
130 }
131 strcpy(ourl,item.url);
132 obytes=item.nbytes;
133 regs++;
134 }
135
136 sprintf(wuser," %s ",uinfo->label);
137 if(strstr(users,wuser) == 0 && strcmp(item.url,ourl) == 0) {
138 strcat(users,uinfo->label);
139 strcat(users," ");
140 ucount++;
141 if(ucount>4) {
142 strcat(users,"<br>");
143 ucount=0;
144 }
145 }
146
147 if(SiteUsersReportLimit) {
148 if(regs >= SiteUsersReportLimit)
149 continue;
150 }
151
152 if(strcmp(item.url,ourl) != 0 && nsitesusers) {
153 fprintf(fp_ou,"<tr><td class=\"data\">%d</td><td class=\"data2\">",regs);
154 if(BlockIt[0]!='\0') {
155 fprintf(fp_ou,"<a href=\"%s%s?url=",wwwDocumentRoot,BlockIt);
156 output_html_url(fp_ou,ourl);
157 fputs("\"><img src=\"../images/sarg-squidguard-block.png\"></a>&nbsp;",fp_ou);
158 }
159 fputs("<a href=\"http://",fp_ou);
160 output_html_url(fp_ou,ourl);
161 fputs("\">",fp_ou);
162 output_html_string(fp_ou,ourl,100);
163 fputs("</a></td>",fp_ou);
164
165 if(BytesInSitesUsersReport)
166 fprintf(fp_ou,"<td class=\"data\">%s</td>",fixnum(obytes,1));
167 fprintf(fp_ou,"<td class=\"data2\">%s</td></tr>\n",users);
168
169 regs++;
170 ucount=0;
171 strcpy(users,uinfo->label);
172 strcat(users," ");
173 url_len=strlen(item.url);
174 if (url_len>=ourl_size) {
175 ourl_size=url_len+1;
176 ourl=realloc(ourl,ourl_size);
177 if (!ourl) {
178 debuga(_("Not enough memory to store the url\n"));
179 exit(EXIT_FAILURE);
180 }
181 }
182 strcpy(ourl,item.url);
183 obytes=item.nbytes;
184 }
185 }
186 fclose(fp_in);
187 longline_destroy(&line);
188
189 if(nsitesusers) {
190 fprintf(fp_ou,"<tr><td class=\"data\">%d</td><td class=\"data2\"><a href=\"http://",regs);
191 output_html_url(fp_ou,ourl);
192 fputs("\">",fp_ou);
193 output_html_string(fp_ou,ourl,100);
194 fprintf(fp_ou,"</a></td><td class=\"data2\">%s</td></tr>\n",users);
195 }
196 if (ourl) free(ourl);
197
198 unlink(general2);
199
200 fputs("</table></div>\n",fp_ou);
201 if (write_html_trailer(fp_ou)<0)
202 debuga(_("Write error in file %s\n"),report);
203 if (fclose(fp_ou)==EOF)
204 debuga(_("Failed to close file %s - %s\n"),report,strerror(errno));
205
206 if(users)
207 free(users);
208
209 return;
210 }