]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/WikiAdminSearchReplace.php
Better user interface and feedback messages
[SourceForge/phpwiki.git] / lib / plugin / WikiAdminSearchReplace.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /*
4  Copyright 2004,2007 $ThePhpWikiProgrammingTeam
5  Copyright 2008-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  * Usage:   <?plugin WikiAdminSearchReplace ?> or called via WikiAdminSelect
26  * Author:  Reini Urban <rurban@x-ray.at>
27  *
28  * KNOWN ISSUES:
29  *   Requires PHP 4.2 so far.
30  */
31 require_once('lib/PageList.php');
32 require_once('lib/plugin/WikiAdminSelect.php');
33
34 class WikiPlugin_WikiAdminSearchReplace
35 extends WikiPlugin_WikiAdminSelect
36 {
37     function getName() {
38         return _("WikiAdminSearchReplace");
39     }
40
41     function getDescription() {
42         return _("Search and replace text in selected wiki pages.");
43     }
44
45     function getVersion() {
46         return preg_replace("/[Revision: $]/", '',
47                             "\$Revision$");
48     }
49
50     function getDefaultArguments() {
51         return array_merge
52             (
53              PageList::supportedArgs(),
54              array(
55                    's'  => false,
56                    /* Columns to include in listing */
57                    'info'     => 'some',
58                    ));
59     }
60
61     function replaceHelper(&$dbi, &$request, $pagename, $from, $to, $case_exact=true, $regex=false) {
62         $page = $dbi->getPage($pagename);
63         if ($page->exists()) {// don't replace default contents
64             $current = $page->getCurrentRevision();
65             $version = $current->getVersion();
66             $text = $current->getPackedContent();
67             if ($regex) {
68                 $newtext = preg_replace("/".$from."/".($case_exact?'':'i'), $to, $text);
69             } else {
70                 if ($case_exact) {
71                     $newtext = str_replace($from, $to, $text);
72                 } else {
73                     //not all PHP have this enabled. use a workaround
74                     if (function_exists('str_ireplace'))
75                         $newtext = str_ireplace($from, $to, $text);
76                     else { // see eof
77                         $newtext = stri_replace($from, $to, $text);
78                     }
79                 }
80             }
81             if ($text != $newtext) {
82                 $meta = $current->_data;
83                 $meta['summary'] = sprintf(_("Replace '%s' by '%s'"), $from, $to);
84                 $meta['is_minor_edit'] = 0;
85                 $meta['author'] =  $request->_user->UserName();
86                 unset($meta['mtime']); // force new date
87                 return $page->save($newtext, $version + 1, $meta);
88             }
89         }
90         return false;
91     }
92
93     function searchReplacePages(&$dbi, &$request, $pages, $from, $to) {
94         if (empty($from)) return HTML::p(HTML::strong(fmt("Error: Empty search string.")));
95         $result = HTML::div();
96         $ul = HTML::ul();
97         $count = 0;
98         $post_args = $request->getArg('admin_replace');
99         $case_exact = !empty($post_args['case_exact']);
100         $regex = !empty($post_args['regex']);
101         foreach ($pages as $pagename) {
102             if (!mayAccessPage('edit', $pagename)) {
103                 $ul->pushContent(HTML::li(fmt("Access denied to change page '%s'.",$pagename)));
104             } elseif ($this->replaceHelper($dbi, $request, $pagename, $from, $to, $case_exact, $regex))
105             {
106                 $ul->pushContent(HTML::li(fmt("Replaced '%s' with '%s' in page '%s'.", 
107                                               $from, $to, WikiLink($pagename))));
108                 $count++;
109             } else {
110                 $ul->pushContent(HTML::li(fmt("Search string '%s' not found in content of page '%s'.", 
111                                               $from, WikiLink($pagename))));
112             }
113         }
114         if ($count) {
115             $dbi->touch();
116             $result->setAttr('class', 'feedback');
117             if ($count == 1) {
118                 $result->pushContent(HTML::p("One page has been permanently changed:"));
119             } else {
120                 $result->pushContent(HTML::p(fmt("%s pages have been permanently changed:", $count)));
121             }
122             $result->pushContent($ul);
123             return $result;
124         } else {
125             $result->setAttr('class', 'error');
126             $result->pushContent(HTML::p("No pages changed."));
127             return $result;
128         }
129     }
130     
131     function run($dbi, $argstr, &$request, $basepage) {
132         // no action=replace support yet
133         if ($request->getArg('action') != 'browse')
134             return $this->disabled("(action != 'browse')");
135         
136         $args = $this->getArgs($argstr, $request);
137         $this->_args = $args;
138             
139         //TODO: support p from <!plugin-list !>
140         $this->preSelectS($args, $request);
141
142         $p = $request->getArg('p');
143         if (!$p) $p = $this->_list;
144         $post_args = $request->getArg('admin_replace');
145         $next_action = 'select';
146         $pages = array();
147         if ($p && !$request->isPost())
148             $pages = $p;
149         if ($p && $request->isPost() &&
150             empty($post_args['cancel'])) {
151             // without individual PagePermissions:
152             if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) {
153                 $request->_notAuthorized(WIKIAUTH_ADMIN);
154                 $this->disabled("! user->isAdmin");
155             }
156
157             if ($post_args['action'] == 'verify' and !empty($post_args['from'])) {
158                 // Real action
159                 return $this->searchReplacePages($dbi, $request, array_keys($p), 
160                                                  $post_args['from'], $post_args['to']);
161             }
162             if ($post_args['action'] == 'select') {
163                 if (!empty($post_args['from']))
164                     $next_action = 'verify';
165                 foreach ($p as $name => $c) {
166                     $pages[$name] = 1;
167                 }
168             }
169         }
170         if ($next_action == 'select' and empty($pages)) {
171             // List all pages to select from.
172             //TODO: check for permissions and list only the allowed
173             $pages = $this->collectPages($pages, $dbi, $args['sortby'], 
174                                          $args['limit'], $args['exclude']);
175         }
176
177         if ($next_action == 'verify') {
178             $args['info'] = "checkbox,pagename,hi_content";
179         }
180         $pagelist = new PageList_Selectable
181             ($args['info'], $args['exclude'],
182              array_merge
183              (
184               $args,
185               array('types' => array
186                     (
187                      'hi_content' // with highlighted search for SearchReplace
188                      => new _PageList_Column_content('rev:hi_content', _("Content"))))));
189
190         $pagelist->addPageList($pages);
191
192         $header = HTML::fieldset();
193         if (empty($post_args['from']))
194             $header->pushContent(
195               HTML::p(HTML::em(_("Warning: The search string cannot be empty!"))));
196         if ($next_action == 'verify') {
197             $button_label = _("Yes");
198             $header->pushContent(
199               HTML::p(HTML::strong(
200                                    _("Are you sure you want to permanently search & replace text in the selected files?"))));
201             $this->replaceForm($header, $post_args);
202         }
203         else {
204             $button_label = _("Search & Replace");
205             $this->replaceForm($header, $post_args);
206             $header->pushContent(HTML::legend(_("Select the pages to search and replace")));
207         }
208
209
210         $buttons = HTML::p(Button('submit:admin_replace[rename]', $button_label, 'wikiadmin'),
211                            Button('submit:admin_replace[cancel]', _("Cancel"), 'button'));
212
213         return HTML::form(array('action' => $request->getPostURL(),
214                                 'method' => 'post'),
215                           $header,
216                           $buttons,
217                           $pagelist->getContent(),
218                           HiddenInputs($request->getArgs(),
219                                         false,
220                                         array('admin_replace')),
221                           HiddenInputs(array('admin_replace[action]' => $next_action)),
222                           ENABLE_PAGEPERM
223                           ? ''
224                           : HiddenInputs(array('require_authority_for_post' => WIKIAUTH_ADMIN)));
225     }
226
227     function checkBox (&$post_args, $name, $msg) {
228         $id = 'admin_replace-'.$name;
229         $checkbox = HTML::input(array('type' => 'checkbox',
230                                       'name' => 'admin_replace['.$name.']',
231                                       'id'   => $id,
232                                       'value' => 1));
233         if (!empty($post_args[$name]))
234             $checkbox->setAttr('checked', 'checked');
235         return HTML::div($checkbox, ' ', HTML::label(array('for' => $id), $msg));
236     }
237
238     function replaceForm(&$header, $post_args) {
239         $header->pushContent(HTML::div(array('class'=>'hint'),
240                                        _("Replace all occurences of the given string in the content of all pages.")),
241                              HTML::br());
242         $table = HTML::table();
243         $this->_tablePush($table, _("Replace").": ",
244                           HTML::input(array('name' => 'admin_replace[from]',
245                                             'size' => 90,
246                                             'value' => $post_args['from'])));
247         $this->_tablePush($table, _("by").': ',
248                           HTML::input(array('name' => 'admin_replace[to]',
249                                             'size' => 90,
250                                             'value' => $post_args['to'])));
251         $this->_tablePush($table, '', $this->checkBox($post_args, 'case_exact', _("Case exact?")));
252         $this->_tablePush($table, '', $this->checkBox($post_args, 'regex', _("Regex?")));
253         $header->pushContent($table);
254         $header->pushContent(HTML::br());
255         return $header;
256     }
257 }
258
259 function stri_replace($find,$replace,$string) {
260     if (!is_array($find)) $find = array($find);
261     if (!is_array($replace))  {
262         if (!is_array($find)) 
263             $replace = array($replace);
264         else {
265             // this will duplicate the string into an array the size of $find
266             $c = count($find);
267             $rString = $replace;
268             unset($replace);
269             for ($i = 0; $i < $c; $i++) {
270                 $replace[$i] = $rString;
271             }
272         }
273     }
274     foreach ($find as $fKey => $fItem) {
275         $between = explode(strtolower($fItem),strtolower($string));
276         $pos = 0;
277         foreach($between as $bKey => $bItem) {
278             $between[$bKey] = substr($string,$pos,strlen($bItem));
279             $pos += strlen($bItem) + strlen($fItem);
280         }
281         $string = implode($replace[$fKey],$between);
282     }
283     return $string;
284 }
285
286 // Local Variables:
287 // mode: php
288 // tab-width: 8
289 // c-basic-offset: 4
290 // c-hanging-comment-ender-p: nil
291 // indent-tabs-mode: nil
292 // End:
293 ?>