Allow callers to create_host to specify an email address for the admin
[cocanwiki.git] / scripts / users.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: users.ml,v 1.6 2004/09/22 10:19:26 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 _ _ =
32   let template = get_template dbh hostid "users.html" in
33
34   let sth =
35     dbh#prepare_cached
36       "select id, name, email, registration_date, can_edit, can_manage_users,
37               can_manage_contacts, can_manage_site, can_edit_global_css
38          from users where hostid = ? order by name" in
39   sth#execute [`Int hostid];
40
41   let table =
42     sth#map
43       (function
44            [`Int userid; `String name; (`Null | `String _) as email;
45             `Date registration_date;
46             `Bool can_edit; `Bool can_manage_users;
47             `Bool can_manage_contacts; `Bool can_manage_site;
48             `Bool can_edit_global_css] ->
49              let email = match email with `Null -> "" | `String s -> s in
50              [ "userid", Template.VarString (string_of_int userid);
51                "name", Template.VarString name;
52                "email", Template.VarString email;
53                "registration_date",
54                  Template.VarString (printable_date' registration_date);
55                "can_edit", Template.VarConditional can_edit;
56                "can_manage_users", Template.VarConditional can_manage_users;
57                "can_manage_contacts",
58                  Template.VarConditional can_manage_contacts;
59                "can_manage_site", Template.VarConditional can_manage_site;
60                "can_edit_global_css",
61                  Template.VarConditional can_edit_global_css; ]
62          | _ -> assert false) in
63
64   template#table "users" table;
65
66   q#template template
67
68 let () =
69   register_script ~restrict:[CanManageUsers] run