Fix for crashing bug: When one user hits "cancel" on a page which
[cocanwiki.git] / scripts / user_prefs_form.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_form.ml,v 1.1 2004/10/23 15:00:16 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_template
29 open Cocanwiki_date
30
31 let run r (q : cgi) (dbh : Dbi.connection) hostid _ user =
32   let template = get_template dbh hostid "user_prefs_form.html" in
33
34   let userid =
35     match user with
36       | Anonymous -> assert false
37       | User (userid, _, _) -> userid in
38
39   (* Pull out the preferences. *)
40   let sth =
41     dbh#prepare_cached
42       "select name, email, registration_date, can_edit, email_notify
43          from users where hostid = ? and id = ?" in
44   sth#execute [`Int hostid; `Int userid];
45
46   let name, email, has_email, registration_date, can_edit, email_notify =
47     match sth#fetch1 () with
48         [ `String name; (`Null | `String _) as email;
49           `Date registration_date; `Bool can_edit; `Bool email_notify ] ->
50           let email, has_email =
51             match email with
52                 `Null -> "", false
53               | `String email -> email, true in
54           name, email, has_email, registration_date,
55           can_edit, email_notify
56       | _ -> assert false in
57
58   template#set "name" name;
59   template#set "email" email;
60   template#conditional "has_email" has_email;
61   template#set "registration_date" (printable_date' registration_date);
62   template#conditional "can_edit" can_edit;
63   template#conditional "email_notify" email_notify;
64
65   q#template template
66
67 let () =
68   register_script ~anonymous:false run