Fixed some problems found in testing. Now appears to be working fully.
[cocanwiki.git] / scripts / crash.ml
1 (* COCANWIKI - a wiki written in Objective CAML.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: crash.ml,v 1.5 2006/03/27 18:09:46 rich Exp $
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; see the file COPYING.  If not, write to
18  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * This script handles 500 errors through the ErrorDocument mechanism.
22  *)
23
24 open Apache
25 open Registry
26 open Cgi
27 open Printf
28
29 open Cocanwiki
30 open Cocanwiki_template
31 open Cocanwiki_server_settings
32
33 let run r (q : cgi) dbh hostid
34     { canonical_hostname = canonical_hostname } _ =
35   let template = get_template dbh hostid "crash.html" in
36   let crash_email = server_settings_crash_email dbh in
37
38   (* Get the current time and write it into the logs. *)
39   let time = Unix.gmtime (Unix.time ()) in
40   let time =
41     sprintf "%04d/%02d/%02d %02d:%02d:%02d"
42       (time.Unix.tm_year + 1900) (time.Unix.tm_mon + 1) time.Unix.tm_mday
43       time.Unix.tm_hour time.Unix.tm_min time.Unix.tm_sec in
44
45   prerr_endline ("crash: " ^ time);
46
47   (* Send a feedback email to the designated address if
48    * server_settings.crash_email is set.
49    *)
50   let mail_sent =
51     match crash_email with
52         None -> false
53       | Some email ->
54           let subject =
55             "Crash notify: There was a 500 internal server error" in
56           let body = "Crash at " ^ time ^ "\n" ^
57                      "Hostname is " ^ canonical_hostname ^ "\n" ^
58                      "Please see the error log for details." in
59           Sendmail.send_mail ~subject ~to_addr:[email] body;
60
61           true in
62
63   template#conditional "mail_sent" mail_sent;
64
65   q#template template
66
67 let () =
68   register_script run