]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminChown.php
better support for case_exact search (not caseexact for consistency),
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminChown.php
1 <?php // -*-php-*-
2 rcs_id('$Id: WikiAdminChown.php,v 1.7 2004-11-23 15:17:19 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  * Usage:   <?plugin WikiAdminChown s||=* ?> or called via WikiAdminSelect
25  * @author:  Reini Urban <rurban@x-ray.at>
26  *
27  * KNOWN ISSUES:
28  * Requires PHP 4.2 so far.
29  */
30 require_once('lib/PageList.php');
31 require_once('lib/plugin/WikiAdminSelect.php');
32
33 class WikiPlugin_WikiAdminChown
34 extends WikiPlugin_WikiAdminSelect
35 {
36     function getName() {
37         return _("WikiAdminChown");
38     }
39
40     function getDescription() {
41         return _("Chown selected pages.");
42     }
43
44     function getVersion() {
45         return preg_replace("/[Revision: $]/", '',
46                             "\$Revision: 1.7 $");
47     }
48
49     function getDefaultArguments() {
50         return array_merge 
51             (
52              PageList::supportedArgs(),
53              array(
54                    's'          => false,
55                    'user'       => false,
56                    /* Columns to include in listing */
57                    'info'     => 'pagename,owner,mtime',
58                    ));
59     }
60
61     function chownPages(&$dbi, &$request, $pages, $newowner) {
62         $ul = HTML::ul();
63         $count = 0;
64         foreach ($pages as $name) {
65             $page = $dbi->getPage($name);
66             if ( ($owner = $page->getOwner()) and 
67                  $newowner != $owner ) {
68                 if (!mayAccessPage('change', $name)) {
69                     $ul->pushContent(HTML::li(fmt("Access denied to change page '%s'.",
70                                                   WikiLink($name))));
71                 } else {
72                     $page->set('owner', $newowner);
73                     if ($page->get('owner') === $newowner) {
74                         $ul->pushContent(HTML::li(fmt("Chown page '%s' to '%s'.",
75                                                       WikiLink($name), WikiLink($newowner))));
76                         $count++;
77                     } else {
78                         $ul->pushContent(HTML::li(fmt("Couldn't chown page '%s' to '%s'.", 
79                                                       WikiLink($name), $newowner)));
80                     }
81                 }
82             }
83         }
84         if ($count) {
85             $dbi->touch();
86             return HTML($ul, HTML::p(fmt("%s pages have been permanently changed.",
87                                          $count)));
88         } else {
89             return HTML($ul, HTML::p(fmt("No pages changed.")));
90         }
91     }
92     
93     function run($dbi, $argstr, &$request, $basepage) {
94         if ($request->getArg('action') != 'browse')
95             if (!$request->getArg('action') == _("PhpWikiAdministration/Chown"))
96                 return $this->disabled("(action != 'browse')");
97         
98         $args = $this->getArgs($argstr, $request);
99         $this->_args = $args;
100         if (empty($args['user']))
101             $args['user'] = $request->_user->UserName();
102         /*if (!empty($args['exclude']))
103             $exclude = explodePageList($args['exclude']);
104         else
105         $exclude = false;*/
106         $this->preSelectS($args, $request);
107
108         $p = $request->getArg('p');
109         if (!$p) $p = $this->_list;
110         $post_args = $request->getArg('admin_chown');
111         if (!$request->isPost() and empty($post_args['user']))
112             $post_args['user'] = $args['user'];
113         $next_action = 'select';
114         $pages = array();
115         if ($p && !$request->isPost())
116             $pages = $p;
117         if ($p && $request->isPost() &&
118             !empty($post_args['chown']) && empty($post_args['cancel'])) {
119             // without individual PagePermissions:
120             if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) {
121                 $request->_notAuthorized(WIKIAUTH_ADMIN);
122                 $this->disabled("! user->isAdmin");
123             }
124             // DONE: error message if not allowed.
125             if ($post_args['action'] == 'verify') {
126                 // Real action
127                 return $this->chownPages($dbi, $request, array_keys($p), 
128                                           $post_args['user']);
129             }
130             if ($post_args['action'] == 'select') {
131                 if (!empty($post_args['user']))
132                     $next_action = 'verify';
133                 foreach ($p as $name => $c) {
134                     $pages[$name] = 1;
135                 }
136             }
137         }
138         if ($next_action == 'select' and empty($pages)) {
139             // List all pages to select from.
140             $pages = $this->collectPages($pages, $dbi, $args['sortby'], $args['limit'], $args['exclude']);
141         }
142         /* // let the user decide which info
143          if ($next_action == 'verify') {
144             $args['info'] = "checkbox,pagename,owner,mtime";
145         }
146         */
147         $pagelist = new PageList_Selectable($args['info'], $args['exclude'], $args);
148         $pagelist->addPageList($pages);
149
150         $header = HTML::p();
151         if ($next_action == 'verify') {
152             $button_label = _("Yes");
153             $header->pushContent(
154               HTML::p(HTML::strong(
155                 _("Are you sure you want to permanently chown the selected files?"))));
156             $header = $this->chownForm($header, $post_args);
157         }
158         else {
159             $button_label = _("Chown selected pages");
160             $header->pushContent(HTML::p(_("Select the pages to change the owner:")));
161             $header = $this->chownForm($header, $post_args);
162         }
163
164         $buttons = HTML::p(Button('submit:admin_chown[chown]', $button_label, 'wikiadmin'),
165                            Button('submit:admin_chown[cancel]', _("Cancel"), 'button'));
166
167         return HTML::form(array('action' => $request->getPostURL(),
168                                 'method' => 'post'),
169                           $header,
170                           $pagelist->getContent(),
171                           HiddenInputs($request->getArgs(),
172                                         false,
173                                         array('admin_chown')),
174                           HiddenInputs(array('admin_chown[action]' => $next_action)),
175                           ENABLE_PAGEPERM
176                           ? ''
177                           : HiddenInputs(array('require_authority_for_post' => WIKIAUTH_ADMIN)),
178                           $buttons);
179     }
180
181     function chownForm(&$header, $post_args) {
182         $header->pushContent(_("Chown")." ");
183         $header->pushContent(' '._("to").': ');
184         $header->pushContent(HTML::input(array('name' => 'admin_chown[user]',
185                                                'value' => $post_args['user'])));
186         $header->pushContent(HTML::p());
187         return $header;
188     }
189 }
190
191 // $Log: not supported by cvs2svn $
192 // Revision 1.6  2004/06/16 10:38:59  rurban
193 // Disallow refernces in calls if the declaration is a reference
194 // ("allow_call_time_pass_reference clean").
195 //   PhpWiki is now allow_call_time_pass_reference = Off clean,
196 //   but several external libraries may not.
197 //   In detail these libs look to be affected (not tested):
198 //   * Pear_DB odbc
199 //   * adodb oracle
200 //
201 // Revision 1.5  2004/06/14 11:31:39  rurban
202 // renamed global $Theme to $WikiTheme (gforge nameclash)
203 // inherit PageList default options from PageList
204 //   default sortby=pagename
205 // use options in PageList_Selectable (limit, sortby, ...)
206 // added action revert, with button at action=diff
207 // added option regex to WikiAdminSearchReplace
208 //
209 // Revision 1.4  2004/06/13 15:33:20  rurban
210 // new support for arguments owner, author, creator in most relevant
211 // PageList plugins. in WikiAdmin* via preSelectS()
212 //
213 // Revision 1.3  2004/06/08 10:05:11  rurban
214 // simplified admin action shortcuts
215 //
216 // Revision 1.2  2004/06/07 18:59:42  rurban
217 // added Chown link to Owner in statusbar
218 //
219 // Revision 1.1  2004/06/07 17:58:58  rurban
220 // new chown plugin
221 //
222 //
223
224 // Local Variables:
225 // mode: php
226 // tab-width: 8
227 // c-basic-offset: 4
228 // c-hanging-comment-ender-p: nil
229 // indent-tabs-mode: nil
230 // End:
231 ?>