BIG, experimental patch.
[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.7 2004/10/11 14:13: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_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               can_import_mail
39          from users where hostid = ? order by name" in
40   sth#execute [`Int hostid];
41
42   let table =
43     sth#map
44       (function
45            [`Int userid; `String name; (`Null | `String _) as email;
46             `Date registration_date;
47             `Bool can_edit; `Bool can_manage_users;
48             `Bool can_manage_contacts; `Bool can_manage_site;
49             `Bool can_edit_global_css; `Bool can_import_mail] ->
50              let email = match email with `Null -> "" | `String s -> s in
51              [ "userid", Template.VarString (string_of_int userid);
52                "name", Template.VarString name;
53                "email", Template.VarString email;
54                "registration_date",
55                  Template.VarString (printable_date' registration_date);
56                "can_edit", Template.VarConditional can_edit;
57                "can_manage_users", Template.VarConditional can_manage_users;
58                "can_manage_contacts",
59                  Template.VarConditional can_manage_contacts;
60                "can_manage_site", Template.VarConditional can_manage_site;
61                "can_edit_global_css",
62                  Template.VarConditional can_edit_global_css;
63                "can_import_mail",
64                  Template.VarConditional can_import_mail;]
65          | _ -> assert false) in
66
67   template#table "users" table;
68
69   q#template template
70
71 let () =
72   register_script ~restrict:[CanManageUsers] run