Added a "side-by-side" mode using ''diff -y''. Disabled by default,
[cocanwiki.git] / scripts / create_user.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: create_user.ml,v 1.5 2004/10/23 09:36:11 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_strings
30
31 let run r (q : cgi) (dbh : Dbi.connection) hostid _ _ =
32   let username = trim (q#param "username") in
33   let password1 = trim (q#param "password1") in
34   let password2 = trim (q#param "password2") in
35
36   if username = "" || password1 = "" || password2 = "" then (
37     error ~back_button:true ~title:"Bad username or password"
38       q "The username or password you gave is empty.";
39     return ()
40   );
41
42   if password1 <> password2 then (
43     error ~back_button:true ~title:"Passwords don't match"
44       q "The two passwords you gave aren't identical.";
45     return ()
46   );
47
48   let password = password1 in
49
50   (*
51     Uh oh ... Not making UNICODE assumptions ... XXX
52   if String.length username > 32 || String.length password > 32 then
53   *)
54
55   (* Not a duplicate? *)
56   let sth = dbh#prepare_cached "select id from users
57                                  where hostid = ? and name = ?" in
58   sth#execute [`Int hostid; `String username];
59
60   (try
61      sth#fetch1 ();
62      error ~back_button:true ~title:"Username already taken"
63        q "Someone has already taken that username.";
64      return ()
65    with
66        Not_found -> ());
67
68   let can_edit = q#param_true "can_edit" in
69   let can_manage_users = q#param_true "can_manage_users" in
70   let can_manage_contacts = q#param_true "can_manage_contacts" in
71   let can_manage_site = q#param_true "can_manage_site" in
72   let can_edit_global_css = q#param_true "can_edit_global_css" in
73   let can_import_mail = q#param_true "can_import_mail" in
74   let force_password_change = q#param_true "force_password_change" in
75
76   (* Create the user account. *)
77   let sth = dbh#prepare_cached "insert into users (name, password,
78                                   hostid, can_edit, can_manage_users,
79                                   can_manage_contacts, can_manage_site,
80                                   can_edit_global_css, can_import_mail,
81                                   force_password_change)
82                                 values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" in
83   sth#execute [`String username; `String password; `Int hostid;
84                `Bool can_edit; `Bool can_manage_users;
85                `Bool can_manage_contacts; `Bool can_manage_site;
86                `Bool can_edit_global_css; `Bool can_import_mail;
87                `Bool force_password_change];
88
89   dbh#commit ();
90
91   let buttons = [ ok_button "/_users" ] in
92
93   ok ~title:"Account created" ~buttons
94     q ("An account was created for " ^ username ^ ".")
95
96 let () =
97   register_script ~restrict:[CanManageUsers] run