]> git.ipfire.org Git - thirdparty/sarg.git/blame - auth.c
Tag the released 2.3 version.
[thirdparty/sarg.git] / auth.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
d25d4e6a 30void htaccess(const struct userinfostruct *uinfo)
25697a35 31{
4bcb77cf 32 char htname[MAXLEN];
d5d021c5
FM
33 char line[MAXLEN];
34 FILE *fp_in;
25697a35 35 FILE *fp_auth;
06b39c87 36 size_t i,nread;
25697a35 37
e6414a9d 38 if(!UserAuthentication)
25697a35
GS
39 return;
40
d5d021c5
FM
41 if (snprintf(htname,sizeof(htname),"%s/%s/.htaccess",outdirname,uinfo->filename)>=sizeof(htname)) {
42 debuga(_("File name too long: %s/%s/.htaccess\n"),outdirname,uinfo->filename);
06b39c87 43 exit(EXIT_FAILURE);
d25d4e6a 44 }
4bcb77cf 45 if((fp_auth=fopen(htname,"w"))==NULL) {
d5d021c5 46 debuga(_("(auth) Cannot open file: %s - %s\n"),htname,strerror(errno));
06b39c87 47 exit(EXIT_FAILURE);
25697a35
GS
48 }
49
d5d021c5
FM
50 if ((fp_in=fopen(AuthUserTemplateFile,"r"))==NULL) {
51 debuga(_("(auth) Cannot open template file: %s - %s\n"),AuthUserTemplateFile,strerror(errno));
06b39c87 52 exit(EXIT_FAILURE);
095a969e 53 }
25697a35 54
d5d021c5
FM
55 while((nread=fread(line,1,sizeof(line),fp_in))!=0) {
56 for (i=0 ; i<nread ; i++)
57 if (line[i]=='%' && i+2<nread && line[i+1]=='u' && !isalpha(line[i+2])) {
58 fputs(uinfo->id,fp_auth);
59 i++;
60 } else {
61 fputc(line[i],fp_auth);
62 }
63 }
25697a35 64 fclose(fp_auth);
d5d021c5 65 fclose(fp_in);
25697a35
GS
66
67 return;
68}