Global replace 'raise CgiExit' -> 'return ()' to match a future version of mod_caml.
[cocanwiki.git] / scripts / contact.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: contact.ml,v 1.3 2004/09/23 11:56:47 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
22 open Apache
23 open Registry
24 open Cgi
25 open Printf
26
27 open ExtString
28
29 open Cocanwiki
30 open Cocanwiki_template
31 open Cocanwiki_ok
32
33 let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname = hostname} user =
34   let template = get_template dbh hostid "contact.txt" in
35
36   let fail msg =
37     error ~back_button:true ~title:"Bad form"
38       q (msg ^ "  Please contact the owner of the site by email.");
39     return ()
40   in
41
42   (* Get the id field. *)
43   let id =
44     try int_of_string (q#param "id")
45     with
46         Not_found -> fail "The 'id' field is missing in that form."
47       | Failure "int_of_string" ->
48           fail "The 'id' field in that form is not a number." in
49
50   (* Get the contacts / emails from the database. *)
51   let sth = dbh#prepare_cached "select subject from contacts
52                                  where hostid = ? and id = ?" in
53   sth#execute [`Int hostid; `Int id];
54
55   let subject =
56     try sth#fetch1string ()
57     with Not_found -> fail "There is no such contact id in the database." in
58
59   let sth = dbh#prepare_cached "select email from contact_emails
60                                  where contactid = ?" in
61   sth#execute [`Int id];
62
63   let emails = sth#map (function [`String email] -> email
64                                | _ -> assert false) in
65
66   if emails = [] then
67     fail "There are no email addresses associated with that contact id.";
68
69   (* Now process the strings passed as parameters to the script.  Any
70    * parameter which starts with 'file' (eg. 'file0') is treated as a
71    * file upload automatically.
72    *)
73   let names = List.map fst q#params in
74   let names, uploads =
75     if q#is_multipart then (
76       let uploads =
77         List.filter (fun str -> String.starts_with str "file") names in
78       let names =
79         List.filter (fun str -> str <> "id" &&
80                        not (String.starts_with str "file")) names in
81       names, uploads
82     ) else
83       names, [] in
84
85   (* Sort them.
86    * Ignore repeat parameters. - Don't use these in forms.
87    *)
88   let rec uniq = function
89       [] -> []
90     | [x] -> [x]
91     | x :: y :: xs when compare x y = 0 -> uniq (x :: xs)
92     | x :: y :: xs -> x :: uniq (y :: xs)
93   in
94
95   let names = uniq (List.sort compare names) in
96   let uploads = uniq (List.sort compare uploads) in
97
98   (* Some browsers send an empty file for empty uploads.  Remove those. *)
99   let uploads =
100     let not_empty name = (q#upload name).upload_value <> "" in
101     List.filter not_empty uploads in
102
103   (* Get the IP address for logging purposes. *)
104   let ip =
105     try Connection.remote_ip (Request.connection r) with Not_found -> "" in
106
107   (* Get the User-Agent string.  Consider in future rejecting spammers
108    * who don't set User-Agent.
109    *)
110   let ua =
111     try Table.get (Request.headers_in r) "User-Agent" with Not_found -> "" in
112
113   (* Get the user details, if any. *)
114   let username =
115     match user with
116         Anonymous -> "anonymous"
117       | User (userid, username, _) ->
118           sprintf "%s (%d)" username userid in
119
120   template#set "ip" ip;
121   template#set "ua" ua;
122   template#set "username" username;
123   template#set "hostname" hostname;
124
125   (* Construct the table of names, values for the initial email. *)
126   let table = List.map (fun name ->
127                           let value = q#param name in
128                           [ "name", Template.VarString name;
129                             "value", Template.VarString value ]) names in
130   template#table "names" table;
131
132   (* Any uploads to follow? *)
133   template#conditional "uploads" (uploads <> []);
134   template#set "nr_uploads" (string_of_int (List.length uploads));
135
136   (* Send the initial email. *)
137   let body = template#to_string in
138   Sendmail.send_mail ~subject ~to_addr:emails ~body ();
139
140   (* Send the following uploads by email. *)
141   List.iter (fun name ->
142                let upload = q#upload name in
143                let subject = upload.upload_filename in
144                (* XXX This is insecure. *)
145                let content_type = upload.upload_content_type in
146                let body = upload.upload_value in
147
148                Sendmail.send_mail ~subject ~to_addr:emails ~content_type
149                  ~body ())
150     uploads;
151
152   (* Confirm. *)
153   ok ~title:"Thank you for your contact" ~buttons:[ok_button "/"]
154     q "An email was sent and you should receive a reply shortly."
155
156 let () =
157   register_script run