Scripts updated to use new PG interface.
[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.10 2006/03/28 16:24:08 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 hostid _ _ =
32   let template = get_template dbh hostid "users.html" in
33
34   let rows =
35     PGSQL(dbh)
36       "select id, name, email, registration_date, invite is not null,
37               can_edit, can_manage_users,
38               can_manage_contacts, can_manage_site, can_edit_global_css,
39               can_import_mail
40          from users where hostid = $hostid order by name" in
41
42   let table =
43     List.map
44       (fun (userid, name, email, registration_date, invite_pending,
45             can_edit, can_manage_users, can_manage_contacts, can_manage_site,
46             can_edit_global_css, can_import_mail) ->
47          let email = match email with None -> "" | Some s -> s in
48          let invite_pending = Option.get invite_pending in
49          [ "userid", Template.VarString (Int32.to_string userid);
50            "name", Template.VarString name;
51            "email", Template.VarString email;
52            "registration_date",
53            Template.VarString (printable_date' registration_date);
54            "invite_pending",
55            Template.VarConditional invite_pending;
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       ) rows in
66
67   template#table "users" table;
68
69   q#template template
70
71 let () =
72   register_script ~restrict:[CanManageUsers] run