+csv dep for PG'OCaml.
[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.7 2006/12/06 09:46:56 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 r 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 = Calendar.now () in
40   let time = Printer.CalendarPrinter.to_string time in
41   prerr_endline ("crash: " ^ time);
42
43   (* Send a feedback email to the designated address if
44    * server_settings.crash_email is set.
45    *)
46   let mail_sent =
47     match crash_email with
48     | None -> false
49     | Some email ->
50         let subject =
51           "Crash notify: There was a 500 internal server error" in
52         let body = "Crash at " ^ time ^ "\n" ^
53           "Hostname is " ^ canonical_hostname ^ "\n" ^
54           "Please see the error log for details." in
55
56         let to_addrs = ["", email] in
57         let content_type =
58           "text/plain", ["charset", Mimestring.mk_param "UTF-8"] in
59
60         let msg =
61           Netsendmail.compose ~subject ~to_addrs ~content_type body in
62         Netsendmail.sendmail msg;
63
64         true in
65
66   template#conditional "mail_sent" mail_sent;
67
68   q#template template
69
70 let () =
71   register_script run