]> git.ipfire.org Git - thirdparty/sarg.git/blame - dansguardian_report.c
Indent the configure script for more readability.
[thirdparty/sarg.git] / dansguardian_report.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
110ce984 3 * 1998, 2015
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
7ae50eee
FM
30static void show_ignored_dansguardian(FILE *fp_ou,int count)
31{
32 char ignored[80];
33
34 snprintf(ignored,sizeof(ignored),ngettext("%d more dansguardian entry not shown here…","%d more dansguardian entries not shown here…",count),count);
35 fprintf(fp_ou,"<tr><td class=\"data\"></td><td class=\"data\"></td><td class=\"data\"></td><td class=\"data2 more\">%s</td><td class=\"data\"></td></tr>\n",ignored);
36}
37
32e71fa4 38void dansguardian_report(void)
25697a35 39{
9bd92830
FM
40 FILE *fp_in = NULL, *fp_ou = NULL;
41
42 char buf[MAXLEN];
43 char *url;
44 char dansguardian_in[MAXLEN];
45 char report[MAXLEN];
46 char ip[MAXLEN];
47 char rule[255];
48 char oip[MAXLEN];
49 char user[MAXLEN];
50 char ouser[MAXLEN];
51 char date[15];
52 char date2[15];
53 char hour[15];
54 char ouser2[255];
55 int z=0;
56 int count=0;
57 struct getwordstruct gwarea;
58
59 ouser[0]='\0';
60
c98d6a0f 61 snprintf(dansguardian_in,sizeof(dansguardian_in),"%s/dansguardian.int_log",tmp);
9bd92830 62 if(!dansguardian_count) {
11767c6a 63 if (!KeepTempLog && unlink(dansguardian_in))
af961877
FM
64 debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),dansguardian_in,strerror(errno));
65 if (debugz>=LogLevel_Process) debugaz(__FILE__,__LINE__,_("Dansguardian report not generated because it is empty\n"));
9bd92830
FM
66 return;
67 }
68
69 sprintf(report,"%s/dansguardian.html",outdirname);
70
71 if((fp_in=MY_FOPEN(dansguardian_in,"r"))==NULL) {
af961877 72 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),dansguardian_in,strerror(errno));
007905af 73 exit(EXIT_FAILURE);
9bd92830
FM
74 }
75
76 if((fp_ou=MY_FOPEN(report,"w"))==NULL) {
af961877 77 debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),report,strerror(errno));
007905af 78 exit(EXIT_FAILURE);
9bd92830
FM
79 }
80
81 write_html_header(fp_ou,(IndexTree == INDEX_TREE_DATE) ? 3 : 1,_("DansGuardian"),HTML_JS_NONE);
82 fputs("<tr><td class=\"header_c\">",fp_ou);
83 fprintf(fp_ou,_("Period: %s"),period.html);
84 fputs("</td></tr>\n",fp_ou);
85 fprintf(fp_ou,"<tr><th class=\"header_c\">%s</th></tr>\n",_("DansGuardian"));
86 close_html_header(fp_ou);
87
88 fputs("<div class=\"report\"><table cellpadding=\"1\" cellspacing=\"2\">\n",fp_ou);
89 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><th class=\"header_l\">%s</th></tr>\n",_("USERID"),_("IP/NAME"),_("DATE/TIME"),_("ACCESSED SITE"),_("CAUSE"));
90
91 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
92 getword_start(&gwarea,buf);
93 if (getword(user,sizeof(user),&gwarea,'\t')<0 || getword(date2,sizeof(date2),&gwarea,'\t')<0 ||
007905af 94 getword(hour,sizeof(hour),&gwarea,'\t')<0 || getword(ip,sizeof(ip),&gwarea,'\t')<0) {
af961877 95 debuga(__FILE__,__LINE__,_("Invalid record in file \"%s\"\n"),dansguardian_in);
9bd92830
FM
96 exit(EXIT_FAILURE);
97 }
98 if (getword_ptr(buf,&url,&gwarea,'\t')<0) {
af961877 99 debuga(__FILE__,__LINE__,_("Invalid url in file \"%s\"\n"),dansguardian_in);
9bd92830
FM
100 exit(EXIT_FAILURE);
101 }
102 if (getword(rule,sizeof(rule),&gwarea,'\n')<0) {
af961877 103 debuga(__FILE__,__LINE__,_("Invalid rule in file \"%s\"\n"),dansguardian_in);
9bd92830
FM
104 exit(EXIT_FAILURE);
105 }
106
107 if(UserIp)
108 strcpy(user,ip);
109
9c1a94f6 110 memset(date,0,sizeof(date));
81a022d8 111 if (df!='u') {
9bd92830
FM
112 strncpy(date,date2+6,2);
113 strcat(date,"/");
114 strncat(date,date2+4,2);
115 strcat(date,"/");
116 strncat(date,date2,4);
117 } else {
118 strncpy(date,date2+4,2);
119 strcat(date,"/");
120 strncat(date,date2+6,2);
121 strcat(date,"/");
122 strncat(date,date2,4);
123 }
124
125 if(Ip2Name)
126 ip2name(ip,sizeof(ip));
127
128 if(!z) {
129 strcpy(ouser,user);
130 strcpy(oip,ip);
131 z++;
132 } else {
133 if(strcmp(ouser,user) == 0)
134 user[0]='\0';
135 if(user[0] != '\0')
136 strcpy(ouser,user);
137 if(strcmp(oip,ip) == 0)
138 ip[0]='\0';
139 if(ip[0] != '\0')
140 strcpy(oip,ip);
141 }
142
143 user_find(name, sizeof(name), user);
144
007905af 145 if(DansGuardianReportLimit) {
9bd92830
FM
146 if(strcmp(ouser2,name) == 0) {
147 count++;
148 } else {
7ae50eee
FM
149 if(count>DansGuardianReportLimit && DansGuardianReportLimit>0)
150 show_ignored_dansguardian(fp_ou,count-DansGuardianReportLimit);
9bd92830
FM
151 count=1;
152 strcpy(ouser2,name);
153 }
7ae50eee 154 if(count > DansGuardianReportLimit)
9bd92830
FM
155 continue;
156 }
157
67a93701 158 fprintf(fp_ou,"<tr><td class=\"data2\">%s</td><td class=\"data2\">%s</td><td class=\"data2\">%s-%s</td><td class=\"data2\">",name,ip,date,hour);
6fa33a32 159 output_html_link(fp_ou,url,100);
67a93701 160 fprintf(fp_ou,"</td><td class=\"data2\">%s</td></tr>\n",rule);
9bd92830 161 }
204781f4 162 if (fclose(fp_in)==EOF) {
af961877 163 debuga(__FILE__,__LINE__,_("Read error in \"%s\": %s\n"),dansguardian_in,strerror(errno));
204781f4
FM
164 exit(EXIT_FAILURE);
165 }
9bd92830 166
7ae50eee
FM
167 if(count>DansGuardianReportLimit && DansGuardianReportLimit>0)
168 show_ignored_dansguardian(fp_ou,count-DansGuardianReportLimit);
169
9bd92830 170 fputs("</table></div>\n",fp_ou);
342bd723 171 write_html_trailer(fp_ou);
507460ae 172 if (fclose(fp_ou)==EOF) {
af961877 173 debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),report,strerror(errno));
507460ae
FM
174 exit(EXIT_FAILURE);
175 }
9bd92830 176
11767c6a 177 if (!KeepTempLog && unlink(dansguardian_in)) {
af961877 178 debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),dansguardian_in,strerror(errno));
08f9b029
FM
179 exit(EXIT_FAILURE);
180 }
9bd92830
FM
181
182 return;
25697a35 183}