(bug 20052) Watch checkbox on Special:Movepage is checked by default when the old...
[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->link( $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 if ( $this->oldTitle->isProtected( 'move' ) ) {
170 # Is the title semi-protected?
171 if ( $this->oldTitle->isSemiProtected( 'move' ) ) {
172 $noticeMsg = 'semiprotectedpagemovewarning';
173 $classes[] = 'mw-textarea-sprotected';
174 } else {
175 # Then it must be protected based on static groups (regular)
176 $noticeMsg = 'protectedpagemovewarning';
177 $classes[] = 'mw-textarea-protected';
178 }
179 $wgOut->addHTML( "<div class='mw-warning-with-logexcerpt'>\n" );
180 $wgOut->addWikiMsg( $noticeMsg );
181 LogEventsList::showLogExtract( $wgOut, 'protect', $this->oldTitle->getPrefixedText(), '', 1 );
182 $wgOut->addHTML( "</div>\n" );
183 }
184
185 $wgOut->addHTML(
186 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL( 'action=submit' ), 'id' => 'movepage' ) ) .
187 Xml::openElement( 'fieldset' ) .
188 Xml::element( 'legend', null, wfMsg( 'move-page-legend' ) ) .
189 Xml::openElement( 'table', array( 'border' => '0', 'id' => 'mw-movepage-table' ) ) .
190 "<tr>
191 <td class='mw-label'>" .
192 wfMsgHtml( 'movearticle' ) .
193 "</td>
194 <td class='mw-input'>
195 <strong>{$oldTitleLink}</strong>
196 </td>
197 </tr>
198 <tr>
199 <td class='mw-label'>" .
200 Xml::label( wfMsg( 'newtitle' ), 'wpNewTitle' ) .
201 "</td>
202 <td class='mw-input'>" .
203 Xml::input( 'wpNewTitle', 40, $newTitle->getPrefixedText(), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) .
204 Xml::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) .
205 "</td>
206 </tr>
207 <tr>
208 <td class='mw-label'>" .
209 Xml::label( wfMsg( 'movereason' ), 'wpReason' ) .
210 "</td>
211 <td class='mw-input'>" .
212 Xml::tags( 'textarea', array( 'name' => 'wpReason', 'id' => 'wpReason', 'cols' => 60, 'rows' => 2 ), htmlspecialchars( $this->reason ) ) .
213 "</td>
214 </tr>"
215 );
216
217 if( $considerTalk ) {
218 $wgOut->addHTML( "
219 <tr>
220 <td></td>
221 <td class='mw-input'>" .
222 Xml::checkLabel( wfMsg( 'movetalk' ), 'wpMovetalk', 'wpMovetalk', $this->moveTalk ) .
223 "</td>
224 </tr>"
225 );
226 }
227
228 if ( $wgUser->isAllowed( 'suppressredirect' ) ) {
229 $wgOut->addHTML( "
230 <tr>
231 <td></td>
232 <td class='mw-input' >" .
233 Xml::checkLabel( wfMsg( 'move-leave-redirect' ), 'wpLeaveRedirect',
234 'wpLeaveRedirect', $this->leaveRedirect ) .
235 "</td>
236 </tr>"
237 );
238 }
239
240 if ( $hasRedirects ) {
241 $wgOut->addHTML( "
242 <tr>
243 <td></td>
244 <td class='mw-input' >" .
245 Xml::checkLabel( wfMsg( 'fix-double-redirects' ), 'wpFixRedirects',
246 'wpFixRedirects', $this->fixRedirects ) .
247 "</td>
248 </tr>"
249 );
250 }
251
252 if( ($this->oldTitle->hasSubpages() || $this->oldTitle->getTalkPage()->hasSubpages())
253 && $this->oldTitle->userCan( 'move-subpages' ) )
254 {
255 global $wgMaximumMovedPages, $wgLang;
256
257 $wgOut->addHTML( "
258 <tr>
259 <td></td>
260 <td class=\"mw-input\">" .
261 Xml::checkLabel( wfMsgExt(
262 ( $this->oldTitle->hasSubpages()
263 ? 'move-subpages'
264 : 'move-talk-subpages' ),
265 array( 'parsemag' ),
266 $wgLang->formatNum( $wgMaximumMovedPages ),
267 # $2 to allow use of PLURAL in message.
268 $wgMaximumMovedPages
269 ),
270 'wpMovesubpages', 'wpMovesubpages',
271 # Don't check the box if we only have talk subpages to
272 # move and we aren't moving the talk page.
273 $this->moveSubpages && ($this->oldTitle->hasSubpages() || $this->moveTalk)
274 ) .
275 "</td>
276 </tr>"
277 );
278 }
279
280 # Check the watch checkbox in case the watch parameter was given in the
281 # request, the preferences say so, or either the old or new title is
282 # being watched.
283 $watchChecked = $this->watch || $wgUser->getBoolOption( 'watchmoves' )
284 || $this->oldTitle->userIsWatching() || $this->newTitle->userIsWatching();
285 $wgOut->addHTML( "
286 <tr>
287 <td></td>
288 <td class='mw-input'>" .
289 Xml::checkLabel( wfMsg( 'move-watch' ), 'wpWatch', 'watch', $watchChecked ) .
290 "</td>
291 </tr>
292 {$confirm}
293 <tr>
294 <td>&nbsp;</td>
295 <td class='mw-submit'>" .
296 Xml::submitButton( $movepagebtn, array( 'name' => $submitVar ) ) .
297 "</td>
298 </tr>" .
299 Xml::closeElement( 'table' ) .
300 Xml::hidden( 'wpEditToken', $token ) .
301 Xml::closeElement( 'fieldset' ) .
302 Xml::closeElement( 'form' ) .
303 "\n"
304 );
305
306 $this->showLogFragment( $this->oldTitle, $wgOut );
307 $this->showSubpages( $this->oldTitle, $wgOut );
308
309 }
310
311 function doSubmit() {
312 global $wgOut, $wgUser, $wgRequest, $wgMaximumMovedPages, $wgLang;
313 global $wgFixDoubleRedirects;
314
315 if ( $wgUser->pingLimiter( 'move' ) ) {
316 $wgOut->rateLimited();
317 return;
318 }
319
320 $ot = $this->oldTitle;
321 $nt = $this->newTitle;
322
323 # Delete to make way if requested
324 if ( $wgUser->isAllowed( 'delete' ) && $this->deleteAndMove ) {
325 $article = new Article( $nt );
326
327 # Disallow deletions of big articles
328 $bigHistory = $article->isBigDeletion();
329 if( $bigHistory && !$nt->userCan( 'bigdelete' ) ) {
330 global $wgLang, $wgDeleteRevisionsLimit;
331 $this->showForm( array('delete-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) ) );
332 return;
333 }
334
335 // Delete an associated image if there is
336 $file = wfLocalFile( $nt );
337 if( $file->exists() ) {
338 $file->delete( wfMsgForContent( 'delete_and_move_reason' ), false );
339 }
340
341 // This may output an error message and exit
342 $article->doDelete( wfMsgForContent( 'delete_and_move_reason' ) );
343 }
344
345 # don't allow moving to pages with # in
346 if ( !$nt || $nt->getFragment() != '' ) {
347 $this->showForm( 'badtitletext' );
348 return;
349 }
350
351 if ( $wgUser->isAllowed( 'suppressredirect' ) ) {
352 $createRedirect = $this->leaveRedirect;
353 } else {
354 $createRedirect = true;
355 }
356
357 $error = $ot->moveTo( $nt, true, $this->reason, $createRedirect );
358 if ( $error !== true ) {
359 # FIXME: show all the errors in a list, not just the first one
360 $this->showForm( reset( $error ) );
361 return;
362 }
363
364 if ( $wgFixDoubleRedirects && $this->fixRedirects ) {
365 DoubleRedirectJob::fixRedirects( 'move', $ot, $nt );
366 }
367
368 wfRunHooks( 'SpecialMovepageAfterMove', array( &$this , &$ot , &$nt ) ) ;
369
370 $wgOut->setPagetitle( wfMsg( 'pagemovedsub' ) );
371
372 $oldUrl = $ot->getFullUrl( 'redirect=no' );
373 $newUrl = $nt->getFullUrl();
374 $oldText = $ot->getPrefixedText();
375 $newText = $nt->getPrefixedText();
376 $oldLink = "<span class='plainlinks'>[$oldUrl $oldText]</span>";
377 $newLink = "<span class='plainlinks'>[$newUrl $newText]</span>";
378
379 $msgName = $createRedirect ? 'movepage-moved-redirect' : 'movepage-moved-noredirect';
380 $wgOut->addWikiMsg( 'movepage-moved', $oldLink, $newLink, $oldText, $newText );
381 $wgOut->addWikiMsg( $msgName );
382
383 # Now we move extra pages we've been asked to move: subpages and talk
384 # pages. First, if the old page or the new page is a talk page, we
385 # can't move any talk pages: cancel that.
386 if( $ot->isTalkPage() || $nt->isTalkPage() ) {
387 $this->moveTalk = false;
388 }
389
390 if( !$ot->userCan( 'move-subpages' ) ) {
391 $this->moveSubpages = false;
392 }
393
394 # Next make a list of id's. This might be marginally less efficient
395 # than a more direct method, but this is not a highly performance-cri-
396 # tical code path and readable code is more important here.
397 #
398 # Note: this query works nicely on MySQL 5, but the optimizer in MySQL
399 # 4 might get confused. If so, consider rewriting as a UNION.
400 #
401 # If the target namespace doesn't allow subpages, moving with subpages
402 # would mean that you couldn't move them back in one operation, which
403 # is bad. FIXME: A specific error message should be given in this
404 # case.
405
406 // FIXME: Use Title::moveSubpages() here
407 $dbr = wfGetDB( DB_MASTER );
408 if( $this->moveSubpages && (
409 MWNamespace::hasSubpages( $nt->getNamespace() ) || (
410 $this->moveTalk &&
411 MWNamespace::hasSubpages( $nt->getTalkPage()->getNamespace() )
412 )
413 ) ) {
414 $conds = array(
415 'page_title LIKE '.$dbr->addQuotes( $dbr->escapeLike( $ot->getDBkey() ) . '/%' )
416 .' OR page_title = ' . $dbr->addQuotes( $ot->getDBkey() )
417 );
418 $conds['page_namespace'] = array();
419 if( MWNamespace::hasSubpages( $nt->getNamespace() ) ) {
420 $conds['page_namespace'] []= $ot->getNamespace();
421 }
422 if( $this->moveTalk && MWNamespace::hasSubpages( $nt->getTalkPage()->getNamespace() ) ) {
423 $conds['page_namespace'] []= $ot->getTalkPage()->getNamespace();
424 }
425 } elseif( $this->moveTalk ) {
426 $conds = array(
427 'page_namespace' => $ot->getTalkPage()->getNamespace(),
428 'page_title' => $ot->getDBkey()
429 );
430 } else {
431 # Skip the query
432 $conds = null;
433 }
434
435 $extraPages = array();
436 if( !is_null( $conds ) ) {
437 $extraPages = TitleArray::newFromResult(
438 $dbr->select( 'page',
439 array( 'page_id', 'page_namespace', 'page_title' ),
440 $conds,
441 __METHOD__
442 )
443 );
444 }
445
446 $extraOutput = array();
447 $skin = $wgUser->getSkin();
448 $count = 1;
449 foreach( $extraPages as $oldSubpage ) {
450 if( $oldSubpage->getArticleId() == $ot->getArticleId() ) {
451 # Already did this one.
452 continue;
453 }
454
455 $newPageName = preg_replace(
456 '#^'.preg_quote( $ot->getDBkey(), '#' ).'#',
457 $nt->getDBkey(),
458 $oldSubpage->getDBkey()
459 );
460 if( $oldSubpage->isTalkPage() ) {
461 $newNs = $nt->getTalkPage()->getNamespace();
462 } else {
463 $newNs = $nt->getSubjectPage()->getNamespace();
464 }
465 # Bug 14385: we need makeTitleSafe because the new page names may
466 # be longer than 255 characters.
467 $newSubpage = Title::makeTitleSafe( $newNs, $newPageName );
468 if( !$newSubpage ) {
469 $oldLink = $skin->linkKnown( $oldSubpage );
470 $extraOutput []= wfMsgHtml( 'movepage-page-unmoved', $oldLink,
471 htmlspecialchars(Title::makeName( $newNs, $newPageName )));
472 continue;
473 }
474
475 # This was copy-pasted from Renameuser, bleh.
476 if ( $newSubpage->exists() && !$oldSubpage->isValidMoveTarget( $newSubpage ) ) {
477 $link = $skin->linkKnown( $newSubpage );
478 $extraOutput []= wfMsgHtml( 'movepage-page-exists', $link );
479 } else {
480 $success = $oldSubpage->moveTo( $newSubpage, true, $this->reason, $createRedirect );
481 if( $success === true ) {
482 if ( $this->fixRedirects ) {
483 DoubleRedirectJob::fixRedirects( 'move', $oldSubpage, $newSubpage );
484 }
485 $oldLink = $skin->linkKnown(
486 $oldSubpage,
487 null,
488 array(),
489 array( 'redirect' => 'no' )
490 );
491 $newLink = $skin->linkKnown( $newSubpage );
492 $extraOutput []= wfMsgHtml( 'movepage-page-moved', $oldLink, $newLink );
493 } else {
494 $oldLink = $skin->linkKnown( $oldSubpage );
495 $newLink = $skin->link( $newSubpage );
496 $extraOutput []= wfMsgHtml( 'movepage-page-unmoved', $oldLink, $newLink );
497 }
498 }
499
500 ++$count;
501 if( $count >= $wgMaximumMovedPages ) {
502 $extraOutput []= wfMsgExt( 'movepage-max-pages', array( 'parsemag', 'escape' ), $wgLang->formatNum( $wgMaximumMovedPages ) );
503 break;
504 }
505 }
506
507 if( $extraOutput !== array() ) {
508 $wgOut->addHTML( "<ul>\n<li>" . implode( "</li>\n<li>", $extraOutput ) . "</li>\n</ul>" );
509 }
510
511 # Deal with watches (we don't watch subpages)
512 if( $this->watch ) {
513 $wgUser->addWatch( $ot );
514 $wgUser->addWatch( $nt );
515 } else {
516 $wgUser->removeWatch( $ot );
517 $wgUser->removeWatch( $nt );
518 }
519 }
520
521 function showLogFragment( $title, &$out ) {
522 $out->addHTML( Xml::element( 'h2', NULL, LogPage::logName( 'move' ) ) );
523 LogEventsList::showLogExtract( $out, 'move', $title->getPrefixedText() );
524 }
525
526 function showSubpages( $title, $out ) {
527 global $wgUser, $wgLang;
528
529 if( !MWNamespace::hasSubpages( $title->getNamespace() ) )
530 return;
531
532 $subpages = $title->getSubpages();
533 $count = $subpages instanceof TitleArray ? $subpages->count() : 0;
534
535 $out->wrapWikiMsg( '== $1 ==', array( 'movesubpage', $count ) );
536
537 # No subpages.
538 if ( $count == 0 ) {
539 $out->addWikiMsg( 'movenosubpage' );
540 return;
541 }
542
543 $out->addWikiMsg( 'movesubpagetext', $wgLang->formatNum( $count ) );
544 $skin = $wgUser->getSkin();
545 $out->addHTML( "<ul>\n" );
546
547 foreach( $subpages as $subpage ) {
548 $link = $skin->link( $subpage );
549 $out->addHTML( "<li>$link</li>\n" );
550 }
551 $out->addHTML( "</ul>\n" );
552 }
553 }
554