]> git.ipfire.org Git - thirdparty/sarg.git/blob - denied.c
Make the reports title consistent
[thirdparty/sarg.git] / denied.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 gen_denied_report(void)
31 {
32
33 FILE *fp_in = NULL, *fp_ou = NULL;
34
35 char *buf;
36 char *url;
37 char denied_in[MAXLEN];
38 char report[MAXLEN];
39 char ip[MAXLEN];
40 char oip[MAXLEN];
41 char user[MAXLEN];
42 char ouser[MAXLEN];
43 char ouser2[MAXLEN];
44 char data[15];
45 char hora[15];
46 int z=0;
47 int count=0;
48 int new_user;
49 struct getwordstruct gwarea;
50 longline line;
51 struct userinfostruct *uinfo;
52
53 ouser[0]='\0';
54 ouser2[0]='\0';
55
56 sprintf(denied_in,"%s/sarg/denied.log",TempDir);
57 if(!denied_count) {
58 unlink(denied_in);
59 return;
60 }
61
62 sprintf(report,"%s/denied.html",outdirname);
63
64 if((fp_in=MY_FOPEN(denied_in,"r"))==NULL) {
65 debuga(_("(denied) Cannot open log file %s\n"),denied_in);
66 exit(EXIT_FAILURE);
67 }
68
69 if((fp_ou=MY_FOPEN(report,"w"))==NULL) {
70 debuga(_("(denied) Cannot open log file %s\n"),report);
71 exit(EXIT_FAILURE);
72 }
73
74 write_html_header(fp_ou,(IndexTree == INDEX_TREE_DATE) ? 3 : 1,_("Denied"));
75 fputs("<tr><td class=\"header_c\">",fp_ou);
76 fprintf(fp_ou,_("Period: %s"),period.html);
77 fputs("</td></tr>\n",fp_ou);
78 fprintf(fp_ou,"<tr><th class=\"header_c\">%s</th></tr>\n",_("Denied"));
79 close_html_header(fp_ou);
80
81 fputs("<div class=\"report\"><table cellpadding=\"0\" cellspacing=\"2\">\n",fp_ou);
82 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",_("USERID"),_("IP/NAME"),_("DATE/TIME"),_("ACCESSED SITE"));
83
84 if ((line=longline_create())==NULL) {
85 debuga(_("Not enough memory to read the denied accesses\n"));
86 exit(EXIT_FAILURE);
87 }
88
89 while((buf=longline_read(fp_in,line))!=NULL) {
90 getword_start(&gwarea,buf);
91 if (getword(data,sizeof(data),&gwarea,'\t')<0 || getword(hora,sizeof(hora),&gwarea,'\t')<0 ||
92 getword(user,sizeof(user),&gwarea,'\t')<0 || getword(ip,sizeof(ip),&gwarea,'\t')<0) {
93 debuga(_("There is a broken record or garbage in file %s\n"),denied_in);
94 exit(EXIT_FAILURE);
95 }
96 if (getword_ptr(buf,&url,&gwarea,'\t')<0) {
97 debuga(_("There is a broken url in file %s\n"),denied_in);
98 exit(EXIT_FAILURE);
99 }
100
101 uinfo=userinfo_find_from_id(user);
102 if (!uinfo) {
103 debuga(_("Unknown user ID %s in file %s\n"),user,denied_in);
104 exit(EXIT_FAILURE);
105 }
106
107 new_user=0;
108 if(!z) {
109 strcpy(ouser,user);
110 strcpy(oip,ip);
111 z++;
112 new_user=1;
113 } else {
114 if(strcmp(ouser,user) != 0) {
115 strcpy(ouser,user);
116 new_user=1;
117 }
118 if(strcmp(oip,ip) != 0) {
119 strcpy(oip,ip);
120 new_user=1;
121 }
122 }
123
124 if(DeniedReportLimit) {
125 if(strcmp(ouser2,uinfo->label) == 0) {
126 count++;
127 } else {
128 count=1;
129 strcpy(ouser2,uinfo->label);
130 }
131 if(count >= DeniedReportLimit)
132 continue;
133 }
134
135 fputs("<tr>",fp_ou);
136 if (new_user)
137 fprintf(fp_ou,"<td class=\"data\">%s</td><td class=\"data\">%s</td>",uinfo->label,ip);
138 else
139 fputs("<td class=\"data\"></td><td class=\"data\"></td>",fp_ou);
140 fprintf(fp_ou,"<td class=\"data\">%s-%s</td><td class=\"data2\">",data,hora);
141 if(BlockIt[0] != '\0') {
142 fprintf(fp_ou,"<a href=\"%s%s?url=",wwwDocumentRoot,BlockIt);
143 output_html_url(fp_ou,url);
144 fprintf(fp_ou,"\"><img src=\"%s/sarg-squidguard-block.png\"></a>&nbsp;",ImageFile);
145 }
146 fputs("<a href=\"http://",fp_ou);
147 output_html_url(fp_ou,url);
148 fputs("\">http://",fp_ou);
149 output_html_string(fp_ou,url,100);
150 fputs("</a></td></tr>\n",fp_ou);
151 }
152 fclose(fp_in);
153 longline_destroy(&line);
154
155 fputs("</table></div>\n",fp_ou);
156 if (write_html_trailer(fp_ou)<0)
157 debuga(_("Write error in file %s\n"),report);
158 if (fclose(fp_ou)<0)
159 debuga(_("Failed to close file %s - %s\n"),report,strerror(errno));
160
161 unlink(denied_in);
162
163 return;
164 }