]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminSetAcl.php
Better use "%d" for numbers; remove unneeded "permanently"
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminSetAcl.php
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 /*
4  * Copyright 2004 $ThePhpWikiProgrammingTeam
5  * Copyright 2009 Marc-Etienne Vargenau, Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with PhpWiki; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 /**
25  * Set individual PagePermissions
26  *
27  * Usage:   <<WikiAdminSetAcl >> or called via WikiAdminSelect
28  * Author:  Reini Urban <rurban@x-ray.at>
29  *
30  * TODO: UI to add custom group/username.
31  * Currently it's easier to dump a page, fix it manually and
32  * import it, than use Setacl
33  */
34 require_once('lib/PageList.php');
35 require_once('lib/plugin/WikiAdminSelect.php');
36
37 class WikiPlugin_WikiAdminSetAcl
38 extends WikiPlugin_WikiAdminSelect
39 {
40     function getName() {
41         return _("WikiAdminSetAcl");
42     }
43
44     function getDescription() {
45         return _("Set individual page permissions.");
46     }
47
48     function getDefaultArguments() {
49         return array_merge
50             (
51              WikiPlugin_WikiAdminSelect::getDefaultArguments(),
52              array(
53                      'p'        => "[]",  // list of pages
54                      /* Columns to include in listing */
55                      'info'     => 'pagename,perm,mtime,owner,author',
56                      ));
57     }
58
59     function setaclPages(&$request, $pages, $acl) {
60         $result = HTML::div();
61         $count = 0;
62         $dbi =& $request->_dbi;
63         // check new_group and new_perm
64         if (isset($acl['_add_group'])) {
65             //add groups with perm
66             foreach ($acl['_add_group'] as $access => $dummy) {
67                 $group = $acl['_new_group'][$access];
68                 $acl[$access][$group] = isset($acl['_new_perm'][$access]) ? 1 : 0;
69             }
70             unset($acl['_add_group']);
71         }
72         unset($acl['_new_group']); unset($acl['_new_perm']);
73         if (isset($acl['_del_group'])) {
74             //del groups with perm
75             foreach ($acl['_del_group'] as $access => $del) {
76                 while (list($group,$dummy) = each($del))
77                     unset($acl[$access][$group]);
78             }
79             unset($acl['_del_group']);
80         }
81         if ($perm = new PagePermission($acl)) {
82             $perm->sanify();
83             foreach ($pages as $pagename) {
84                     // check if unchanged? we need a deep array_equal
85                     $page = $dbi->getPage($pagename);
86                     $oldperm = getPagePermissions($page);
87                 if ($oldperm)
88                     $oldperm->sanify();
89                     if ($oldperm and $perm->equal($oldperm->perm)) {
90                     $result->setAttr('class', 'error');
91                     $result->pushContent(HTML::p(fmt("ACL not changed for page '%s'.",$pagename)));
92                 } elseif (mayAccessPage('change', $pagename)) {
93                     setPagePermissions ($page, $perm);
94                     $result->setAttr('class', 'feedback');
95                     $result->pushContent(HTML::p(fmt("ACL changed for page '%s'",
96                                                      $pagename)));
97                     $result->pushContent(HTML::p(fmt("from '%s'",
98                                                      $oldperm ? $oldperm->asAclLines() : "None")));
99                     $result->pushContent(HTML::p(fmt("to '%s'.",
100                                                      $perm->asAclLines())));
101
102                     // Create new revision so that ACL change appears in history.
103                     $current = $page->getCurrentRevision();
104                     $version = $current->getVersion();
105                     $meta = $current->_data;
106                     $text = $current->getPackedContent();
107                     $meta['summary'] = sprintf(_("ACL changed for page '%s' from '%s' to '%s'."),
108                                                $pagename,
109                                                $oldperm ? $oldperm->asAclLines() : "None",
110                                                $perm->asAclLines());
111                     $meta['is_minor_edit'] = 1;
112                     $meta['author'] =  $request->_user->UserName();
113                     unset($meta['mtime']); // force new date
114                     $page->save($text, $version + 1, $meta);
115
116                     $count++;
117                 } else {
118                     $result->setAttr('class', 'error');
119                     $result->pushContent(HTML::p(fmt("Access denied to change page '%s'.",$pagename)));
120                 }
121             }
122         } else {
123             $result->pushContent(HTML::p(_("Invalid ACL")));
124         }
125         if ($count) {
126             $dbi->touch();
127             $result->setAttr('class', 'feedback');
128             if ($count > 1) {
129                 $result->pushContent(HTML::p(fmt("%d pages have been changed.", $count)));
130             }
131         } else {
132             $result->setAttr('class', 'error');
133             $result->pushContent(HTML::p(_("No pages changed.")));
134         }
135         return $result;
136     }
137
138     function run($dbi, $argstr, &$request, $basepage) {
139         if ($request->getArg('action') != 'browse')
140             if ($request->getArg('action') != _("PhpWikiAdministration/SetAcl"))
141                 return $this->disabled("(action != 'browse')");
142         if (!ENABLE_PAGEPERM)
143             return $this->disabled("ENABLE_PAGEPERM = false");
144
145         $args = $this->getArgs($argstr, $request);
146         $this->_args = $args;
147         $this->preSelectS($args, $request);
148
149         $p = $request->getArg('p');
150         $post_args = $request->getArg('admin_setacl');
151         $next_action = 'select';
152         $pages = array();
153         if ($p && !$request->isPost())
154             $pages = $p;
155         elseif ($this->_list)
156             $pages = $this->_list;
157         $header = HTML::fieldset();
158         if ($p && $request->isPost() &&
159             !empty($post_args['acl']) && empty($post_args['cancel'])) {
160             // without individual PagePermissions:
161             if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) {
162                 $request->_notAuthorized(WIKIAUTH_ADMIN);
163                 $this->disabled("! user->isAdmin");
164             }
165             if ($post_args['action'] == 'verify') {
166                 // Real action
167                 return $this->setaclPages($request, array_keys($p), $request->getArg('acl'));
168             }
169             if ($post_args['action'] == 'select') {
170                 if (!empty($post_args['acl']))
171                     $next_action = 'verify';
172                 foreach ($p as $name => $c) {
173                     $pages[$name] = 1;
174                 }
175             }
176         }
177         if ($next_action == 'select' and empty($pages)) {
178             // List all pages to select from.
179             $pages = $this->collectPages($pages, $dbi, $args['sortby'], $args['limit'], $args['exclude']);
180         }
181         if ($next_action == 'verify') {
182             $args['info'] = "checkbox,pagename,perm,mtime,owner,author";
183         }
184         $pagelist = new PageList_Selectable($args['info'],
185                                             $args['exclude'],
186                                             array('types' => array(
187                                                   'perm'
188                                                   => new _PageList_Column_perm('perm', _("Permission")),
189                                                   'acl'
190                                                   => new _PageList_Column_acl('acl', _("ACL")))));
191
192         $pagelist->addPageList($pages);
193         if ($next_action == 'verify') {
194             $button_label = _("Yes");
195             $header = $this->setaclForm($header, $post_args, $pages);
196             $header->pushContent(
197               HTML::p(HTML::strong(
198                   _("Are you sure you want to permanently change access rights to the selected files?"))));
199         }
200         else {
201             $button_label = _("Change Access Rights");
202             $header = $this->setaclForm($header, $post_args, $pages);
203             $header->pushContent(HTML::legend(_("Select the pages where to change access rights")));
204         }
205
206         $buttons = HTML::p(Button('submit:admin_setacl[acl]', $button_label, 'wikiadmin'),
207                            Button('submit:admin_setacl[cancel]', _("Cancel"), 'button'));
208         $header->pushContent($buttons);
209
210         return HTML::form(array('action' => $request->getPostURL(),
211                                 'method' => 'post'),
212                           $header,
213                           $pagelist->getContent(),
214                           HiddenInputs($request->getArgs(),
215                                         false,
216                                         array('admin_setacl')),
217                           HiddenInputs(array('admin_setacl[action]' => $next_action)),
218                           ENABLE_PAGEPERM
219                           ? ''
220                           : HiddenInputs(array('require_authority_for_post' => WIKIAUTH_ADMIN)));
221     }
222
223     function setaclForm(&$header, $post_args, $pagehash) {
224         $acl = $post_args['acl'];
225
226         //FIXME: find intersection of all pages perms, not just from the last pagename
227         $pages = array();
228         foreach ($pagehash as $name => $checked) {
229            if ($checked) $pages[] = $name;
230         }
231         $perm_tree = pagePermissions($name);
232         $table = pagePermissionsAclFormat($perm_tree, !empty($pages));
233         $header->pushContent(HTML::strong(_("Selected Pages: ")), HTML::tt(join(', ',$pages)), HTML::br());
234         $first_page = $GLOBALS['request']->_dbi->getPage($name);
235         $owner = $first_page->getOwner();
236         list($type, $perm) = pagePermissionsAcl($perm_tree[0], $perm_tree);
237         //if (DEBUG) $header->pushContent(HTML::pre("Permission tree for $name:\n",print_r($perm_tree,true)));
238         if ($type == 'inherited')
239             $type = sprintf(_("page permission inherited from %s"), $perm_tree[1][0]);
240         elseif ($type == 'page')
241             $type = _("individual page permission");
242         elseif ($type == 'default')
243             $type = _("default page permission");
244         $header->pushContent(HTML::strong(_("Type")._(": ")), HTML::tt($type),HTML::br());
245         $header->pushContent(HTML::strong(_("ACL")._(": ")), HTML::tt($perm->asAclLines()),HTML::br());
246
247         $header->pushContent(HTML::p(HTML::strong(_("Description")._(": ")),
248                                      _("Selected Grant checkboxes allow access, unselected checkboxes deny access."),
249                                      _("To ignore delete the line."),
250                                      _("To add check 'Add' near the dropdown list.")
251                                      ));
252         $header->pushContent($table);
253         //
254         // display array of checkboxes for existing perms
255         // and a dropdown for user/group to add perms.
256         // disabled if inherited,
257         // checkbox to disable inheritance,
258         // another checkbox to progate new permissions to all childs (if there exist some)
259         //Todo:
260         // warn if more pages are selected and they have different perms
261         //$header->pushContent(HTML::input(array('name' => 'admin_setacl[acl]',
262         //                                       'value' => $post_args['acl'])));
263         $header->pushContent(HTML::br());
264         if (!empty($pages) and defined('EXPERIMENTAL') and EXPERIMENTAL) {
265           $checkbox = HTML::input(array('type' => 'checkbox',
266                                         'name' => 'admin_setacl[updatechildren]',
267                                         'value' => 1));
268           if (!empty($post_args['updatechildren']))  $checkbox->setAttr('checked','checked');
269           $header->pushContent($checkbox,
270                     _("Propagate new permissions to all subpages?"),
271                   HTML::raw("&nbsp;&nbsp;"),
272                   HTML::em(_("(disable individual page permissions, enable inheritance)?")),
273                   HTML::br(),HTML::em(_("(Currently not working)"))
274                                );
275         }
276         $header->pushContent(HTML::hr());
277         return $header;
278     }
279 }
280
281 // Local Variables:
282 // mode: php
283 // tab-width: 8
284 // c-basic-offset: 4
285 // c-hanging-comment-ender-p: nil
286 // indent-tabs-mode: nil
287 // End:
288 ?>