Rewrite Special:Export to subclass SpecialPage.
[lhc/web/wiklou.git] / includes / specials / SpecialMovepage.php
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
6
7 /**
8 * Constructor
9 */
10 function wfSpecialMovepage( $par = null ) {
11 global $wgUser, $wgOut, $wgRequest, $action;
12
13 # Check for database lock
14 if ( wfReadOnly() ) {
15 $wgOut->readOnlyPage();
16 return;
17 }
18
19 $target = isset( $par ) ? $par : $wgRequest->getVal( 'target' );
20 $oldTitleText = $wgRequest->getText( 'wpOldTitle', $target );
21 $newTitleText = $wgRequest->getText( 'wpNewTitle' );
22
23 $oldTitle = Title::newFromText( $oldTitleText );
24 $newTitle = Title::newFromText( $newTitleText );
25
26 if( is_null( $oldTitle ) ) {
27 $wgOut->showErrorPage( 'notargettitle', 'notargettext' );
28 return;
29 }
30 if( !$oldTitle->exists() ) {
31 $wgOut->showErrorPage( 'nopagetitle', 'nopagetext' );
32 return;
33 }
34
35 # Check rights
36 $permErrors = $oldTitle->getUserPermissionsErrors( 'move', $wgUser );
37 if( !empty( $permErrors ) ) {
38 $wgOut->showPermissionsErrorPage( $permErrors );
39 return;
40 }
41
42 $form = new MovePageForm( $oldTitle, $newTitle );
43
44 if ( 'submit' == $action && $wgRequest->wasPosted()
45 && $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) ) ) {
46 $form->doSubmit();
47 } else {
48 $form->showForm( '' );
49 }
50 }
51
52 /**
53 * HTML form for Special:Movepage
54 * @ingroup SpecialPage
55 */
56 class MovePageForm {
57 var $oldTitle, $newTitle; # Objects
58 var $reason; # Text input
59 var $moveTalk, $deleteAndMove, $moveSubpages, $fixRedirects, $leaveRedirect; # Checks
60
61 private $watch = false;
62
63 function __construct( $oldTitle, $newTitle ) {
64 global $wgRequest;
65 $target = isset($par) ? $par : $wgRequest->getVal( 'target' );
66 $this->oldTitle = $oldTitle;
67 $this->newTitle = $newTitle;
68 $this->reason = $wgRequest->getText( 'wpReason' );
69 if ( $wgRequest->wasPosted() ) {
70 $this->moveTalk = $wgRequest->getBool( 'wpMovetalk', false );
71 $this->fixRedirects = $wgRequest->getBool( 'wpFixRedirects', false );
72 $this->leaveRedirect = $wgRequest->getBool( 'wpLeaveRedirect', false );
73 } else {
74 $this->moveTalk = $wgRequest->getBool( 'wpMovetalk', true );
75 $this->fixRedirects = $wgRequest->getBool( 'wpFixRedirects', true );
76 $this->leaveRedirect = $wgRequest->getBool( 'wpLeaveRedirect', true );
77 }
78 $this->moveSubpages = $wgRequest->getBool( 'wpMovesubpages', false );
79 $this->deleteAndMove = $wgRequest->getBool( 'wpDeleteAndMove' ) && $wgRequest->getBool( 'wpConfirm' );
80 $this->watch = $wgRequest->getCheck( 'wpWatch' );
81 }
82
83 /**
84 * Show the form
85 * @param mixed $err Error message. May either be a string message name or
86 * array message name and parameters, like the second argument to
87 * OutputPage::wrapWikiMsg().
88 */
89 function showForm( $err ) {
90 global $wgOut, $wgUser, $wgFixDoubleRedirects;
91
92 $skin = $wgUser->getSkin();
93
94 $oldTitleLink = $skin->makeLinkObj( $this->oldTitle );
95
96 $wgOut->setPagetitle( wfMsg( 'move-page', $this->oldTitle->getPrefixedText() ) );
97 $wgOut->setSubtitle( wfMsg( 'move-page-backlink', $oldTitleLink ) );
98
99 $newTitle = $this->newTitle;
100
101 if( !$newTitle ) {
102 # Show the current title as a default
103 # when the form is first opened.
104 $newTitle = $this->oldTitle;
105 }
106 else {
107 if( empty($err) ) {
108 # If a title was supplied, probably from the move log revert
109 # link, check for validity. We can then show some diagnostic
110 # information and save a click.
111 $newerr = $this->oldTitle->isValidMoveOperation( $newTitle );
112 if( $newerr ) {
113 $err = $newerr[0];
114 }
115 }
116 }
117
118 if ( !empty($err) && $err[0] == 'articleexists' && $wgUser->isAllowed( 'delete' ) ) {
119 $wgOut->addWikiMsg( 'delete_and_move_text', $newTitle->getPrefixedText() );
120 $movepagebtn = wfMsg( 'delete_and_move' );
121 $submitVar = 'wpDeleteAndMove';
122 $confirm = "
123 <tr>
124 <td></td>
125 <td class='mw-input'>" .
126 Xml::checkLabel( wfMsg( 'delete_and_move_confirm' ), 'wpConfirm', 'wpConfirm' ) .
127 "</td>
128 </tr>";
129 $err = '';
130 } else {
131 $wgOut->addWikiMsg( 'movepagetext' );
132 $movepagebtn = wfMsg( 'movepagebtn' );
133 $submitVar = 'wpMove';
134 $confirm = false;
135 }
136
137 $oldTalk = $this->oldTitle->getTalkPage();
138 $considerTalk = ( !$this->oldTitle->isTalkPage() && $oldTalk->exists() );
139
140 $dbr = wfGetDB( DB_SLAVE );
141 if ( $wgFixDoubleRedirects ) {
142 $hasRedirects = $dbr->selectField( 'redirect', '1',
143 array(
144 'rd_namespace' => $this->oldTitle->getNamespace(),
145 'rd_title' => $this->oldTitle->getDBkey(),
146 ) , __METHOD__ );
147 } else {
148 $hasRedirects = false;
149 }
150
151 if ( $considerTalk ) {
152 $wgOut->addWikiMsg( 'movepagetalktext' );
153 }
154
155 $titleObj = SpecialPage::getTitleFor( 'Movepage' );
156 $token = htmlspecialchars( $wgUser->editToken() );
157
158 if ( !empty($err) ) {
159 $wgOut->setSubtitle( wfMsg( 'formerror' ) );
160 if( $err[0] == 'hookaborted' ) {
161 $hookErr = $err[1];
162 $errMsg = "<p><strong class=\"error\">$hookErr</strong></p>\n";
163 $wgOut->addHTML( $errMsg );
164 } else {
165 $wgOut->wrapWikiMsg( '<p><strong class="error">$1</strong></p>', $err );
166 }
167 }
168
169 $wgOut->addHTML(
170 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL( 'action=submit' ), 'id' => 'movepage' ) ) .
171 Xml::openElement( 'fieldset' ) .
172 Xml::element( 'legend', null, wfMsg( 'move-page-legend' ) ) .
173 Xml::openElement( 'table', array( 'border' => '0', 'id' => 'mw-movepage-table' ) ) .
174 "<tr>
175 <td class='mw-label'>" .
176 wfMsgHtml( 'movearticle' ) .
177 "</td>
178 <td class='mw-input'>
179 <strong>{$oldTitleLink}</strong>
180 </td>
181 </tr>
182 <tr>
183 <td class='mw-label'>" .
184 Xml::label( wfMsg( 'newtitle' ), 'wpNewTitle' ) .
185 "</td>
186 <td class='mw-input'>" .
187 Xml::input( 'wpNewTitle', 40, $newTitle->getPrefixedText(), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) .
188 Xml::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) .
189 "</td>
190 </tr>
191 <tr>
192 <td class='mw-label'>" .
193 Xml::label( wfMsg( 'movereason' ), 'wpReason' ) .
194 "</td>
195 <td class='mw-input'>" .
196 Xml::tags( 'textarea', array( 'name' => 'wpReason', 'id' => 'wpReason', 'cols' => 60, 'rows' => 2 ), htmlspecialchars( $this->reason ) ) .
197 "</td>
198 </tr>"
199 );
200
201 if( $considerTalk ) {
202 $wgOut->addHTML( "
203 <tr>
204 <td></td>
205 <td class='mw-input'>" .
206 Xml::checkLabel( wfMsg( 'movetalk' ), 'wpMovetalk', 'wpMovetalk', $this->moveTalk ) .
207 "</td>
208 </tr>"
209 );
210 }
211
212 if ( $wgUser->isAllowed( 'suppressredirect' ) ) {
213 $wgOut->addHTML( "
214 <tr>
215 <td></td>
216 <td class='mw-input' >" .
217 Xml::checkLabel( wfMsg( 'move-leave-redirect' ), 'wpLeaveRedirect',
218 'wpLeaveRedirect', $this->leaveRedirect ) .
219 "</td>
220 </tr>"
221 );
222 }
223
224 if ( $hasRedirects ) {
225 $wgOut->addHTML( "
226 <tr>
227 <td></td>
228 <td class='mw-input' >" .
229 Xml::checkLabel( wfMsg( 'fix-double-redirects' ), 'wpFixRedirects',
230 'wpFixRedirects', $this->fixRedirects ) .
231 "</td>
232 </tr>"
233 );
234 }
235
236 if( ($this->oldTitle->hasSubpages() || $this->oldTitle->getTalkPage()->hasSubpages())
237 && $this->oldTitle->userCan( 'move-subpages' ) ) {
238 global $wgMaximumMovedPages;
239
240 $wgOut->addHTML( "
241 <tr>
242 <td></td>
243 <td class=\"mw-input\">" .
244 Xml::checkLabel( wfMsg(
245 ( $this->oldTitle->hasSubpages()
246 ? 'move-subpages'
247 : 'move-talk-subpages' ),
248 $wgMaximumMovedPages
249 ),
250 'wpMovesubpages', 'wpMovesubpages',
251 # Don't check the box if we only have talk subpages to
252 # move and we aren't moving the talk page.
253 $this->moveSubpages && ($this->oldTitle->hasSubpages() || $this->moveTalk)
254 ) .
255 "</td>
256 </tr>"
257 );
258 }
259
260 $watchChecked = $this->watch || $wgUser->getBoolOption( 'watchmoves' )
261 || $this->oldTitle->userIsWatching();
262 $wgOut->addHTML( "
263 <tr>
264 <td></td>
265 <td class='mw-input'>" .
266 Xml::checkLabel( wfMsg( 'move-watch' ), 'wpWatch', 'watch', $watchChecked ) .
267 "</td>
268 </tr>
269 {$confirm}
270 <tr>
271 <td>&nbsp;</td>
272 <td class='mw-submit'>" .
273 Xml::submitButton( $movepagebtn, array( 'name' => $submitVar ) ) .
274 "</td>
275 </tr>" .
276 Xml::closeElement( 'table' ) .
277 Xml::hidden( 'wpEditToken', $token ) .
278 Xml::closeElement( 'fieldset' ) .
279 Xml::closeElement( 'form' ) .
280 "\n"
281 );
282
283 $this->showLogFragment( $this->oldTitle, $wgOut );
284
285 }
286
287 function doSubmit() {
288 global $wgOut, $wgUser, $wgRequest, $wgMaximumMovedPages, $wgLang;
289 global $wgFixDoubleRedirects;
290
291 if ( $wgUser->pingLimiter( 'move' ) ) {
292 $wgOut->rateLimited();
293 return;
294 }
295
296 $ot = $this->oldTitle;
297 $nt = $this->newTitle;
298
299 # Delete to make way if requested
300 if ( $wgUser->isAllowed( 'delete' ) && $this->deleteAndMove ) {
301 $article = new Article( $nt );
302
303 # Disallow deletions of big articles
304 $bigHistory = $article->isBigDeletion();
305 if( $bigHistory && !$nt->userCan( 'bigdelete' ) ) {
306 global $wgLang, $wgDeleteRevisionsLimit;
307 $this->showForm( array('delete-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) ) );
308 return;
309 }
310
311 // Delete an associated image if there is
312 $file = wfLocalFile( $nt );
313 if( $file->exists() ) {
314 $file->delete( wfMsgForContent( 'delete_and_move_reason' ), false );
315 }
316
317 // This may output an error message and exit
318 $article->doDelete( wfMsgForContent( 'delete_and_move_reason' ) );
319 }
320
321 # don't allow moving to pages with # in
322 if ( !$nt || $nt->getFragment() != '' ) {
323 $this->showForm( 'badtitletext' );
324 return;
325 }
326
327 if ( $wgUser->isAllowed( 'suppressredirect' ) ) {
328 $createRedirect = $this->leaveRedirect;
329 } else {
330 $createRedirect = true;
331 }
332
333 $error = $ot->moveTo( $nt, true, $this->reason, $createRedirect );
334 if ( $error !== true ) {
335 # FIXME: show all the errors in a list, not just the first one
336 $this->showForm( reset( $error ) );
337 return;
338 }
339
340 if ( $wgFixDoubleRedirects && $this->fixRedirects ) {
341 DoubleRedirectJob::fixRedirects( 'move', $ot, $nt );
342 }
343
344 wfRunHooks( 'SpecialMovepageAfterMove', array( &$this , &$ot , &$nt ) ) ;
345
346 $wgOut->setPagetitle( wfMsg( 'pagemovedsub' ) );
347
348 $oldUrl = $ot->getFullUrl( 'redirect=no' );
349 $newUrl = $nt->getFullUrl();
350 $oldText = $ot->getPrefixedText();
351 $newText = $nt->getPrefixedText();
352 $oldLink = "<span class='plainlinks'>[$oldUrl $oldText]</span>";
353 $newLink = "<span class='plainlinks'>[$newUrl $newText]</span>";
354
355 $msgName = $createRedirect ? 'movepage-moved-redirect' : 'movepage-moved-noredirect';
356 $wgOut->addWikiMsg( 'movepage-moved', $oldLink, $newLink, $oldText, $newText );
357 $wgOut->addWikiMsg( $msgName );
358
359 # Now we move extra pages we've been asked to move: subpages and talk
360 # pages. First, if the old page or the new page is a talk page, we
361 # can't move any talk pages: cancel that.
362 if( $ot->isTalkPage() || $nt->isTalkPage() ) {
363 $this->moveTalk = false;
364 }
365
366 if( !$ot->userCan( 'move-subpages' ) ) {
367 $this->moveSubpages = false;
368 }
369
370 # Next make a list of id's. This might be marginally less efficient
371 # than a more direct method, but this is not a highly performance-cri-
372 # tical code path and readable code is more important here.
373 #
374 # Note: this query works nicely on MySQL 5, but the optimizer in MySQL
375 # 4 might get confused. If so, consider rewriting as a UNION.
376 #
377 # If the target namespace doesn't allow subpages, moving with subpages
378 # would mean that you couldn't move them back in one operation, which
379 # is bad. FIXME: A specific error message should be given in this
380 # case.
381 $dbr = wfGetDB( DB_MASTER );
382 if( $this->moveSubpages && (
383 MWNamespace::hasSubpages( $nt->getNamespace() ) || (
384 $this->moveTalk &&
385 MWNamespace::hasSubpages( $nt->getTalkPage()->getNamespace() )
386 )
387 ) ) {
388 $conds = array(
389 'page_title LIKE '.$dbr->addQuotes( $dbr->escapeLike( $ot->getDBkey() ) . '/%' )
390 .' OR page_title = ' . $dbr->addQuotes( $ot->getDBkey() )
391 );
392 $conds['page_namespace'] = array();
393 if( MWNamespace::hasSubpages( $nt->getNamespace() ) ) {
394 $conds['page_namespace'] []= $ot->getNamespace();
395 }
396 if( $this->moveTalk && MWNamespace::hasSubpages( $nt->getTalkPage()->getNamespace() ) ) {
397 $conds['page_namespace'] []= $ot->getTalkPage()->getNamespace();
398 }
399 } elseif( $this->moveTalk ) {
400 $conds = array(
401 'page_namespace' => $ot->getTalkPage()->getNamespace(),
402 'page_title' => $ot->getDBKey()
403 );
404 } else {
405 # Skip the query
406 $conds = null;
407 }
408
409 $extraPages = array();
410 if( !is_null( $conds ) ) {
411 $extraPages = TitleArray::newFromResult(
412 $dbr->select( 'page',
413 array( 'page_id', 'page_namespace', 'page_title' ),
414 $conds,
415 __METHOD__
416 )
417 );
418 }
419
420 $extraOutput = array();
421 $skin = $wgUser->getSkin();
422 $count = 1;
423 foreach( $extraPages as $oldSubpage ) {
424 if( $oldSubpage->getArticleId() == $ot->getArticleId() ) {
425 # Already did this one.
426 continue;
427 }
428
429 $newPageName = preg_replace(
430 '#^'.preg_quote( $ot->getDBKey(), '#' ).'#',
431 $nt->getDBKey(),
432 $oldSubpage->getDBKey()
433 );
434 if( $oldSubpage->isTalkPage() ) {
435 $newNs = $nt->getTalkPage()->getNamespace();
436 } else {
437 $newNs = $nt->getSubjectPage()->getNamespace();
438 }
439 # Bug 14385: we need makeTitleSafe because the new page names may
440 # be longer than 255 characters.
441 $newSubpage = Title::makeTitleSafe( $newNs, $newPageName );
442 if( !$newSubpage ) {
443 $oldLink = $skin->makeKnownLinkObj( $oldSubpage );
444 $extraOutput []= wfMsgHtml( 'movepage-page-unmoved', $oldLink,
445 htmlspecialchars(Title::makeName( $newNs, $newPageName )));
446 continue;
447 }
448
449 # This was copy-pasted from Renameuser, bleh.
450 if ( $newSubpage->exists() && !$oldSubpage->isValidMoveTarget( $newSubpage ) ) {
451 $link = $skin->makeKnownLinkObj( $newSubpage );
452 $extraOutput []= wfMsgHtml( 'movepage-page-exists', $link );
453 } else {
454 $success = $oldSubpage->moveTo( $newSubpage, true, $this->reason, $createRedirect );
455 if( $success === true ) {
456 if ( $this->fixRedirects ) {
457 DoubleRedirectJob::fixRedirects( 'move', $oldSubpage, $newSubpage );
458 }
459 $oldLink = $skin->makeKnownLinkObj( $oldSubpage, '', 'redirect=no' );
460 $newLink = $skin->makeKnownLinkObj( $newSubpage );
461 $extraOutput []= wfMsgHtml( 'movepage-page-moved', $oldLink, $newLink );
462 } else {
463 $oldLink = $skin->makeKnownLinkObj( $oldSubpage );
464 $newLink = $skin->makeLinkObj( $newSubpage );
465 $extraOutput []= wfMsgHtml( 'movepage-page-unmoved', $oldLink, $newLink );
466 }
467 }
468
469 ++$count;
470 if( $count >= $wgMaximumMovedPages ) {
471 $extraOutput []= wfMsgExt( 'movepage-max-pages', array( 'parsemag', 'escape' ), $wgLang->formatNum( $wgMaximumMovedPages ) );
472 break;
473 }
474 }
475
476 if( $extraOutput !== array() ) {
477 $wgOut->addHTML( "<ul>\n<li>" . implode( "</li>\n<li>", $extraOutput ) . "</li>\n</ul>" );
478 }
479
480 # Deal with watches (we don't watch subpages)
481 if( $this->watch ) {
482 $wgUser->addWatch( $ot );
483 $wgUser->addWatch( $nt );
484 } else {
485 $wgUser->removeWatch( $ot );
486 $wgUser->removeWatch( $nt );
487 }
488 }
489
490 function showLogFragment( $title, &$out ) {
491 $out->addHTML( Xml::element( 'h2', NULL, LogPage::logName( 'move' ) ) );
492 LogEventsList::showLogExtract( $out, 'move', $title->getPrefixedText() );
493 }
494
495 }