]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminSetAcl.php
simplified admin action shortcuts
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminSetAcl.php
1 <?php // -*-php-*-
2 rcs_id('$Id: WikiAdminSetAcl.php,v 1.15 2004-06-08 10:05:12 rurban Exp $');
3 /*
4  Copyright 2004 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  * Set individual PagePermissions
25  *
26  * Usage:   <?plugin WikiAdminSetAcl ?> or called via WikiAdminSelect
27  * Author:  Reini Urban <rurban@x-ray.at>
28  *
29  * KNOWN ISSUES:
30  * Doesn't accept yet s=wildcard preselection
31  * Requires PHP 4.2 so far.
32  */
33 require_once('lib/PageList.php');
34 require_once('lib/plugin/WikiAdminSelect.php');
35
36 class WikiPlugin_WikiAdminSetAcl
37 extends WikiPlugin_WikiAdminSelect
38 {
39     function getName() {
40         return _("WikiAdminSetAcl");
41     }
42
43     function getDescription() {
44         return _("Set individual page permissions.");
45     }
46
47     function getVersion() {
48         return preg_replace("/[Revision: $]/", '',
49                             "\$Revision: 1.15 $");
50     }
51
52     function getDefaultArguments() {
53         return array(
54                      's'        => false,
55                      'p'        => "[]",
56                      /* Pages to exclude in listing */
57                      'exclude'  => '',
58                      /* Columns to include in listing */
59                      'info'     => 'pagename,perm,mtime,owner,author',
60                      /* How to sort */
61                      'sortby'   => 'pagename',
62                      'limit'    => 0,
63                      );
64     }
65
66     function setaclPages(&$request, $pages, $acl) {
67         $ul = HTML::ul();
68         $count = 0;
69         $dbi =& $request->_dbi; 
70         // check new_group and new_perm
71         if (isset($acl['_add_group'])) {
72             //add groups with perm
73             foreach ($acl['_add_group'] as $access => $dummy) {
74                 $group = $acl['_new_group'][$access];
75                 $acl[$access][$group] = isset($acl['_new_perm'][$access]) ? 1 : 0;
76             }
77             unset($acl['_add_group']); 
78         }
79         unset($acl['_new_group']); unset($acl['_new_perm']);
80         if (isset($acl['_del_group'])) {
81             //del groups with perm
82             foreach ($acl['_del_group'] as $access => $del) {
83                 while (list($group,$dummy) = each($del)) 
84                     unset($acl[$access][$group]);
85             }
86             unset($acl['_del_group']);
87         }
88         if ($perm = new PagePermission($acl)) {
89             $perm->sanify();
90             foreach ($pages as $pagename) {
91                 // check if unchanged? we need a deep array_equal
92                 $page = $dbi->getPage($pagename);
93                 $oldperm = getPagePermissions($page);
94                 if ($oldperm)
95                     $oldperm->sanify();
96                 if ($oldperm and $perm->equal($oldperm->perm)) // (serialize($oldperm->perm) == serialize($perm->perm))
97                     $ul->pushContent(HTML::li(fmt("ACL not changed for page '%s'.",$pagename)));
98                 elseif (mayAccessPage('change', $pagename)) {
99                     setPagePermissions ($page, $perm);
100                     $ul->pushContent(HTML::li(fmt("ACL changed for page '%s'.",$pagename)));
101                     $count++;
102                 } else {
103                     $ul->pushContent(HTML::li(fmt("Access denied to change page '%s'.",$pagename)));
104                 }
105             }
106         } else {
107             $ul->pushContent(HTML::li(fmt("Invalid ACL")));
108         }
109         if ($count) {
110             $dbi->touch();
111             return HTML($ul,
112                         HTML::p(fmt("%s pages have been changed.",$count)));
113         } else {
114             return HTML($ul,
115                         HTML::p(fmt("No pages changed.")));
116         }
117     }
118     
119     function run($dbi, $argstr, &$request, $basepage) {
120         //if (!DEBUG)
121         //    return $this->disabled("WikiAdminSetAcl not yet enabled. Set DEBUG to try it.");
122         if ($request->getArg('action') != 'browse')
123             if ($request->getArg('action') != _("PhpWikiAdministration/SetAcl"))
124                 return $this->disabled("(action != 'browse')");
125         
126         $args = $this->getArgs($argstr, $request);
127         $this->_args = $args;
128         if (!empty($args['exclude']))
129             $exclude = explodePageList($args['exclude']);
130         else
131             $exclude = false;
132         $this->preSelectS(&$args, &$request);
133
134         $p = $request->getArg('p');
135         $post_args = $request->getArg('admin_setacl');
136         $next_action = 'select';
137         $pages = array();
138         if ($p && !$request->isPost())
139             $pages = $p;
140         elseif ($this->_list)
141             $pages = $this->_list;
142         $header = HTML::p();
143         if ($p && $request->isPost() &&
144             !empty($post_args['acl']) && empty($post_args['cancel'])) {
145             // without individual PagePermissions:
146             if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) {
147                 $request->_notAuthorized(WIKIAUTH_ADMIN);
148                 $this->disabled("! user->isAdmin");
149             }
150             if ($post_args['action'] == 'verify') {
151                 // Real action
152                 $header->pushContent(
153                     $this->setaclPages($request, array_keys($p),
154                                        $request->getArg('acl')));
155             }
156             if ($post_args['action'] == 'select') {
157                 if (!empty($post_args['acl']))
158                     $next_action = 'verify';
159                 foreach ($p as $name => $c) {
160                     $pages[$name] = 1;
161                 }
162             }
163         }
164         if ($next_action == 'select' and empty($pages)) {
165             // List all pages to select from.
166             $pages = $this->collectPages($pages, $dbi, $args['sortby'], $args['limit']);
167         }
168         if ($next_action == 'verify') {
169             $args['info'] = "checkbox,pagename,perm,mtime,owner,author";
170         }
171         $pagelist = new PageList_Selectable($args['info'], 
172                                             $exclude,
173                                             array('types' => array(
174                                                   'perm'
175                                                   => new _PageList_Column_perm('perm', _("Permission")),
176                                                   'acl'
177                                                   => new _PageList_Column_acl('acl', _("ACL")))));
178
179         $pagelist->addPageList($pages);
180         if ($next_action == 'verify') {
181             $button_label = _("Yes");
182             $header = $this->setaclForm($header, $post_args, $pages);
183             $header->pushContent(
184               HTML::p(HTML::strong(
185                   _("Are you sure you want to permanently change access to the selected files?"))));
186         }
187         else {
188             $button_label = _("SetAcl");
189             $header = $this->setaclForm($header, $post_args, $pages);
190             $header->pushContent(HTML::p(_("Select the pages to change:")));
191         }
192
193         $buttons = HTML::p(Button('submit:admin_setacl[acl]', $button_label, 'wikiadmin'),
194                            Button('submit:admin_setacl[cancel]', _("Cancel"), 'button'));
195
196         return HTML::form(array('action' => $request->getPostURL(),
197                                 'method' => 'post'),
198                           $header,
199                           $pagelist->getContent(),
200                           HiddenInputs($request->getArgs(),
201                                         false,
202                                         array('admin_setacl')),
203                           HiddenInputs(array('admin_setacl[action]' => $next_action)),
204                           ENABLE_PAGEPERM
205                           ? ''
206                           : HiddenInputs(array('require_authority_for_post' => WIKIAUTH_ADMIN)),
207                           $buttons);
208     }
209
210     function setaclForm(&$header, $post_args, $pagehash) {
211         $acl = $post_args['acl'];
212         //$header->pushContent(HTML::p(HTML::em(_("This plugin is currently under development and does not work!"))));
213         //todo: find intersection of all page perms
214         $pages = array();
215         foreach ($pagehash as $name => $checked) {
216            if ($checked) $pages[] = $name;
217         }
218         $perm_tree = pagePermissions($name);
219         $table = pagePermissionsAclFormat($perm_tree,!empty($pages));
220         $header->pushContent(HTML::p(fmt("Selected Pages: %s",join(', ',$pages))));
221         if (DEBUG) {
222             ;//$header->pushContent(HTML::pre("Permission tree for $name:\n",print_r($perm_tree,true)));
223         }
224         $type = $perm_tree[0];
225         if ($type == 'inherited')
226             $type = sprintf(_("page permission inherited from %s"),$perm_tree[1][0]);
227         elseif ($type == 'page')
228             $type = _("invidual page permission");
229         elseif ($type == 'default')
230             $type = _("default page permission");
231         $header->pushContent(HTML::p(_("Type: "),$type));
232         $header->pushContent(HTML::p(
233                                      _("Description: Selected Grant checkboxes allow access, unselected checkboxes deny access."),
234                                      _("To ignore delete the line."),
235                                      _("To add check 'Add' near the dropdown list.")
236                                      ));
237         $header->pushContent(HTML::blockquote($table));
238         //
239         // display array of checkboxes for existing perms
240         // and a dropdown for user/group to add perms.
241         // disabled if inherited, 
242         // checkbox to disable inheritance, 
243         // another checkbox to progate new permissions to all childs (if there exist some)
244         //Todo:
245         // warn if more pages are selected and they have different perms
246         //$header->pushContent(HTML::input(array('name' => 'admin_setacl[acl]',
247         //                                       'value' => $post_args['acl'])));
248         $header->pushContent(HTML::br());
249         if (!empty($pages) and DEBUG) {
250           $checkbox = HTML::input(array('type' => 'checkbox',
251                                         'name' => 'admin_setacl[updatechildren]',
252                                         'value' => 1));
253           if (!empty($post_args['updatechildren']))  $checkbox->setAttr('checked','checked');
254           $header->pushContent($checkbox,
255                   _("Propagate new permissions to all subpages?"),
256                   HTML::raw("&nbsp;&nbsp;"),
257                   HTML::em(_("(disable individual page permissions, enable inheritance)?")),
258                   HTML::em(_("(Currently not working)"))
259                                );
260         }
261         $header->pushContent(HTML::hr(),HTML::p());
262         return $header;
263     }
264 }
265
266 class _PageList_Column_acl extends _PageList_Column {
267     function _getValue ($page_handle, &$revision_handle) {
268         $perm_tree = pagePermissions($page_handle->_pagename);
269         return pagePermissionsAclFormat($perm_tree);
270         if (0) {
271             ob_start();
272             var_dump($perm_array);
273             $xml = ob_get_contents();
274             ob_end_clean();
275             return $xml;
276         }
277     }
278 };
279
280 class _PageList_Column_perm extends _PageList_Column {
281     function _getValue ($page_handle, &$revision_handle) {
282         $perm_array = pagePermissions($page_handle->_pagename);
283         return pagePermissionsSimpleFormat($perm_array,
284                                            $page_handle->get('author'),
285                                            $page_handle->get('group'));
286         if (0) {
287             ob_start();
288             var_dump($perm_array);
289             $xml = ob_get_contents();
290             ob_end_clean();
291             return $xml;
292         }
293     }
294 };
295
296 // $Log: not supported by cvs2svn $
297 // Revision 1.14  2004/06/07 22:28:06  rurban
298 // add acl field to mimified dump
299 //
300 // Revision 1.13  2004/06/04 20:32:54  rurban
301 // Several locale related improvements suggested by Pierrick Meignen
302 // LDAP fix by John Cole
303 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
304 //
305 // Revision 1.12  2004/06/03 22:24:48  rurban
306 // reenable admin check on !ENABLE_PAGEPERM, honor s=Wildcard arg, fix warning after Remove
307 //
308 // Revision 1.11  2004/06/01 15:28:02  rurban
309 // AdminUser only ADMIN_USER not member of Administrators
310 // some RateIt improvements by dfrankow
311 // edit_toolbar buttons
312 //
313 // Revision 1.10  2004/05/27 17:49:06  rurban
314 // renamed DB_Session to DbSession (in CVS also)
315 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
316 // remove leading slash in error message
317 // added force_unlock parameter to File_Passwd (no return on stale locks)
318 // fixed adodb session AffectedRows
319 // added FileFinder helpers to unify local filenames and DATA_PATH names
320 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
321 //
322 // Revision 1.9  2004/05/24 17:34:53  rurban
323 // use ACLs
324 //
325 // Revision 1.8  2004/05/16 22:32:54  rurban
326 // setacl icons
327 //
328 // Revision 1.7  2004/05/16 22:07:35  rurban
329 // check more config-default and predefined constants
330 // various PagePerm fixes:
331 //   fix default PagePerms, esp. edit and view for Bogo and Password users
332 //   implemented Creator and Owner
333 //   BOGOUSERS renamed to BOGOUSER
334 // fixed syntax errors in signin.tmpl
335 //
336 // Revision 1.5  2004/04/07 23:13:19  rurban
337 // fixed pear/File_Passwd for Windows
338 // fixed FilePassUser sessions (filehandle revive) and password update
339 //
340 // Revision 1.4  2004/03/17 20:23:44  rurban
341 // fixed p[] pagehash passing from WikiAdminSelect, fixed problem removing pages with [] in the pagename
342 //
343 // Revision 1.3  2004/03/12 13:31:43  rurban
344 // enforce PagePermissions, errormsg if not Admin
345 //
346 // Revision 1.2  2004/02/24 04:02:07  rurban
347 // Better warning messages
348 //
349 // Revision 1.1  2004/02/23 21:30:25  rurban
350 // more PagePerm stuff: (working against 1.4.0)
351 //   ACL editing and simplification of ACL's to simple rwx------ string
352 //   not yet working.
353 //
354 //
355
356 // Local Variables:
357 // mode: php
358 // tab-width: 8
359 // c-basic-offset: 4
360 // c-hanging-comment-ender-p: nil
361 // indent-tabs-mode: nil
362 // End:
363 ?>