]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminRename.php
PageList enhanced and improved.
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminRename.php
1 <?php // -*-php-*-
2 rcs_id('$Id: WikiAdminRename.php,v 1.5 2004-02-15 21:34:37 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 WikiAdminRename ?> or called via WikiAdminSelect
25  * Author:  Reini Urban <rurban@x-ray.at>
26  *
27  * KNOWN ISSUES:
28  * Currently we must be Admin.
29  * Future versions will support PagePermissions.
30  * requires PHP 4.2 so far.
31  */
32 require_once('lib/PageList.php');
33 require_once('lib/plugin/WikiAdminSelect.php');
34
35 class WikiPlugin_WikiAdminRename
36 extends WikiPlugin_WikiAdminSelect
37 {
38     function getName() {
39         return _("WikiAdminRename");
40     }
41
42     function getDescription() {
43         return _("Rename selected pages.");
44     }
45
46     function getVersion() {
47         return preg_replace("/[Revision: $]/", '',
48                             "\$Revision: 1.5 $");
49     }
50
51     function getDefaultArguments() {
52         return array(
53                      /* Pages to exclude */
54                      'exclude'  => '',
55                      /* Columns to include in listing */
56                      'info'     => 'pagename,mtime',
57                      /* How to sort */
58                      'sortby'   => 'pagename',
59                      );
60     }
61
62     function renameHelper($name, $from, $to) {
63         return str_replace($from,$to,$name);
64     }
65
66     function renamePages(&$dbi, &$request, $pages, $from, $to, $updatelinks=false) {
67         $ul = HTML::ul();
68         $count = 0;
69         foreach ($pages as $name) {
70             if ( ($newname = $this->renameHelper($name,$from,$to)) and 
71                   $newname != $name and
72                  $dbi->renamePage($name,$newname,$updatelinks) ) {
73                 /* not yet implemented for all backends */
74                 $ul->pushContent(HTML::li(fmt("Renamed page '%s' to '%s'.",$name,WikiLink($newname))));
75                 $count++;
76             } else {
77                 $ul->pushContent(HTML::li(fmt("Couldn't rename page '%s' to '%s'.", $name, $newname)));
78             }
79         }
80         if ($count) {
81             $dbi->touch();
82             return HTML($ul,
83                         HTML::p(fmt("%s pages have been permanently renamed.",$count)));
84         } else {
85             return HTML($ul,
86                         HTML::p(fmt("No pages renamed.")));
87         }
88     }
89     
90     function run($dbi, $argstr, $request) {
91         if ($request->getArg('action') != 'browse')
92             return $this->disabled("(action != 'browse')");
93         
94         $args = $this->getArgs($argstr, $request);
95         $this->_args = $args;
96         if (!empty($args['exclude']))
97             $exclude = explodePageList($args['exclude']);
98         else
99             $exclude = false;
100
101         $p = $request->getArg('p');
102         $post_args = $request->getArg('admin_rename');
103         $next_action = 'select';
104         $pages = array();
105         if ($p && !$request->isPost())
106             $pages = $p;
107         if ($p && $request->isPost() && $request->_user->isAdmin()
108             && !empty($post_args['rename']) && empty($post_args['cancel'])) {
109             // FIXME: error message if not admin.
110             if ($post_args['action'] == 'verify') {
111                 // Real action
112                 return $this->renamePages($dbi, $request, $p, $post_args['from'], $post_args['to'], $post_args['updatelinks']);
113             }
114             if ($post_args['action'] == 'select') {
115                 if (!empty($post_args['from']))
116                     $next_action = 'verify';
117                 foreach ($p as $name) {
118                     $pages[$name] = 1;
119                 }
120             }
121         }
122         if ($next_action == 'select' and empty($pages)) {
123             // List all pages to select from.
124             $pages = $this->collectPages($pages, $dbi, $args['sortby']);
125         }
126         if ($next_action == 'verify') {
127             $args['info'] = "checkbox,pagename,renamed_pagename";
128         }
129         $pagelist = new PageList_Selectable($args['info'], $exclude);
130         $pagelist->addPageList($pages);
131
132         $header = HTML::p();
133         if ($next_action == 'verify') {
134             $button_label = _("Yes");
135             $header->pushContent(
136               HTML::p(HTML::strong(
137                                    _("Are you sure you want to permanently rename the selected files?"))));
138             $header = $this->renameForm($header, $post_args);
139         }
140         else {
141             $button_label = _("Rename selected pages");
142             $header->pushContent(HTML::p(_("Select the pages to rename:")));
143             $header = $this->renameForm($header, $post_args);
144         }
145
146
147         $buttons = HTML::p(Button('submit:admin_rename[rename]', $button_label, 'wikiadmin'),
148                            Button('submit:admin_rename[cancel]', _("Cancel"), 'button'));
149
150         return HTML::form(array('action' => $request->getPostURL(),
151                                 'method' => 'post'),
152                           $header,
153                           $pagelist->getContent(),
154                           HiddenInputs($request->getArgs(),
155                                         false,
156                                         array('admin_rename')),
157                           HiddenInputs(array('admin_rename[action]' => $next_action,
158                                              'require_authority_for_post' => WIKIAUTH_ADMIN)),
159                           $buttons);
160     }
161
162     function renameForm(&$header, $post_args) {
163         $header->pushContent(_("Rename")." "._("from").': ');
164         $header->pushContent(HTML::input(array('name' => 'admin_rename[from]',
165                                                'value' => $post_args['from'])));
166         $header->pushContent(' '._("to").': ');
167         $header->pushContent(HTML::input(array('name' => 'admin_rename[to]',
168                                                'value' => $post_args['to'])));
169         $header->pushContent(' '._("(no regex, case-sensitive)"));
170         if (0) {
171             $header->pushContent(HTML::br());
172             $header->pushContent(_("Change pagename in all linked pages also?"));
173             $checkbox = HTML::input(array('type' => 'checkbox',
174                                           'name' => 'admin_rename[updatelinks]',
175                                           'value' => 1));
176             if ($post_args['updatelinks'])
177                 $checkbox->setAttr('checked','checked');
178             $header->pushContent($checkbox);
179         }
180         $header->pushContent(HTML::p());
181         return $header;
182     }
183
184 }
185
186 // $Log: not supported by cvs2svn $
187 // Revision 1.4  2004/02/12 17:05:39  rurban
188 // WikiAdminRename:
189 //   added "Change pagename in all linked pages also"
190 // PageList:
191 //   added javascript toggle for Select
192 // WikiAdminSearchReplace:
193 //   fixed another typo
194 //
195 // Revision 1.3  2004/02/12 13:05:50  rurban
196 // Rename functional for PearDB backend
197 // some other minor changes
198 // SiteMap comes with a not yet functional feature request: includepages (tbd)
199 //
200 // Revision 1.2  2004/02/12 11:45:11  rurban
201 // only WikiDB method missing
202 //
203 // Revision 1.1  2004/02/11 20:00:16  rurban
204 // WikiAdmin... series overhaul. Rename misses the db backend methods yet. Chmod + Chwon still missing.
205 //
206
207 // Local Variables:
208 // mode: php
209 // tab-width: 8
210 // c-basic-offset: 4
211 // c-hanging-comment-ender-p: nil
212 // indent-tabs-mode: nil
213 // End:
214 ?>