Added the per-user 'manage contacts' permission.
[cocanwiki.git] / scripts / cocanwiki.ml
index b504d57..837028a 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: cocanwiki.ml,v 1.6 2004/09/09 12:21:22 rich Exp $
+ * $Id: cocanwiki.ml,v 1.7 2004/09/17 15:24:54 rich Exp $
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@ exception CgiExit
  * who can use the script.  For example:
  *   register_script ~restrict:[CanEdit ; CanManageUsers] run
  *)
-type permissions_t = CanEdit | CanManageUsers
+type permissions_t = CanEdit | CanManageUsers | CanManageContacts
 
 (* The "user object". *)
 type user_t = Anonymous                        (* Not logged in. *)
@@ -60,6 +60,7 @@ let test_permission edit_anon perm user =
 
 let can_edit edit_anon = test_permission edit_anon CanEdit
 let can_manage_users = test_permission false CanManageUsers
+let can_manage_contacts = test_permission false CanManageContacts
 
 (* The "host object". *)
 type host_t = { hostname : string;
@@ -144,16 +145,20 @@ let register_script ?(restrict = []) ?(anonymous = true) run =
 
           let sth =
             dbh#prepare_cached
-              "select u.id, u.name, u.can_edit, u.can_manage_users
+              "select u.id, u.name, u.can_edit, u.can_manage_users,
+                       u.can_manage_contacts
                   from usercookies uc, users u
                  where uc.cookie = ? and uc.userid = u.id and u.hostid = ?" in
           sth#execute [`String cookie; `Int hostid];
           (match sth#fetch1 () with
                [ `Int userid; `String name;
-                 `Bool can_edit; `Bool can_manage_users ] ->
+                 `Bool can_edit; `Bool can_manage_users;
+                 `Bool can_manage_contacts ] ->
                  let perms =
                    (if can_edit then [ CanEdit ] else []) @
-                   (if can_manage_users then [ CanManageUsers ] else []) in
+                   (if can_manage_users then [ CanManageUsers ] else []) @
+                   (if can_manage_contacts then [ CanManageContacts ] else [])
+                 in
                  User (userid, name, perms)
              | _ -> assert false)
         with