]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminChmod.php
Disallow refernces in calls if the declaration is a reference
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminChmod.php
1 <?php // -*-php-*-
2 rcs_id('$Id: WikiAdminChmod.php,v 1.11 2004-06-16 10:38:59 rurban Exp $');
3 /*
4  Copyright 2004 $ThePhpWikiProgrammingTeam
5
6  This file is not yet part of PhpWiki. It doesn't work yet.
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, simplifying effective ACLs to 
25  * unix-like rwxr--r--+ permissions. (as in cygwin)
26  *
27  * Usage:   <?plugin WikiAdminChmod ?> or called via WikiAdminSelect
28  * Author:  Reini Urban <rurban@x-ray.at>
29  *
30  * KNOWN ISSUES:
31  * Currently we must be Admin. Later we use PagePermissions authorization.
32  *   (require_authority_for_post' => WIKIAUTH_ADMIN)
33  * Requires PHP 4.2 so far.
34  */
35 require_once('lib/PageList.php');
36 require_once('lib/plugin/WikiAdminSelect.php');
37
38 class WikiPlugin_WikiAdminChmod
39 extends WikiPlugin_WikiAdminSelect
40 {
41     function getName() {
42         return _("WikiAdminChmod");
43     }
44
45     function getDescription() {
46         return _("Set individual page permissions.");
47     }
48
49     function getVersion() {
50         return preg_replace("/[Revision: $]/", '',
51                             "\$Revision: 1.11 $");
52     }
53
54     function getDefaultArguments() {
55         return array_merge
56             (
57              PageList::supportedArgs(),
58              array(
59                    's'          => false,
60                    'perm'       => false,
61                    /* Columns to include in listing */
62                    'info'     => 'pagename,perm,mtime,author',
63                    ));
64     }
65
66     // todo: change permstring to some kind of default ACL hash. 
67     // See PagePermission class
68     function chmodHelper($permstring) {
69         $perm = array();
70         return $perm;
71     }
72
73     function chmodPages(&$dbi, &$request, $pages, $permstring) {
74         $ul = HTML::ul();
75         $count = 0;
76         $acl = chmodHelper($permstring);
77         if ($perm = new PagePermission($acl)) {
78             foreach ($pages as $name) {
79                 if ( $perm->store($dbi->getPage($name)) ) {
80                     $ul->pushContent(HTML::li(fmt("chmod page '%s' to '%s'.",$name, $permstring)));
81                     $count++;
82                 } else {
83                     $ul->pushContent(HTML::li(fmt("Couldn't chmod page '%s' to '%s'.", $name, $permstring)));
84                 }
85             }
86         } else {
87             $ul->pushContent(HTML::li(fmt("Invalid chmod string")));
88         }
89         if ($count) {
90             $dbi->touch();
91             return HTML($ul,
92                         HTML::p(fmt("%s pages have been changed.",$count)));
93         } else {
94             return HTML($ul,
95                         HTML::p(fmt("No pages changed.")));
96         }
97     }
98     
99     function run($dbi, $argstr, &$request, $basepage) {
100         if (!DEBUG)
101             return $this->disabled("WikiAdminChmod not yet enabled. Set DEBUG to try it.");
102         
103         $args = $this->getArgs($argstr, $request);
104         $this->_args = $args;
105         if (!empty($args['exclude']))
106             $exclude = explodePageList($args['exclude']);
107         else
108             $exclude = false;
109         $this->preSelectS($args, $request);
110
111         $p = $request->getArg('p');
112         if (!$p) $p = $this->_list;
113         $post_args = $request->getArg('admin_chmod');
114         $next_action = 'select';
115         $pages = array();
116         if ($p && !$request->isPost())
117             $pages = $p;
118         if ($p && $request->isPost() &&
119             !empty($post_args['chmod']) && empty($post_args['cancel'])) {
120             // without individual PagePermissions:
121             if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) {
122                 $request->_notAuthorized(WIKIAUTH_ADMIN);
123                 $this->disabled("! user->isAdmin");
124             }
125
126             if ($post_args['action'] == 'verify') {
127                 // Real action
128                 return $this->chmodPages($dbi, $request, array_keys($p), 
129                                           $post_args['perm']);
130             }
131             if ($post_args['action'] == 'select') {
132                 if (!empty($post_args['perm']))
133                     $next_action = 'verify';
134                 foreach ($p as $name => $c) {
135                     $pages[$name] = 1;
136                 }
137             }
138         }
139         if ($next_action == 'select' and empty($pages)) {
140             // List all pages to select from.
141             $pages = $this->collectPages($pages, $dbi, $args['sortby'], $args['limit']);
142         }
143         if ($next_action == 'verify') {
144             $args['info'] = "checkbox,pagename,perm,author,mtime";
145         }
146         $pagelist = new PageList_Selectable($args['info'], $exclude, $args);
147         $pagelist->addPageList($pages);
148
149         $header = HTML::p();
150         if ($next_action == 'verify') {
151             $button_label = _("Yes");
152             $header = $this->chmodForm($header, $post_args);
153             $header->pushContent(
154               HTML::p(HTML::strong(
155                 _("Are you sure you want to permanently change the selected files?"))));
156         }
157         else {
158             $button_label = _("Chmod");
159             $header = $this->chmodForm($header, $post_args);
160             $header->pushContent(HTML::p(_("Select the pages to change:")));
161         }
162
163         $buttons = HTML::p(Button('submit:admin_chmod[chmod]', $button_label, 'wikiadmin'),
164                            Button('submit:admin_chmod[cancel]', _("Cancel"), 'button'));
165
166         return HTML::form(array('action' => $request->getPostURL(),
167                                 'method' => 'post'),
168                           $header,
169                           $pagelist->getContent(),
170                           HiddenInputs($request->getArgs(),
171                                         false,
172                                         array('admin_chmod')),
173                           HiddenInputs(array('admin_chmod[action]' => $next_action)),
174                           ENABLE_PAGEPERM
175                           ? ''
176                           : HiddenInputs(array('require_authority_for_post' => WIKIAUTH_ADMIN)),
177                           $buttons);
178     }
179
180     function chmodForm(&$header, $post_args) {
181         $header->pushContent(
182             HTML::p(HTML::em(
183                _("This plugin is currently under development and does not work!"))));
184         $header->pushContent(_("Chmod to permission:"));
185         $header->pushContent(HTML::input(array('name' => 'admin_chmod[perm]',
186                                                'value' => $post_args['perm'])));
187         $header->pushContent(' '._("(ugo : rwx)"));
188         $header->pushContent(HTML::p());
189         $checkbox = HTML::input(array('type' => 'checkbox',
190                                       'name' => 'admin_chmod[updatechildren]',
191                                       'value' => 1));
192         if (!empty($post_args['updatechildren']))  $checkbox->setAttr('checked','checked');
193         $header->pushContent($checkbox,
194                 _("Propagate new permissions to all subpages?"),
195                 HTML::raw("&nbsp;&nbsp;"),
196                 HTML::em(_("(disable individual page permissions, enable inheritance)?")));
197         $header->pushContent(HTML::hr(),HTML::p());
198         return $header;
199     }
200
201 }
202
203 // $Log: not supported by cvs2svn $
204 // Revision 1.10  2004/06/14 11:31:39  rurban
205 // renamed global $Theme to $WikiTheme (gforge nameclash)
206 // inherit PageList default options from PageList
207 //   default sortby=pagename
208 // use options in PageList_Selectable (limit, sortby, ...)
209 // added action revert, with button at action=diff
210 // added option regex to WikiAdminSearchReplace
211 //
212 // Revision 1.9  2004/06/13 15:33:20  rurban
213 // new support for arguments owner, author, creator in most relevant
214 // PageList plugins. in WikiAdmin* via preSelectS()
215 //
216 // Revision 1.8  2004/06/04 20:32:54  rurban
217 // Several locale related improvements suggested by Pierrick Meignen
218 // LDAP fix by John Cole
219 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
220 //
221 // Revision 1.7  2004/06/03 22:24:42  rurban
222 // reenable admin check on !ENABLE_PAGEPERM, honor s=Wildcard arg, fix warning after Remove
223 //
224 // Revision 1.6  2004/03/17 20:23:44  rurban
225 // fixed p[] pagehash passing from WikiAdminSelect, fixed problem removing pages with [] in the pagename
226 //
227 // Revision 1.5  2004/03/12 13:31:43  rurban
228 // enforce PagePermissions, errormsg if not Admin
229 //
230 // Revision 1.4  2004/02/24 15:20:06  rurban
231 // fixed minor warnings: unchecked args, POST => Get urls for sortby e.g.
232 //
233 // Revision 1.3  2004/02/24 04:02:06  rurban
234 // Better warning messages
235 //
236 // Revision 1.2  2004/02/24 03:21:40  rurban
237 // enabled require_all check in WikiPoll
238 // better handling of <20 min visiting client: display results so far
239 //
240 // Revision 1.1  2004/02/23 21:30:25  rurban
241 // more PagePerm stuff: (working against 1.4.0)
242 //   ACL editing and simplification of ACL's to simple rwx------ string
243 //   not yet working.
244 //
245 //
246
247 // Local Variables:
248 // mode: php
249 // tab-width: 8
250 // c-basic-offset: 4
251 // c-hanging-comment-ender-p: nil
252 // indent-tabs-mode: nil
253 // End:
254 ?>