Non-existant files and images throw 404, instead of 500, errors.
[cocanwiki.git] / scripts / user_prefs.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: user_prefs.ml,v 1.2 2004/10/23 15:05:07 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 Cocanwiki
28 open Cocanwiki_ok
29 open Cocanwiki_template
30 open Cocanwiki_strings
31
32 let run r (q : cgi) (dbh : Dbi.connection) hostid {hostname=hostname} user =
33   let email_change_template = _get_template "user_prefs_email_change.txt" in
34
35   (* Get the fields. *)
36   let new_email = trim (q#param "email") in
37   let email_notify = q#param_true "email_notify" in
38
39   let userid =
40     match user with
41         Anonymous -> assert false
42       | User (userid, _, _) -> userid in
43
44   (* Update the email notify field. *)
45   let sth =
46     dbh#prepare_cached "update users set email_notify = ?
47                          where hostid = ? and id = ?" in
48   sth#execute [`Bool email_notify; `Int hostid; `Int userid];
49
50   (* Have we changed the email address? *)
51   let confirm_needed =
52     if new_email = "" then (
53       (* Set the email field in the database to null.  No need for
54        * any confirmation.
55        *)
56       let sth = dbh#prepare_cached "update users set email = null
57                                      where hostid = ? and id = ?" in
58       sth#execute [`Int hostid; `Int userid];
59
60       false
61     ) else (
62       (* Is the new email address different from the one currently recorded
63        * in the database?
64        *)
65       let sth = dbh#prepare_cached "select ? <> coalesce (email, '')
66                                      from users where hostid = ? and id = ?" in
67       sth#execute [`String new_email; `Int hostid; `Int userid];
68
69       let changed =
70         match sth#fetch1 () with [ `Bool b ] -> b | _ -> assert false in
71
72       if changed then (
73         let key = random_sessionid () in
74         (* Changed, so we add to the pending_email_changes table. *)
75         let sth = dbh#prepare_cached "insert into pending_email_changes
76                                       (key, userid, email) values (?, ?, ?)" in
77         sth#execute [`String key; `Int userid; `String new_email];
78
79         (* Send the confirm email. *)
80         email_change_template#set "hostname" hostname;
81         email_change_template#set "key" key;
82         let body = email_change_template#to_string in
83
84         let subject = "Please verify your new email address at " ^ hostname in
85         Sendmail.send_mail ~subject ~to_addr:[new_email] ~body ()
86       );
87
88       changed
89     ) in
90
91   (* Good place to remove old rows in the pending_email_changes table. *)
92   let sth = dbh#prepare_cached "delete from pending_email_changes
93                                  where change_date - current_date > 7" in
94   sth#execute [];
95
96   (* Commit and finish off. *)
97   dbh#commit ();
98
99   let buttons = [ ok_button "/_userprefs" ] in
100   ok ~title:"Preferences updated" ~buttons
101     q ("Your user preferences were updated.  " ^
102        if confirm_needed then
103          ("Because you changed your email address, we have sent a " ^
104           "confirmation email to your new address.  You will need to " ^
105           "click on the link in that email to verify your new address.")
106        else
107          "")
108
109 let () =
110   register_script ~anonymous:false run