Fix the problem of corrupting binary attachments; changed to using Gerd S's
[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.12 2006/07/31 09:10:33 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 subj_rex = Pcre.regexp "\\$\\w+"
34
35 let run r (q : cgi) dbh hostid {hostname = hostname} user =
36   let template = get_template dbh hostid "contact.txt" in
37
38   let fail msg =
39     error ~back_button:true ~title:"Bad form"
40       dbh hostid q (msg ^ "  Please contact the owner of the site by email.");
41     return ()
42   in
43
44   (* Get the name field. *)
45   let name =
46     try q#param "id"
47     with
48         Not_found ->
49           fail "The 'name' field is missing in that form." in
50
51   (* Get the contacts / emails from the database. *)
52   let rows = PGSQL(dbh)
53     "select id, subject from contacts
54       where hostid = $hostid and name = $name" in
55
56   let id, subject =
57     match rows with
58     | [row] -> row
59     | [] -> fail "There is no such contact form in the database."
60     | _ -> assert false in
61
62   let to_addrs =
63     PGSQL(dbh) "select email from contact_emails where contactid = $id" in
64   let to_addrs = List.map (fun email -> "", email) to_addrs in
65
66   if to_addrs = [] 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   (* Substitute any $Field fields in the subject line.  The substitution
104    * is very simple-minded.
105    *)
106   let subst pat =
107     let n = String.length pat in
108     assert (n > 0 && pat.[0] = '$');
109     let fieldname = String.sub pat 1 (n-1) in
110     if List.mem fieldname names then
111       q#param fieldname
112     else
113       pat
114   in
115   let subject = Pcre.substitute ~rex:subj_rex ~subst subject in
116
117   (* Get the IP address for logging purposes. *)
118   let ip =
119     try Connection.remote_ip (Request.connection r) with Not_found -> "" in
120
121   (* Get the User-Agent string.  Consider in future rejecting spammers
122    * who don't set User-Agent.
123    *)
124   let ua =
125     try Table.get (Request.headers_in r) "User-Agent" with Not_found -> "" in
126
127   (* Get the user details, if any. *)
128   let username =
129     match user with
130         Anonymous -> "anonymous"
131       | User (userid, username, _, _) ->
132           sprintf "%s (%ld)" username userid in
133
134   template#set "ip" ip;
135   template#set "ua" ua;
136   template#set "username" username;
137   template#set "hostname" hostname;
138
139   (* Construct the table of names, values for the initial email. *)
140   let table = List.map (fun name ->
141                           let value = q#param name in
142                           [ "name", Template.VarString name;
143                             "value", Template.VarString value ]) names in
144   template#table "names" table;
145
146   (* Any uploads to follow? *)
147   template#conditional "uploads" (uploads <> []);
148   template#set "nr_uploads" (string_of_int (List.length uploads));
149
150   (* Send the initial email. *)
151   let body = template#to_string in
152   let msg = Netsendmail.compose ~to_addrs ~subject body in
153   Netsendmail.sendmail msg;
154
155   (* Send the following uploads by email. *)
156   List.iter (fun name ->
157                let upload = q#upload name in
158                let subject = upload.upload_filename in
159                let content_type = upload.upload_content_type, [] in
160                let body = upload.upload_value in
161
162                let msg =
163                  Netsendmail.compose ~to_addrs ~subject ~content_type body in
164                Netsendmail.sendmail msg)
165     uploads;
166
167   (* Confirm. *)
168   ok ~title:"Thank you for your contact" ~buttons:[ok_button "/"]
169     dbh hostid q "An email was sent and you should receive a reply shortly."
170
171 let () =
172   register_script ~restrict:[CanView] run