Added the per-user 'manage contacts' permission.
[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.5 2004/09/17 15:24:54 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
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] ->
48              let email = match email with `Null -> "" | `String s -> s in
49              [ "userid", Template.VarString (string_of_int userid);
50                "name", Template.VarString name;
51                "email", Template.VarString email;
52                "registration_date",
53                  Template.VarString (printable_date' registration_date);
54                "can_edit", Template.VarConditional can_edit;
55                "can_manage_users", Template.VarConditional can_manage_users;
56                "can_manage_contacts",
57                  Template.VarConditional can_manage_contacts ]
58          | _ -> assert false) in
59
60   template#table "users" table;
61
62   q#template template
63
64 let () =
65   register_script ~restrict:[CanManageUsers] run