Switch to using system database to find user home directories
[hcoop/domtool2.git] / src / plugins / webalizer.sml
CommitLineData
7f75d838
AC
1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 *)
18
19(* Webalizer statistics tool handling *)
20
21structure Webalizer :> WEBALIZER = struct
22
23val files = ref ([] : TextIO.outstream list)
24val write = ref (fn _ : string => ())
25
26val () = Apache.registerPre
7a2b27f0 27 (fn {user, nodes, id, hostname} =>
7f75d838 28 let
7a2b27f0
AC
29 val fds = map (fn node =>
30 let
31 val fd = Domain.domainFile {node = node,
32 name = id ^ ".wbl"}
33 in
34 TextIO.output (fd, "LogFile\t");
0da1c677 35 TextIO.output (fd, Domain.homedirOf user);
7a2b27f0
AC
36 TextIO.output (fd, "/apache/log/");
37 TextIO.output (fd, node);
613c338c 38 TextIO.output (fd, "/");
7a2b27f0
AC
39 TextIO.output (fd, hostname);
40 TextIO.output (fd, "/access.log\nOutputDir\t");
41 TextIO.output (fd, Config.Webalizer.outputDir);
42 TextIO.output (fd, "/");
43 TextIO.output (fd, node);
44 TextIO.output (fd, "/");
45 TextIO.output (fd, id);
46 TextIO.output (fd, "\n");
47 fd
48 end) nodes
7f75d838
AC
49 in
50 files := fds;
51 write := (fn s => app (fn fd => TextIO.output (fd, s)) fds);
7a2b27f0 52 !write "Hostname\t";
7f75d838
AC
53 !write hostname;
54 !write "\nHideSite\t";
55 !write hostname;
56 !write "\nHideReferrer\t";
57 !write hostname;
58 !write "\n"
59 end)
60
61val () = Apache.registerPost
62 (fn () => app TextIO.closeOut (!files))
63
64val () = Apache.registerAliaser
65 (fn hostname =>
66 (!write "HideSite\t";
67 !write hostname;
68 !write "\nHideReferrer\t";
69 !write hostname;
70 !write "\n"))
71
72val () = Slave.registerFileHandler (fn fs =>
73 let
74 val spl = OS.Path.splitDirFile (#file fs)
75 in
76 case OS.Path.splitBaseExt (#file spl) of
77 {base, ext = SOME "wbl"} =>
78 (case #action fs of
79 Slave.Delete =>
80 (ignore (OS.Process.system (Config.rm
81 ^ " -f "
82 ^ Config.Webalizer.configDir
83 ^ "/"
5e70d4e2
AC
84 ^ Slave.hostname ()
85 ^ "/"
7f75d838
AC
86 ^ base
87 ^ ".conf"));
88 ignore (OS.Process.system (Config.rm
89 ^ " -rf "
90 ^ Config.Webalizer.outputDir
91 ^ "/"
5e70d4e2
AC
92 ^ Slave.hostname ()
93 ^ "/"
7f75d838
AC
94 ^ base)))
95 | _ =>
96 (ignore (OS.Process.system (Config.cp
97 ^ " "
98 ^ #file fs
99 ^ " "
100 ^ Config.Webalizer.configDir
101 ^ "/"
5e70d4e2
AC
102 ^ Slave.hostname ()
103 ^ "/"
7f75d838
AC
104 ^ base
105 ^ ".conf"));
106 let
5e70d4e2 107 val dir = Config.Webalizer.outputDir ^ "/" ^ Slave.hostname () ^ "/" ^ base
7f75d838
AC
108 in
109 if Posix.FileSys.access (dir, []) then
110 ()
111 else
6bacfc5d 112 OS.FileSys.mkDir dir
7f75d838
AC
113 end))
114 | _ => ()
115 end)
116
71420f8b
AC
117val () = Domain.registerResetLocal (fn () =>
118 app (fn (node, _) =>
119 ignore (OS.Process.system (Config.rm ^ " -rf "
120 ^ Config.Webalizer.configDir ^ "/"
121 ^ node ^ "/*"))) Config.nodeIps)
122
7f75d838 123end