3 * Implements Special:Movepage
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * A special page that allows users to change page titles
27 * @ingroup SpecialPage
29 class MovePageForm
extends UnlistedSpecialPage
{
34 var $oldTitle, $newTitle; # Objects
35 var $reason; # Text input
36 var $moveTalk, $deleteAndMove, $moveSubpages, $fixRedirects, $leaveRedirect, $moveOverShared; # Checks
38 private $watch = false;
40 public function __construct() {
41 parent
::__construct( 'Movepage' );
44 public function execute( $par ) {
45 $this->checkReadOnly();
48 $this->outputHeader();
50 $request = $this->getRequest();
51 $target = !is_null( $par ) ?
$par : $request->getVal( 'target' );
53 // Yes, the use of getVal() and getText() is wanted, see bug 20365
55 $oldTitleText = $request->getVal( 'wpOldTitle', $target );
56 $this->oldTitle
= Title
::newFromText( $oldTitleText );
58 if ( is_null( $this->oldTitle
) ) {
59 throw new ErrorPageError( 'notargettitle', 'notargettext' );
61 if ( !$this->oldTitle
->exists() ) {
62 throw new ErrorPageError( 'nopagetitle', 'nopagetext' );
65 $newTitleTextMain = $request->getText( 'wpNewTitleMain' );
66 $newTitleTextNs = $request->getInt( 'wpNewTitleNs', $this->oldTitle
->getNamespace() );
67 // Backwards compatibility for forms submitting here from other sources
68 // which is more common than it should be..
69 $newTitleText_bc = $request->getText( 'wpNewTitle' );
70 $this->newTitle
= strlen( $newTitleText_bc ) > 0
71 ? Title
::newFromText( $newTitleText_bc )
72 : Title
::makeTitleSafe( $newTitleTextNs, $newTitleTextMain );
74 $user = $this->getUser();
77 $permErrors = $this->oldTitle
->getUserPermissionsErrors( 'move', $user );
78 if ( count( $permErrors ) ) {
79 // Auto-block user's IP if the account was "hard" blocked
80 $user->spreadAnyEditBlock();
81 throw new PermissionsError( 'move', $permErrors );
84 $def = !$request->wasPosted();
86 $this->reason
= $request->getText( 'wpReason' );
87 $this->moveTalk
= $request->getBool( 'wpMovetalk', $def );
88 $this->fixRedirects
= $request->getBool( 'wpFixRedirects', $def );
89 $this->leaveRedirect
= $request->getBool( 'wpLeaveRedirect', $def );
90 $this->moveSubpages
= $request->getBool( 'wpMovesubpages', false );
91 $this->deleteAndMove
= $request->getBool( 'wpDeleteAndMove' ) && $request->getBool( 'wpConfirm' );
92 $this->moveOverShared
= $request->getBool( 'wpMoveOverSharedFile', false );
93 $this->watch
= $request->getCheck( 'wpWatch' ) && $user->isLoggedIn();
95 if ( 'submit' == $request->getVal( 'action' ) && $request->wasPosted()
96 && $user->matchEditToken( $request->getVal( 'wpEditToken' ) ) ) {
99 $this->showForm( array() );
106 * @param array $err error messages. Each item is an error message.
107 * It may either be a string message name or array message name and
108 * parameters, like the second argument to OutputPage::wrapWikiMsg().
110 function showForm( $err ) {
111 global $wgContLang, $wgFixDoubleRedirects, $wgMaximumMovedPages;
113 $this->getSkin()->setRelevantTitle( $this->oldTitle
);
115 $oldTitleLink = Linker
::link( $this->oldTitle
);
117 $out = $this->getOutput();
118 $out->setPageTitle( $this->msg( 'move-page', $this->oldTitle
->getPrefixedText() ) );
119 $out->addModules( 'mediawiki.special.movePage' );
121 $newTitle = $this->newTitle
;
124 # Show the current title as a default
125 # when the form is first opened.
126 $newTitle = $this->oldTitle
;
127 } elseif ( !count( $err ) ) {
128 # If a title was supplied, probably from the move log revert
129 # link, check for validity. We can then show some diagnostic
130 # information and save a click.
131 $newerr = $this->oldTitle
->isValidMoveOperation( $newTitle );
132 if ( is_array( $newerr ) ) {
137 $user = $this->getUser();
139 if ( count( $err ) == 1 && isset( $err[0][0] ) && $err[0][0] == 'articleexists'
140 && $newTitle->quickUserCan( 'delete', $user )
142 $out->addWikiMsg( 'delete_and_move_text', $newTitle->getPrefixedText() );
143 $movepagebtn = $this->msg( 'delete_and_move' )->text();
144 $submitVar = 'wpDeleteAndMove';
148 <td class='mw-input'>" .
149 Xml
::checkLabel( $this->msg( 'delete_and_move_confirm' )->text(), 'wpConfirm', 'wpConfirm' ) .
154 if ( $this->oldTitle
->getNamespace() == NS_USER
&& !$this->oldTitle
->isSubpage() ) {
155 $out->wrapWikiMsg( "<div class=\"error mw-moveuserpage-warning\">\n$1\n</div>", 'moveuserpage-warning' );
157 $out->addWikiMsg( $wgFixDoubleRedirects ?
'movepagetext' :
158 'movepagetext-noredirectfixer' );
159 $movepagebtn = $this->msg( 'movepagebtn' )->text();
160 $submitVar = 'wpMove';
164 if ( count( $err ) == 1 && isset( $err[0][0] ) && $err[0][0] == 'file-exists-sharedrepo'
165 && $user->isAllowed( 'reupload-shared' )
167 $out->addWikiMsg( 'move-over-sharedrepo', $newTitle->getPrefixedText() );
168 $submitVar = 'wpMoveOverSharedFile';
172 $oldTalk = $this->oldTitle
->getTalkPage();
173 $oldTitleSubpages = $this->oldTitle
->hasSubpages();
174 $oldTitleTalkSubpages = $this->oldTitle
->getTalkPage()->hasSubpages();
176 $canMoveSubpage = ( $oldTitleSubpages ||
$oldTitleTalkSubpages ) &&
177 !count( $this->oldTitle
->getUserPermissionsErrors( 'move-subpages', $user ) );
179 # We also want to be able to move assoc. subpage talk-pages even if base page
180 # has no associated talk page, so || with $oldTitleTalkSubpages.
181 $considerTalk = !$this->oldTitle
->isTalkPage() &&
183 ||
( $oldTitleTalkSubpages && $canMoveSubpage ) );
185 $dbr = wfGetDB( DB_SLAVE
);
186 if ( $wgFixDoubleRedirects ) {
187 $hasRedirects = $dbr->selectField( 'redirect', '1',
189 'rd_namespace' => $this->oldTitle
->getNamespace(),
190 'rd_title' => $this->oldTitle
->getDBkey(),
193 $hasRedirects = false;
196 if ( $considerTalk ) {
197 $out->addWikiMsg( 'movepagetalktext' );
200 if ( count( $err ) ) {
201 $out->addHTML( "<div class='error'>\n" );
202 $action_desc = $this->msg( 'action-move' )->plain();
203 $out->addWikiMsg( 'permissionserrorstext-withaction', count( $err ), $action_desc );
205 if ( count( $err ) == 1 ) {
207 $errMsgName = array_shift( $errMsg );
208 if ( $errMsgName == 'hookaborted' ) {
209 $out->addHTML( "<p>{$errMsg[0]}</p>\n" );
211 $out->addWikiMsgArray( $errMsgName, $errMsg );
215 foreach ( $err as $errMsg ) {
216 if ( $errMsg[0] == 'hookaborted' ) {
217 $errStr[] = $errMsg[1];
219 $errMsgName = array_shift( $errMsg );
220 $errStr[] = $this->msg( $errMsgName, $errMsg )->parse();
224 $out->addHTML( '<ul><li>' . implode( "</li>\n<li>", $errStr ) . "</li></ul>\n" );
226 $out->addHTML( "</div>\n" );
229 if ( $this->oldTitle
->isProtected( 'move' ) ) {
230 # Is the title semi-protected?
231 if ( $this->oldTitle
->isSemiProtected( 'move' ) ) {
232 $noticeMsg = 'semiprotectedpagemovewarning';
233 $classes[] = 'mw-textarea-sprotected';
235 # Then it must be protected based on static groups (regular)
236 $noticeMsg = 'protectedpagemovewarning';
237 $classes[] = 'mw-textarea-protected';
239 $out->addHTML( "<div class='mw-warning-with-logexcerpt'>\n" );
240 $out->addWikiMsg( $noticeMsg );
241 LogEventsList
::showLogExtract( $out, 'protect', $this->oldTitle
, '', array( 'lim' => 1 ) );
242 $out->addHTML( "</div>\n" );
245 // Byte limit (not string length limit) for wpReason and wpNewTitleMain
246 // is enforced in the mediawiki.special.movePage module
248 $immovableNamespaces = array();
250 foreach ( array_keys( $this->getLanguage()->getNamespaces() ) as $nsId ) {
251 if ( !MWNamespace
::isMovable( $nsId ) ) {
252 $immovableNamespaces[] = $nsId;
256 $handler = ContentHandler
::getForTitle( $this->oldTitle
);
259 Xml
::openElement( 'form', array( 'method' => 'post', 'action' => $this->getTitle()->getLocalURL( 'action=submit' ), 'id' => 'movepage' ) ) .
260 Xml
::openElement( 'fieldset' ) .
261 Xml
::element( 'legend', null, $this->msg( 'move-page-legend' )->text() ) .
262 Xml
::openElement( 'table', array( 'id' => 'mw-movepage-table' ) ) .
264 <td class='mw-label'>" .
265 $this->msg( 'movearticle' )->escaped() .
267 <td class='mw-input'>
268 <strong>{$oldTitleLink}</strong>
272 <td class='mw-label'>" .
273 Xml
::label( $this->msg( 'newtitle' )->text(), 'wpNewTitleMain' ) .
275 <td class='mw-input'>" .
276 Html
::namespaceSelector(
278 'selected' => $newTitle->getNamespace(),
279 'exclude' => $immovableNamespaces
281 array( 'name' => 'wpNewTitleNs', 'id' => 'wpNewTitleNs' )
283 Xml
::input( 'wpNewTitleMain', 60, $wgContLang->recodeForEdit( $newTitle->getText() ), array(
285 'id' => 'wpNewTitleMain',
288 Html
::hidden( 'wpOldTitle', $this->oldTitle
->getPrefixedText() ) .
292 <td class='mw-label'>" .
293 Xml
::label( $this->msg( 'movereason' )->text(), 'wpReason' ) .
295 <td class='mw-input'>" .
296 Html
::element( 'textarea', array( 'name' => 'wpReason', 'id' => 'wpReason', 'cols' => 60, 'rows' => 2,
297 'maxlength' => 200 ), $this->reason
) .
302 if ( $considerTalk ) {
306 <td class='mw-input'>" .
307 Xml
::checkLabel( $this->msg( 'movetalk' )->text(), 'wpMovetalk', 'wpMovetalk', $this->moveTalk
) .
313 if ( $user->isAllowed( 'suppressredirect' ) && $handler->supportsRedirects() ) {
317 <td class='mw-input' >" .
318 Xml
::checkLabel( $this->msg( 'move-leave-redirect' )->text(), 'wpLeaveRedirect',
319 'wpLeaveRedirect', $this->leaveRedirect
) .
325 if ( $hasRedirects ) {
329 <td class='mw-input' >" .
330 Xml
::checkLabel( $this->msg( 'fix-double-redirects' )->text(), 'wpFixRedirects',
331 'wpFixRedirects', $this->fixRedirects
) .
337 if ( $canMoveSubpage ) {
341 <td class=\"mw-input\">" .
344 # Don't check the box if we only have talk subpages to
345 # move and we aren't moving the talk page.
346 $this->moveSubpages
&& ( $this->oldTitle
->hasSubpages() ||
$this->moveTalk
),
347 array( 'id' => 'wpMovesubpages' )
349 Xml
::tags( 'label', array( 'for' => 'wpMovesubpages' ),
351 ( $this->oldTitle
->hasSubpages()
353 : 'move-talk-subpages' )
354 )->numParams( $wgMaximumMovedPages )->params( $wgMaximumMovedPages )->parse()
361 $watchChecked = $user->isLoggedIn() && ( $this->watch ||
$user->getBoolOption( 'watchmoves' )
362 ||
$user->isWatched( $this->oldTitle
) );
363 # Don't allow watching if user is not logged in
364 if ( $user->isLoggedIn() ) {
368 <td class='mw-input'>" .
369 Xml
::checkLabel( $this->msg( 'move-watch' )->text(), 'wpWatch', 'watch', $watchChecked ) .
378 <td class='mw-submit'>" .
379 Xml
::submitButton( $movepagebtn, array( 'name' => $submitVar ) ) .
382 Xml
::closeElement( 'table' ) .
383 Html
::hidden( 'wpEditToken', $user->getEditToken() ) .
384 Xml
::closeElement( 'fieldset' ) .
385 Xml
::closeElement( 'form' ) .
389 $this->showLogFragment( $this->oldTitle
);
390 $this->showSubpages( $this->oldTitle
);
394 function doSubmit() {
395 global $wgMaximumMovedPages, $wgFixDoubleRedirects;
397 $user = $this->getUser();
399 if ( $user->pingLimiter( 'move' ) ) {
400 throw new ThrottledError
;
403 $ot = $this->oldTitle
;
404 $nt = $this->newTitle
;
406 # don't allow moving to pages with # in
407 if ( !$nt ||
$nt->getFragment() != '' ) {
408 $this->showForm( array( array( 'badtitletext' ) ) );
412 # Show a warning if the target file exists on a shared repo
413 if ( $nt->getNamespace() == NS_FILE
414 && !( $this->moveOverShared
&& $user->isAllowed( 'reupload-shared' ) )
415 && !RepoGroup
::singleton()->getLocalRepo()->findFile( $nt )
416 && wfFindFile( $nt ) )
418 $this->showForm( array( array( 'file-exists-sharedrepo' ) ) );
423 # Delete to make way if requested
424 if ( $this->deleteAndMove
) {
425 $permErrors = $nt->getUserPermissionsErrors( 'delete', $user );
426 if ( count( $permErrors ) ) {
427 # Only show the first error
428 $this->showForm( $permErrors );
432 $reason = $this->msg( 'delete_and_move_reason', $ot )->inContentLanguage()->text();
434 // Delete an associated image if there is
435 if ( $nt->getNamespace() == NS_FILE
) {
436 $file = wfLocalFile( $nt );
437 if ( $file->exists() ) {
438 $file->delete( $reason, false );
442 $error = ''; // passed by ref
443 $page = WikiPage
::factory( $nt );
444 $deleteStatus = $page->doDeleteArticleReal( $reason, false, 0, true, $error, $user );
445 if ( !$deleteStatus->isGood() ) {
446 $this->showForm( $deleteStatus->getErrorsArray() );
451 $handler = ContentHandler
::getForTitle( $ot );
453 if ( !$handler->supportsRedirects() ) {
454 $createRedirect = false;
455 } elseif ( $user->isAllowed( 'suppressredirect' ) ) {
456 $createRedirect = $this->leaveRedirect
;
458 $createRedirect = true;
461 # Do the actual move.
462 $error = $ot->moveTo( $nt, true, $this->reason
, $createRedirect );
463 if ( $error !== true ) {
464 $this->showForm( $error );
468 if ( $wgFixDoubleRedirects && $this->fixRedirects
) {
469 DoubleRedirectJob
::fixRedirects( 'move', $ot, $nt );
472 $out = $this->getOutput();
473 $out->setPageTitle( $this->msg( 'pagemovedsub' ) );
475 $oldLink = Linker
::link(
479 array( 'redirect' => 'no' )
481 $newLink = Linker
::linkKnown( $nt );
482 $oldText = $ot->getPrefixedText();
483 $newText = $nt->getPrefixedText();
485 if ( $ot->exists() ) {
486 //NOTE: we assume that if the old title exists, it's because it was re-created as
487 // a redirect to the new title. This is not safe, but what we did before was
488 // even worse: we just determined whether a redirect should have been created,
489 // and reported that it was created if it should have, without any checks.
490 // Also note that isRedirect() is unreliable because of bug 37209.
491 $msgName = 'movepage-moved-redirect';
493 $msgName = 'movepage-moved-noredirect';
496 $out->addHTML( $this->msg( 'movepage-moved' )->rawParams( $oldLink,
497 $newLink )->params( $oldText, $newText )->parseAsBlock() );
498 $out->addWikiMsg( $msgName );
500 wfRunHooks( 'SpecialMovepageAfterMove', array( &$this, &$ot, &$nt ) );
502 # Now we move extra pages we've been asked to move: subpages and talk
503 # pages. First, if the old page or the new page is a talk page, we
504 # can't move any talk pages: cancel that.
505 if ( $ot->isTalkPage() ||
$nt->isTalkPage() ) {
506 $this->moveTalk
= false;
509 if ( count( $ot->getUserPermissionsErrors( 'move-subpages', $user ) ) ) {
510 $this->moveSubpages
= false;
513 # Next make a list of id's. This might be marginally less efficient
514 # than a more direct method, but this is not a highly performance-cri-
515 # tical code path and readable code is more important here.
517 # Note: this query works nicely on MySQL 5, but the optimizer in MySQL
518 # 4 might get confused. If so, consider rewriting as a UNION.
520 # If the target namespace doesn't allow subpages, moving with subpages
521 # would mean that you couldn't move them back in one operation, which
523 # @todo FIXME: A specific error message should be given in this case.
525 // @todo FIXME: Use Title::moveSubpages() here
526 $dbr = wfGetDB( DB_MASTER
);
527 if ( $this->moveSubpages
&& (
528 MWNamespace
::hasSubpages( $nt->getNamespace() ) ||
(
530 MWNamespace
::hasSubpages( $nt->getTalkPage()->getNamespace() )
534 'page_title' . $dbr->buildLike( $ot->getDBkey() . '/', $dbr->anyString() )
535 . ' OR page_title = ' . $dbr->addQuotes( $ot->getDBkey() )
537 $conds['page_namespace'] = array();
538 if ( MWNamespace
::hasSubpages( $nt->getNamespace() ) ) {
539 $conds['page_namespace'][] = $ot->getNamespace();
541 if ( $this->moveTalk
&& MWNamespace
::hasSubpages( $nt->getTalkPage()->getNamespace() ) ) {
542 $conds['page_namespace'][] = $ot->getTalkPage()->getNamespace();
544 } elseif ( $this->moveTalk
) {
546 'page_namespace' => $ot->getTalkPage()->getNamespace(),
547 'page_title' => $ot->getDBkey()
554 $extraPages = array();
555 if ( !is_null( $conds ) ) {
556 $extraPages = TitleArray
::newFromResult(
557 $dbr->select( 'page',
558 array( 'page_id', 'page_namespace', 'page_title' ),
565 $extraOutput = array();
567 foreach ( $extraPages as $oldSubpage ) {
568 if ( $ot->equals( $oldSubpage ) ) {
569 # Already did this one.
573 $newPageName = preg_replace(
574 '#^' . preg_quote( $ot->getDBkey(), '#' ) . '#',
575 StringUtils
::escapeRegexReplacement( $nt->getDBkey() ), # bug 21234
576 $oldSubpage->getDBkey()
578 if ( $oldSubpage->isTalkPage() ) {
579 $newNs = $nt->getTalkPage()->getNamespace();
581 $newNs = $nt->getSubjectPage()->getNamespace();
583 # Bug 14385: we need makeTitleSafe because the new page names may
584 # be longer than 255 characters.
585 $newSubpage = Title
::makeTitleSafe( $newNs, $newPageName );
586 if ( !$newSubpage ) {
587 $oldLink = Linker
::linkKnown( $oldSubpage );
588 $extraOutput[] = $this->msg( 'movepage-page-unmoved' )->rawParams( $oldLink
589 )->params( Title
::makeName( $newNs, $newPageName ) )->escaped();
593 # This was copy-pasted from Renameuser, bleh.
594 if ( $newSubpage->exists() && !$oldSubpage->isValidMoveTarget( $newSubpage ) ) {
595 $link = Linker
::linkKnown( $newSubpage );
596 $extraOutput[] = $this->msg( 'movepage-page-exists' )->rawParams( $link )->escaped();
598 $success = $oldSubpage->moveTo( $newSubpage, true, $this->reason
, $createRedirect );
599 if ( $success === true ) {
600 if ( $this->fixRedirects
) {
601 DoubleRedirectJob
::fixRedirects( 'move', $oldSubpage, $newSubpage );
603 $oldLink = Linker
::link(
607 array( 'redirect' => 'no' )
609 $newLink = Linker
::linkKnown( $newSubpage );
610 $extraOutput[] = $this->msg( 'movepage-page-moved' )->rawParams( $oldLink, $newLink )->escaped();
612 if ( $count >= $wgMaximumMovedPages ) {
613 $extraOutput[] = $this->msg( 'movepage-max-pages' )->numParams( $wgMaximumMovedPages )->escaped();
617 $oldLink = Linker
::linkKnown( $oldSubpage );
618 $newLink = Linker
::link( $newSubpage );
619 $extraOutput[] = $this->msg( 'movepage-page-unmoved' )->rawParams( $oldLink, $newLink )->escaped();
625 if ( $extraOutput !== array() ) {
626 $out->addHTML( "<ul>\n<li>" . implode( "</li>\n<li>", $extraOutput ) . "</li>\n</ul>" );
629 # Deal with watches (we don't watch subpages)
630 if ( $this->watch
&& $user->isLoggedIn() ) {
631 $user->addWatch( $ot );
632 $user->addWatch( $nt );
634 $user->removeWatch( $ot );
635 $user->removeWatch( $nt );
638 # Re-clear the file redirect cache, which may have been polluted by
639 # parsing in messages above. See CR r56745.
640 # @todo FIXME: Needs a more robust solution inside FileRepo.
641 if ( $ot->getNamespace() == NS_FILE
) {
642 RepoGroup
::singleton()->getLocalRepo()->invalidateImageRedirect( $ot );
646 function showLogFragment( $title ) {
647 $moveLogPage = new LogPage( 'move' );
648 $out = $this->getOutput();
649 $out->addHTML( Xml
::element( 'h2', null, $moveLogPage->getName()->text() ) );
650 LogEventsList
::showLogExtract( $out, 'move', $title );
653 function showSubpages( $title ) {
654 if ( !MWNamespace
::hasSubpages( $title->getNamespace() ) ) {
658 $subpages = $title->getSubpages();
659 $count = $subpages instanceof TitleArray ?
$subpages->count() : 0;
661 $out = $this->getOutput();
662 $out->wrapWikiMsg( '== $1 ==', array( 'movesubpage', $count ) );
666 $out->addWikiMsg( 'movenosubpage' );
670 $out->addWikiMsg( 'movesubpagetext', $this->getLanguage()->formatNum( $count ) );
671 $out->addHTML( "<ul>\n" );
673 foreach ( $subpages as $subpage ) {
674 $link = Linker
::link( $subpage );
675 $out->addHTML( "<li>$link</li>\n" );
677 $out->addHTML( "</ul>\n" );
680 protected function getGroupName() {