More verbose couldn't-find-cert message
[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");
b59d9074 35 TextIO.output (fd, Apache.logDir {user = user, node = node, vhostId = hostname});
7a2b27f0
AC
36 TextIO.output (fd, "/access.log\nOutputDir\t");
37 TextIO.output (fd, Config.Webalizer.outputDir);
38 TextIO.output (fd, "/");
39 TextIO.output (fd, node);
40 TextIO.output (fd, "/");
41 TextIO.output (fd, id);
42 TextIO.output (fd, "\n");
43 fd
44 end) nodes
7f75d838
AC
45 in
46 files := fds;
47 write := (fn s => app (fn fd => TextIO.output (fd, s)) fds);
7a2b27f0 48 !write "Hostname\t";
7f75d838
AC
49 !write hostname;
50 !write "\nHideSite\t";
51 !write hostname;
52 !write "\nHideReferrer\t";
53 !write hostname;
54 !write "\n"
55 end)
56
57val () = Apache.registerPost
58 (fn () => app TextIO.closeOut (!files))
59
60val () = Apache.registerAliaser
61 (fn hostname =>
62 (!write "HideSite\t";
63 !write hostname;
64 !write "\nHideReferrer\t";
65 !write hostname;
66 !write "\n"))
67
68val () = Slave.registerFileHandler (fn fs =>
69 let
70 val spl = OS.Path.splitDirFile (#file fs)
71 in
72 case OS.Path.splitBaseExt (#file spl) of
73 {base, ext = SOME "wbl"} =>
74 (case #action fs of
75 Slave.Delete =>
76 (ignore (OS.Process.system (Config.rm
77 ^ " -f "
78 ^ Config.Webalizer.configDir
79 ^ "/"
5e70d4e2
AC
80 ^ Slave.hostname ()
81 ^ "/"
7f75d838
AC
82 ^ base
83 ^ ".conf"));
84 ignore (OS.Process.system (Config.rm
85 ^ " -rf "
86 ^ Config.Webalizer.outputDir
87 ^ "/"
5e70d4e2
AC
88 ^ Slave.hostname ()
89 ^ "/"
7f75d838
AC
90 ^ base)))
91 | _ =>
92 (ignore (OS.Process.system (Config.cp
93 ^ " "
94 ^ #file fs
95 ^ " "
96 ^ Config.Webalizer.configDir
97 ^ "/"
5e70d4e2
AC
98 ^ Slave.hostname ()
99 ^ "/"
7f75d838
AC
100 ^ base
101 ^ ".conf"));
102 let
5e70d4e2 103 val dir = Config.Webalizer.outputDir ^ "/" ^ Slave.hostname () ^ "/" ^ base
7f75d838
AC
104 in
105 if Posix.FileSys.access (dir, []) then
106 ()
107 else
6bacfc5d 108 OS.FileSys.mkDir dir
7f75d838
AC
109 end))
110 | _ => ()
111 end)
112
71420f8b
AC
113val () = Domain.registerResetLocal (fn () =>
114 app (fn (node, _) =>
115 ignore (OS.Process.system (Config.rm ^ " -rf "
116 ^ Config.Webalizer.configDir ^ "/"
117 ^ node ^ "/*"))) Config.nodeIps)
118
7f75d838 119end