MediaWiki  master
SpecialMovepage.php
Go to the documentation of this file.
1 <?php
31  protected $oldTitle = null;
32 
34  protected $newTitle;
35 
37  protected $reason;
38 
39  // Checks
40 
42  protected $moveTalk;
43 
45  protected $deleteAndMove;
46 
48  protected $moveSubpages;
49 
51  protected $fixRedirects;
52 
54  protected $leaveRedirect;
55 
57  protected $moveOverShared;
58 
59  private $watch = false;
60 
61  public function __construct() {
62  parent::__construct( 'Movepage' );
63  }
64 
65  public function doesWrites() {
66  return true;
67  }
68 
69  public function execute( $par ) {
71 
72  $this->checkReadOnly();
73 
74  $this->setHeaders();
75  $this->outputHeader();
76 
77  $request = $this->getRequest();
78  $target = !is_null( $par ) ? $par : $request->getVal( 'target' );
79 
80  // Yes, the use of getVal() and getText() is wanted, see bug 20365
81 
82  $oldTitleText = $request->getVal( 'wpOldTitle', $target );
83  $this->oldTitle = Title::newFromText( $oldTitleText );
84 
85  if ( !$this->oldTitle ) {
86  // Either oldTitle wasn't passed, or newFromText returned null
87  throw new ErrorPageError( 'notargettitle', 'notargettext' );
88  }
89  if ( !$this->oldTitle->exists() ) {
90  throw new ErrorPageError( 'nopagetitle', 'nopagetext' );
91  }
92 
93  $newTitleTextMain = $request->getText( 'wpNewTitleMain' );
94  $newTitleTextNs = $request->getInt( 'wpNewTitleNs', $this->oldTitle->getNamespace() );
95  // Backwards compatibility for forms submitting here from other sources
96  // which is more common than it should be..
97  $newTitleText_bc = $request->getText( 'wpNewTitle' );
98  $this->newTitle = strlen( $newTitleText_bc ) > 0
99  ? Title::newFromText( $newTitleText_bc )
100  : Title::makeTitleSafe( $newTitleTextNs, $newTitleTextMain );
101 
102  $user = $this->getUser();
103 
104  # Check rights
105  $permErrors = $this->oldTitle->getUserPermissionsErrors( 'move', $user );
106  if ( count( $permErrors ) ) {
107  // Auto-block user's IP if the account was "hard" blocked
109  $user->spreadAnyEditBlock();
110  } );
111  throw new PermissionsError( 'move', $permErrors );
112  }
113 
114  $def = !$request->wasPosted();
115 
116  $this->reason = $request->getText( 'wpReason' );
117  $this->moveTalk = $request->getBool( 'wpMovetalk', $def );
118  $this->fixRedirects = $request->getBool( 'wpFixRedirects', $def );
119  $this->leaveRedirect = $request->getBool( 'wpLeaveRedirect', $def );
120  $this->moveSubpages = $request->getBool( 'wpMovesubpages' );
121  $this->deleteAndMove = $request->getBool( 'wpDeleteAndMove' );
122  $this->moveOverShared = $request->getBool( 'wpMoveOverSharedFile' );
123  $this->watch = $request->getCheck( 'wpWatch' ) && $user->isLoggedIn();
124 
125  if ( 'submit' == $request->getVal( 'action' ) && $request->wasPosted()
126  && $user->matchEditToken( $request->getVal( 'wpEditToken' ) )
127  ) {
128  $this->doSubmit();
129  } else {
130  $this->showForm( [] );
131  }
132  }
133 
141  function showForm( $err ) {
142  $this->getSkin()->setRelevantTitle( $this->oldTitle );
143 
144  $out = $this->getOutput();
145  $out->setPageTitle( $this->msg( 'move-page', $this->oldTitle->getPrefixedText() ) );
146  $out->addModules( 'mediawiki.special.movePage' );
147  $out->addModuleStyles( 'mediawiki.special.movePage.styles' );
148  $this->addHelpLink( 'Help:Moving a page' );
149 
150  $out->addWikiMsg( $this->getConfig()->get( 'FixDoubleRedirects' ) ?
151  'movepagetext' :
152  'movepagetext-noredirectfixer'
153  );
154 
155  if ( $this->oldTitle->getNamespace() == NS_USER && !$this->oldTitle->isSubpage() ) {
156  $out->wrapWikiMsg(
157  "<div class=\"warningbox mw-moveuserpage-warning\">\n$1\n</div>",
158  'moveuserpage-warning'
159  );
160  } elseif ( $this->oldTitle->getNamespace() == NS_CATEGORY ) {
161  $out->wrapWikiMsg(
162  "<div class=\"warningbox mw-movecategorypage-warning\">\n$1\n</div>",
163  'movecategorypage-warning'
164  );
165  }
166 
167  $deleteAndMove = false;
168  $moveOverShared = false;
169 
171 
172  if ( !$newTitle ) {
173  # Show the current title as a default
174  # when the form is first opened.
176  } elseif ( !count( $err ) ) {
177  # If a title was supplied, probably from the move log revert
178  # link, check for validity. We can then show some diagnostic
179  # information and save a click.
180  $newerr = $this->oldTitle->isValidMoveOperation( $newTitle );
181  if ( is_array( $newerr ) ) {
182  $err = $newerr;
183  }
184  }
185 
186  $user = $this->getUser();
187 
188  if ( count( $err ) == 1 && isset( $err[0][0] ) && $err[0][0] == 'articleexists'
189  && $newTitle->quickUserCan( 'delete', $user )
190  ) {
191  $out->wrapWikiMsg(
192  "<div class='warningbox'>\n$1\n</div>\n",
193  [ 'delete_and_move_text', $newTitle->getPrefixedText() ]
194  );
195  $deleteAndMove = true;
196  $err = [];
197  }
198 
199  if ( count( $err ) == 1 && isset( $err[0][0] ) && $err[0][0] == 'file-exists-sharedrepo'
200  && $user->isAllowed( 'reupload-shared' )
201  ) {
202  $out->wrapWikiMsg(
203  "<div class='warningbox'>\n$1\n</div>\n",
204  [
205  'move-over-sharedrepo',
207  ]
208  );
209  $moveOverShared = true;
210  $err = [];
211  }
212 
213  $oldTalk = $this->oldTitle->getTalkPage();
214  $oldTitleSubpages = $this->oldTitle->hasSubpages();
215  $oldTitleTalkSubpages = $this->oldTitle->getTalkPage()->hasSubpages();
216 
217  $canMoveSubpage = ( $oldTitleSubpages || $oldTitleTalkSubpages ) &&
218  !count( $this->oldTitle->getUserPermissionsErrors( 'move-subpages', $user ) );
219 
220  # We also want to be able to move assoc. subpage talk-pages even if base page
221  # has no associated talk page, so || with $oldTitleTalkSubpages.
222  $considerTalk = !$this->oldTitle->isTalkPage() &&
223  ( $oldTalk->exists()
224  || ( $oldTitleTalkSubpages && $canMoveSubpage ) );
225 
226  $dbr = wfGetDB( DB_SLAVE );
227  if ( $this->getConfig()->get( 'FixDoubleRedirects' ) ) {
228  $hasRedirects = $dbr->selectField( 'redirect', '1',
229  [
230  'rd_namespace' => $this->oldTitle->getNamespace(),
231  'rd_title' => $this->oldTitle->getDBkey(),
232  ], __METHOD__ );
233  } else {
234  $hasRedirects = false;
235  }
236 
237  if ( count( $err ) ) {
238  $out->addHTML( "<div class='errorbox'>\n" );
239  $action_desc = $this->msg( 'action-move' )->plain();
240  $out->addWikiMsg( 'permissionserrorstext-withaction', count( $err ), $action_desc );
241 
242  if ( count( $err ) == 1 ) {
243  $errMsg = $err[0];
244  $errMsgName = array_shift( $errMsg );
245 
246  if ( $errMsgName == 'hookaborted' ) {
247  $out->addHTML( "<p>{$errMsg[0]}</p>\n" );
248  } else {
249  $out->addWikiMsgArray( $errMsgName, $errMsg );
250  }
251  } else {
252  $errStr = [];
253 
254  foreach ( $err as $errMsg ) {
255  if ( $errMsg[0] == 'hookaborted' ) {
256  $errStr[] = $errMsg[1];
257  } else {
258  $errMsgName = array_shift( $errMsg );
259  $errStr[] = $this->msg( $errMsgName, $errMsg )->parse();
260  }
261  }
262 
263  $out->addHTML( '<ul><li>' . implode( "</li>\n<li>", $errStr ) . "</li></ul>\n" );
264  }
265  $out->addHTML( "</div>\n" );
266  }
267 
268  if ( $this->oldTitle->isProtected( 'move' ) ) {
269  # Is the title semi-protected?
270  if ( $this->oldTitle->isSemiProtected( 'move' ) ) {
271  $noticeMsg = 'semiprotectedpagemovewarning';
272  $classes[] = 'mw-textarea-sprotected';
273  } else {
274  # Then it must be protected based on static groups (regular)
275  $noticeMsg = 'protectedpagemovewarning';
276  $classes[] = 'mw-textarea-protected';
277  }
278  $out->addHTML( "<div class='mw-warning-with-logexcerpt'>\n" );
279  $out->addWikiMsg( $noticeMsg );
281  $out,
282  'protect',
283  $this->oldTitle,
284  '',
285  [ 'lim' => 1 ]
286  );
287  $out->addHTML( "</div>\n" );
288  }
289 
290  // Byte limit (not string length limit) for wpReason and wpNewTitleMain
291  // is enforced in the mediawiki.special.movePage module
292 
293  $immovableNamespaces = [];
294  foreach ( array_keys( $this->getLanguage()->getNamespaces() ) as $nsId ) {
295  if ( !MWNamespace::isMovable( $nsId ) ) {
296  $immovableNamespaces[] = $nsId;
297  }
298  }
299 
300  $handler = ContentHandler::getForTitle( $this->oldTitle );
301 
302  $out->enableOOUI();
303  $fields = [];
304 
305  $fields[] = new OOUI\FieldLayout(
306  new MediaWiki\Widget\ComplexTitleInputWidget( [
307  'id' => 'wpNewTitle',
308  'namespace' => [
309  'id' => 'wpNewTitleNs',
310  'name' => 'wpNewTitleNs',
311  'value' => $newTitle->getNamespace(),
312  'exclude' => $immovableNamespaces,
313  ],
314  'title' => [
315  'id' => 'wpNewTitleMain',
316  'name' => 'wpNewTitleMain',
317  'value' => $newTitle->getText(),
318  // Inappropriate, since we're expecting the user to input a non-existent page's title
319  'suggestions' => false,
320  ],
321  'infusable' => true,
322  ] ),
323  [
324  'label' => $this->msg( 'newtitle' )->text(),
325  'align' => 'top',
326  ]
327  );
328 
329  $fields[] = new OOUI\FieldLayout(
330  new OOUI\TextInputWidget( [
331  'name' => 'wpReason',
332  'id' => 'wpReason',
333  'maxLength' => 200,
334  'infusable' => true,
335  'value' => $this->reason,
336  ] ),
337  [
338  'label' => $this->msg( 'movereason' )->text(),
339  'align' => 'top',
340  ]
341  );
342 
343  if ( $considerTalk ) {
344  $fields[] = new OOUI\FieldLayout(
345  new OOUI\CheckboxInputWidget( [
346  'name' => 'wpMovetalk',
347  'id' => 'wpMovetalk',
348  'value' => '1',
349  'selected' => $this->moveTalk,
350  ] ),
351  [
352  'label' => $this->msg( 'movetalk' )->text(),
353  'help' => new OOUI\HtmlSnippet( $this->msg( 'movepagetalktext' )->parseAsBlock() ),
354  'align' => 'inline',
355  'infusable' => true,
356  ]
357  );
358  }
359 
360  if ( $user->isAllowed( 'suppressredirect' ) ) {
361  if ( $handler->supportsRedirects() ) {
362  $isChecked = $this->leaveRedirect;
363  $isDisabled = false;
364  } else {
365  $isChecked = false;
366  $isDisabled = true;
367  }
368  $fields[] = new OOUI\FieldLayout(
369  new OOUI\CheckboxInputWidget( [
370  'name' => 'wpLeaveRedirect',
371  'id' => 'wpLeaveRedirect',
372  'value' => '1',
373  'selected' => $isChecked,
374  'disabled' => $isDisabled,
375  ] ),
376  [
377  'label' => $this->msg( 'move-leave-redirect' )->text(),
378  'align' => 'inline',
379  ]
380  );
381  }
382 
383  if ( $hasRedirects ) {
384  $fields[] = new OOUI\FieldLayout(
385  new OOUI\CheckboxInputWidget( [
386  'name' => 'wpFixRedirects',
387  'id' => 'wpFixRedirects',
388  'value' => '1',
389  'selected' => $this->fixRedirects,
390  ] ),
391  [
392  'label' => $this->msg( 'fix-double-redirects' )->text(),
393  'align' => 'inline',
394  ]
395  );
396  }
397 
398  if ( $canMoveSubpage ) {
399  $maximumMovedPages = $this->getConfig()->get( 'MaximumMovedPages' );
400  $fields[] = new OOUI\FieldLayout(
401  new OOUI\CheckboxInputWidget( [
402  'name' => 'wpMovesubpages',
403  'id' => 'wpMovesubpages',
404  'value' => '1',
405  # Don't check the box if we only have talk subpages to
406  # move and we aren't moving the talk page.
407  'selected' => $this->moveSubpages && ( $this->oldTitle->hasSubpages() || $this->moveTalk ),
408  ] ),
409  [
410  'label' => new OOUI\HtmlSnippet(
411  $this->msg(
412  ( $this->oldTitle->hasSubpages()
413  ? 'move-subpages'
414  : 'move-talk-subpages' )
415  )->numParams( $maximumMovedPages )->params( $maximumMovedPages )->parse()
416  ),
417  'align' => 'inline',
418  ]
419  );
420  }
421 
422  # Don't allow watching if user is not logged in
423  if ( $user->isLoggedIn() ) {
424  $watchChecked = $user->isLoggedIn() && ( $this->watch || $user->getBoolOption( 'watchmoves' )
425  || $user->isWatched( $this->oldTitle ) );
426  $fields[] = new OOUI\FieldLayout(
427  new OOUI\CheckboxInputWidget( [
428  'name' => 'wpWatch',
429  'id' => 'watch', # ew
430  'value' => '1',
431  'selected' => $watchChecked,
432  ] ),
433  [
434  'label' => $this->msg( 'move-watch' )->text(),
435  'align' => 'inline',
436  ]
437  );
438  }
439 
440  $hiddenFields = '';
441  if ( $moveOverShared ) {
442  $hiddenFields .= Html::hidden( 'wpMoveOverSharedFile', '1' );
443  }
444 
445  if ( $deleteAndMove ) {
446  $fields[] = new OOUI\FieldLayout(
447  new OOUI\CheckboxInputWidget( [
448  'name' => 'wpDeleteAndMove',
449  'id' => 'wpDeleteAndMove',
450  'value' => '1',
451  ] ),
452  [
453  'label' => $this->msg( 'delete_and_move_confirm' )->text(),
454  'align' => 'inline',
455  ]
456  );
457  }
458 
459  $fields[] = new OOUI\FieldLayout(
460  new OOUI\ButtonInputWidget( [
461  'name' => 'wpMove',
462  'value' => $this->msg( 'movepagebtn' )->text(),
463  'label' => $this->msg( 'movepagebtn' )->text(),
464  'flags' => [ 'constructive', 'primary' ],
465  'type' => 'submit',
466  ] ),
467  [
468  'align' => 'top',
469  ]
470  );
471 
472  $fieldset = new OOUI\FieldsetLayout( [
473  'label' => $this->msg( 'move-page-legend' )->text(),
474  'id' => 'mw-movepage-table',
475  'items' => $fields,
476  ] );
477 
478  $form = new OOUI\FormLayout( [
479  'method' => 'post',
480  'action' => $this->getPageTitle()->getLocalURL( 'action=submit' ),
481  'id' => 'movepage',
482  ] );
483  $form->appendContent(
484  $fieldset,
485  new OOUI\HtmlSnippet(
486  $hiddenFields .
487  Html::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) .
488  Html::hidden( 'wpEditToken', $user->getEditToken() )
489  )
490  );
491 
492  $out->addHTML(
493  new OOUI\PanelLayout( [
494  'classes' => [ 'movepage-wrapper' ],
495  'expanded' => false,
496  'padded' => true,
497  'framed' => true,
498  'content' => $form,
499  ] )
500  );
501 
502  $this->showLogFragment( $this->oldTitle );
503  $this->showSubpages( $this->oldTitle );
504  }
505 
506  function doSubmit() {
507  $user = $this->getUser();
508 
509  if ( $user->pingLimiter( 'move' ) ) {
510  throw new ThrottledError;
511  }
512 
513  $ot = $this->oldTitle;
514  $nt = $this->newTitle;
515 
516  # don't allow moving to pages with # in
517  if ( !$nt || $nt->hasFragment() ) {
518  $this->showForm( [ [ 'badtitletext' ] ] );
519 
520  return;
521  }
522 
523  # Show a warning if the target file exists on a shared repo
524  if ( $nt->getNamespace() == NS_FILE
525  && !( $this->moveOverShared && $user->isAllowed( 'reupload-shared' ) )
526  && !RepoGroup::singleton()->getLocalRepo()->findFile( $nt )
527  && wfFindFile( $nt )
528  ) {
529  $this->showForm( [ [ 'file-exists-sharedrepo' ] ] );
530 
531  return;
532  }
533 
534  # Delete to make way if requested
535  if ( $this->deleteAndMove ) {
536  $permErrors = $nt->getUserPermissionsErrors( 'delete', $user );
537  if ( count( $permErrors ) ) {
538  # Only show the first error
539  $this->showForm( $permErrors );
540 
541  return;
542  }
543 
544  $reason = $this->msg( 'delete_and_move_reason', $ot )->inContentLanguage()->text();
545 
546  // Delete an associated image if there is
547  if ( $nt->getNamespace() == NS_FILE ) {
548  $file = wfLocalFile( $nt );
549  $file->load( File::READ_LATEST );
550  if ( $file->exists() ) {
551  $file->delete( $reason, false, $user );
552  }
553  }
554 
555  $error = ''; // passed by ref
556  $page = WikiPage::factory( $nt );
557  $deleteStatus = $page->doDeleteArticleReal( $reason, false, 0, true, $error, $user );
558  if ( !$deleteStatus->isGood() ) {
559  $this->showForm( $deleteStatus->getErrorsArray() );
560 
561  return;
562  }
563  }
564 
565  $handler = ContentHandler::getForTitle( $ot );
566 
567  if ( !$handler->supportsRedirects() ) {
568  $createRedirect = false;
569  } elseif ( $user->isAllowed( 'suppressredirect' ) ) {
570  $createRedirect = $this->leaveRedirect;
571  } else {
572  $createRedirect = true;
573  }
574 
575  # Do the actual move.
576  $mp = new MovePage( $ot, $nt );
577  $valid = $mp->isValidMove();
578  if ( !$valid->isOK() ) {
579  $this->showForm( $valid->getErrorsArray() );
580  return;
581  }
582 
583  $permStatus = $mp->checkPermissions( $user, $this->reason );
584  if ( !$permStatus->isOK() ) {
585  $this->showForm( $permStatus->getErrorsArray() );
586  return;
587  }
588 
589  $status = $mp->move( $user, $this->reason, $createRedirect );
590  if ( !$status->isOK() ) {
591  $this->showForm( $status->getErrorsArray() );
592  return;
593  }
594 
595  if ( $this->getConfig()->get( 'FixDoubleRedirects' ) && $this->fixRedirects ) {
596  DoubleRedirectJob::fixRedirects( 'move', $ot, $nt );
597  }
598 
599  $out = $this->getOutput();
600  $out->setPageTitle( $this->msg( 'pagemovedsub' ) );
601 
602  $linkRenderer = $this->getLinkRenderer();
603  $oldLink = $linkRenderer->makeLink(
604  $ot,
605  null,
606  [ 'id' => 'movepage-oldlink' ],
607  [ 'redirect' => 'no' ]
608  );
609  $newLink = $linkRenderer->makeKnownLink(
610  $nt,
611  null,
612  [ 'id' => 'movepage-newlink' ]
613  );
614  $oldText = $ot->getPrefixedText();
615  $newText = $nt->getPrefixedText();
616 
617  if ( $ot->exists() ) {
618  // NOTE: we assume that if the old title exists, it's because it was re-created as
619  // a redirect to the new title. This is not safe, but what we did before was
620  // even worse: we just determined whether a redirect should have been created,
621  // and reported that it was created if it should have, without any checks.
622  // Also note that isRedirect() is unreliable because of bug 37209.
623  $msgName = 'movepage-moved-redirect';
624  } else {
625  $msgName = 'movepage-moved-noredirect';
626  }
627 
628  $out->addHTML( $this->msg( 'movepage-moved' )->rawParams( $oldLink,
629  $newLink )->params( $oldText, $newText )->parseAsBlock() );
630  $out->addWikiMsg( $msgName );
631 
632  Hooks::run( 'SpecialMovepageAfterMove', [ &$this, &$ot, &$nt ] );
633 
634  # Now we move extra pages we've been asked to move: subpages and talk
635  # pages. First, if the old page or the new page is a talk page, we
636  # can't move any talk pages: cancel that.
637  if ( $ot->isTalkPage() || $nt->isTalkPage() ) {
638  $this->moveTalk = false;
639  }
640 
641  if ( count( $ot->getUserPermissionsErrors( 'move-subpages', $user ) ) ) {
642  $this->moveSubpages = false;
643  }
644 
656  // @todo FIXME: Use Title::moveSubpages() here
657  $dbr = wfGetDB( DB_MASTER );
658  if ( $this->moveSubpages && (
659  MWNamespace::hasSubpages( $nt->getNamespace() ) || (
660  $this->moveTalk
661  && MWNamespace::hasSubpages( $nt->getTalkPage()->getNamespace() )
662  )
663  ) ) {
664  $conds = [
665  'page_title' . $dbr->buildLike( $ot->getDBkey() . '/', $dbr->anyString() )
666  . ' OR page_title = ' . $dbr->addQuotes( $ot->getDBkey() )
667  ];
668  $conds['page_namespace'] = [];
669  if ( MWNamespace::hasSubpages( $nt->getNamespace() ) ) {
670  $conds['page_namespace'][] = $ot->getNamespace();
671  }
672  if ( $this->moveTalk &&
673  MWNamespace::hasSubpages( $nt->getTalkPage()->getNamespace() )
674  ) {
675  $conds['page_namespace'][] = $ot->getTalkPage()->getNamespace();
676  }
677  } elseif ( $this->moveTalk ) {
678  $conds = [
679  'page_namespace' => $ot->getTalkPage()->getNamespace(),
680  'page_title' => $ot->getDBkey()
681  ];
682  } else {
683  # Skip the query
684  $conds = null;
685  }
686 
687  $extraPages = [];
688  if ( !is_null( $conds ) ) {
689  $extraPages = TitleArray::newFromResult(
690  $dbr->select( 'page',
691  [ 'page_id', 'page_namespace', 'page_title' ],
692  $conds,
693  __METHOD__
694  )
695  );
696  }
697 
698  $extraOutput = [];
699  $count = 1;
700  foreach ( $extraPages as $oldSubpage ) {
701  if ( $ot->equals( $oldSubpage ) || $nt->equals( $oldSubpage ) ) {
702  # Already did this one.
703  continue;
704  }
705 
706  $newPageName = preg_replace(
707  '#^' . preg_quote( $ot->getDBkey(), '#' ) . '#',
708  StringUtils::escapeRegexReplacement( $nt->getDBkey() ), # bug 21234
709  $oldSubpage->getDBkey()
710  );
711 
712  if ( $oldSubpage->isSubpage() && ( $ot->isTalkPage() xor $nt->isTalkPage() ) ) {
713  // Moving a subpage from a subject namespace to a talk namespace or vice-versa
714  $newNs = $nt->getNamespace();
715  } elseif ( $oldSubpage->isTalkPage() ) {
716  $newNs = $nt->getTalkPage()->getNamespace();
717  } else {
718  $newNs = $nt->getSubjectPage()->getNamespace();
719  }
720 
721  # Bug 14385: we need makeTitleSafe because the new page names may
722  # be longer than 255 characters.
723  $newSubpage = Title::makeTitleSafe( $newNs, $newPageName );
724  if ( !$newSubpage ) {
725  $oldLink = $linkRenderer->makeKnownLink( $oldSubpage );
726  $extraOutput[] = $this->msg( 'movepage-page-unmoved' )->rawParams( $oldLink )
727  ->params( Title::makeName( $newNs, $newPageName ) )->escaped();
728  continue;
729  }
730 
731  # This was copy-pasted from Renameuser, bleh.
732  if ( $newSubpage->exists() && !$oldSubpage->isValidMoveTarget( $newSubpage ) ) {
733  $link = $linkRenderer->makeKnownLink( $newSubpage );
734  $extraOutput[] = $this->msg( 'movepage-page-exists' )->rawParams( $link )->escaped();
735  } else {
736  $success = $oldSubpage->moveTo( $newSubpage, true, $this->reason, $createRedirect );
737 
738  if ( $success === true ) {
739  if ( $this->fixRedirects ) {
740  DoubleRedirectJob::fixRedirects( 'move', $oldSubpage, $newSubpage );
741  }
742  $oldLink = $linkRenderer->makeLink(
743  $oldSubpage,
744  null,
745  [],
746  [ 'redirect' => 'no' ]
747  );
748 
749  $newLink = $linkRenderer->makeKnownLink( $newSubpage );
750  $extraOutput[] = $this->msg( 'movepage-page-moved' )
751  ->rawParams( $oldLink, $newLink )->escaped();
752  ++$count;
753 
754  $maximumMovedPages = $this->getConfig()->get( 'MaximumMovedPages' );
755  if ( $count >= $maximumMovedPages ) {
756  $extraOutput[] = $this->msg( 'movepage-max-pages' )
757  ->numParams( $maximumMovedPages )->escaped();
758  break;
759  }
760  } else {
761  $oldLink = $linkRenderer->makeKnownLink( $oldSubpage );
762  $newLink = $linkRenderer->makeLink( $newSubpage );
763  $extraOutput[] = $this->msg( 'movepage-page-unmoved' )
764  ->rawParams( $oldLink, $newLink )->escaped();
765  }
766  }
767  }
768 
769  if ( $extraOutput !== [] ) {
770  $out->addHTML( "<ul>\n<li>" . implode( "</li>\n<li>", $extraOutput ) . "</li>\n</ul>" );
771  }
772 
773  # Deal with watches (we don't watch subpages)
774  WatchAction::doWatchOrUnwatch( $this->watch, $ot, $user );
775  WatchAction::doWatchOrUnwatch( $this->watch, $nt, $user );
776  }
777 
778  function showLogFragment( $title ) {
779  $moveLogPage = new LogPage( 'move' );
780  $out = $this->getOutput();
781  $out->addHTML( Xml::element( 'h2', null, $moveLogPage->getName()->text() ) );
783  }
784 
785  function showSubpages( $title ) {
786  if ( !MWNamespace::hasSubpages( $title->getNamespace() ) ) {
787  return;
788  }
789 
790  $subpages = $title->getSubpages();
791  $count = $subpages instanceof TitleArray ? $subpages->count() : 0;
792 
793  $out = $this->getOutput();
794  $out->wrapWikiMsg( '== $1 ==', [ 'movesubpage', $count ] );
795 
796  # No subpages.
797  if ( $count == 0 ) {
798  $out->addWikiMsg( 'movenosubpage' );
799 
800  return;
801  }
802 
803  $out->addWikiMsg( 'movesubpagetext', $this->getLanguage()->formatNum( $count ) );
804  $out->addHTML( "<ul>\n" );
805 
806  $linkRenderer = $this->getLinkRenderer();
807  foreach ( $subpages as $subpage ) {
808  $link = $linkRenderer->makeLink( $subpage );
809  $out->addHTML( "<li>$link</li>\n" );
810  }
811  $out->addHTML( "</ul>\n" );
812  }
813 
822  public function prefixSearchSubpages( $search, $limit, $offset ) {
823  return $this->prefixSearchString( $search, $limit, $offset );
824  }
825 
826  protected function getGroupName() {
827  return 'pagetools';
828  }
829 }
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:101
static fixRedirects($reason, $redirTitle, $destTitle=false)
Insert jobs into the job queue to fix redirects to the given title.
#define the
table suitable for use with IDatabase::select()
static isMovable($index)
Can pages in the given namespace be moved?
Definition: MWNamespace.php:67
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:776
Shortcut to construct a special page which is unlisted by default.
Handles the backend logic of moving a page from one title to another.
Definition: MovePage.php:30
string $reason
Text input.
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:39
$success
getText()
Get the text form (spaces not underscores) of the main part.
Definition: Title.php:872
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
showSubpages($title)
static hidden($name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:749
msg()
Wrapper around wfMessage that sets the current context.
The MediaWiki class is the helper class for the index.php entry point.
Definition: MediaWiki.php:28
getOutput()
Get the OutputPage being used for this instance.
getPrefixedText()
Get the prefixed title with spaces.
Definition: Title.php:1430
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:256
wfLocalFile($title)
Get an object referring to a locally registered file.
The TitleArray class only exists to provide the newFromResult method at pre- sent.
Definition: TitleArray.php:31
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
static showLogExtract(&$out, $types=[], $page= '', $user= '', $param=[])
Show log extract.
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
Definition: hooks.txt:2621
Class to simplify the use of log pages.
Definition: LogPage.php:32
static addCallableUpdate($callable, $type=self::POSTSEND)
Add a callable update.
showForm($err)
Show the form.
isValidMoveOperation(&$nt, $auth=true, $reason= '')
Check whether a given move operation would be valid.
Definition: Title.php:3592
An error page which can definitely be safely rendered using the OutputPage.
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
const NS_CATEGORY
Definition: Defines.php:83
getSkin()
Shortcut to get the skin being used for this instance.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:527
const DB_SLAVE
Definition: Defines.php:46
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
Definition: hooks.txt:312
static hasSubpages($index)
Does the namespace allow subpages?
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:913
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
const NS_FILE
Definition: Defines.php:75
static newFromResult($res)
Definition: TitleArray.php:38
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
quickUserCan($action, $user=null)
Can $user perform $action on this page? This skips potentially expensive cascading permission checks ...
Definition: Title.php:1859
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2458
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getUser()
Shortcut to get the User executing this instance.
static makeName($ns, $title, $fragment= '', $interwiki= '', $canonicalNamespace=false)
Make a prefixed DB key from a DB key and a namespace index.
Definition: Title.php:717
A special page that allows users to change page titles.
getConfig()
Shortcut to get main config object.
Show an error when a user tries to do something they do not have the necessary permissions for...
getLanguage()
Shortcut to get user's language.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1020
showLogFragment($title)
prefixSearchSubpages($search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1020
$count
LinkRenderer null $linkRenderer
Definition: SpecialPage.php:66
const DB_MASTER
Definition: Defines.php:47
getRequest()
Get the WebRequest being used for this instance.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition: hooks.txt:776
static doWatchOrUnwatch($watch, Title $title, User $user)
Watch or unwatch a page.
Definition: WatchAction.php:83
prefixSearchString($search, $limit, $offset)
Perform a regular substring search for prefixSearchSubpages.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
wfFindFile($title, $options=[])
Find a file.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk page
Definition: hooks.txt:2376
Show an error when the user hits a rate limit.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2376
getPageTitle($subpage=false)
Get a self-referential title object.