Added the navigation box (see email).
[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.1 2004/10/09 15:01:58 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 : Dbi.connection) hostid _ _ =
34   let template = get_template dbh hostid "crash.html" in
35   let crash_email = server_settings_crash_email dbh in
36
37   (* Send a feedback email to the designated address if
38    * server_settings.crash_email is set.
39    *)
40   let mail_sent =
41     match crash_email with
42         None -> false
43       | Some email ->
44           (* Get the current time and write it into the logs. *)
45           let time = Unix.gmtime (Unix.time ()) in
46           let time =
47             sprintf "%04d/%02d/%02d %02d:%02d:%02d"
48             (time.Unix.tm_year + 1900) (time.Unix.tm_mon + 1) time.Unix.tm_mday
49             time.Unix.tm_hour time.Unix.tm_min time.Unix.tm_sec in
50
51           prerr_endline ("crash: " ^ time);
52
53           let subject =
54             "Crash notify: There was a 500 internal server error" in
55           let body = "Crash at " ^ time ^ "\n" ^
56                      "Please see the error log for details." in
57           Sendmail.send_mail ~subject ~body ~to_addr:[email] ();
58
59           true in
60
61   template#conditional "mail_sent" mail_sent;
62
63   q#template template
64
65 let () =
66   register_script run