Serial columns now 64 bits.
[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.5 2005/03/31 14:24:04 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 preferences fields. *)
45   let sth =
46     dbh#prepare_cached "update users set email_notify = ?
47                          where hostid = ? and id = ?" in
48   sth#execute [`Bool email_notify;
49                `Int hostid; `Int userid];
50
51   (* Have we changed the email address? *)
52   let confirm_needed =
53     if new_email = "" then (
54       (* Set the email field in the database to null.  No need for
55        * any confirmation.
56        *)
57       let sth = dbh#prepare_cached "update users set email = null
58                                      where hostid = ? and id = ?" in
59       sth#execute [`Int hostid; `Int userid];
60
61       false
62     ) else (
63       (* Is the new email address different from the one currently recorded
64        * in the database?
65        *)
66       let sth = dbh#prepare_cached "select ? <> coalesce (email, '')
67                                      from users where hostid = ? and id = ?" in
68       sth#execute [`String new_email; `Int hostid; `Int userid];
69
70       let changed =
71         match sth#fetch1 () with [ `Bool b ] -> b | _ -> assert false in
72
73       if changed then (
74         let key = random_sessionid () in
75         (* Changed, so we add to the pending_email_changes table. *)
76         let sth = dbh#prepare_cached "insert into pending_email_changes
77                                       (key, userid, email) values (?, ?, ?)" in
78         sth#execute [`String key; `Int userid; `String new_email];
79
80         (* Send the confirm email. *)
81         email_change_template#set "hostname" hostname;
82         email_change_template#set "key" key;
83         let body = email_change_template#to_string in
84
85         let subject = "Please verify your new email address at " ^ hostname in
86         Sendmail.send_mail ~subject ~to_addr:[new_email] body
87       );
88
89       changed
90     ) in
91
92   (* Good place to remove old rows in the pending_email_changes table. *)
93   let sth = dbh#prepare_cached "delete from pending_email_changes
94                                  where change_date - current_date > 7" in
95   sth#execute [];
96
97   (* Commit and finish off. *)
98   dbh#commit ();
99
100   let buttons = [ ok_button "/_userprefs" ] in
101   ok ~title:"Preferences updated" ~buttons
102     q ("Your user preferences were updated.  " ^
103        if confirm_needed then
104          ("Because you changed your email address, we have sent a " ^
105           "confirmation email to your new address.  You will need to " ^
106           "click on the link in that email to verify your new address.")
107        else
108          "")
109
110 let () =
111   register_script ~anonymous:false run