MediaWiki  1.32.0
DoubleRedirectJob.php
Go to the documentation of this file.
1 <?php
25 
31 class DoubleRedirectJob extends Job {
35  private $reason;
36 
40  private $redirTitle;
41 
43  private static $user;
44 
50  parent::__construct( 'fixDoubleRedirect', $title, $params );
51  $this->reason = $params['reason'];
52  $this->redirTitle = Title::newFromText( $params['redirTitle'] );
53  }
54 
63  public static function fixRedirects( $reason, $redirTitle, $destTitle = false ) {
64  # Need to use the master to get the redirect table updated in the same transaction
65  $dbw = wfGetDB( DB_MASTER );
66  $res = $dbw->select(
67  [ 'redirect', 'page' ],
68  [ 'page_namespace', 'page_title' ],
69  [
70  'page_id = rd_from',
71  'rd_namespace' => $redirTitle->getNamespace(),
72  'rd_title' => $redirTitle->getDBkey()
73  ], __METHOD__ );
74  if ( !$res->numRows() ) {
75  return;
76  }
77  $jobs = [];
78  foreach ( $res as $row ) {
79  $title = Title::makeTitle( $row->page_namespace, $row->page_title );
80  if ( !$title ) {
81  continue;
82  }
83 
84  $jobs[] = new self( $title, [
85  'reason' => $reason,
86  'redirTitle' => $redirTitle->getPrefixedDBkey() ] );
87  # Avoid excessive memory usage
88  if ( count( $jobs ) > 10000 ) {
89  JobQueueGroup::singleton()->push( $jobs );
90  $jobs = [];
91  }
92  }
93  JobQueueGroup::singleton()->push( $jobs );
94  }
95 
99  function run() {
100  if ( !$this->redirTitle ) {
101  $this->setLastError( 'Invalid title' );
102 
103  return false;
104  }
105 
106  $targetRev = Revision::newFromTitle( $this->title, false, Revision::READ_LATEST );
107  if ( !$targetRev ) {
108  wfDebug( __METHOD__ . ": target redirect already deleted, ignoring\n" );
109 
110  return true;
111  }
112  $content = $targetRev->getContent();
113  $currentDest = $content ? $content->getRedirectTarget() : null;
114  if ( !$currentDest || !$currentDest->equals( $this->redirTitle ) ) {
115  wfDebug( __METHOD__ . ": Redirect has changed since the job was queued\n" );
116 
117  return true;
118  }
119 
120  // Check for a suppression tag (used e.g. in periodically archived discussions)
121  $mw = MediaWikiServices::getInstance()->getMagicWordFactory()->get( 'staticredirect' );
122  if ( $content->matchMagicWord( $mw ) ) {
123  wfDebug( __METHOD__ . ": skipping: suppressed with __STATICREDIRECT__\n" );
124 
125  return true;
126  }
127 
128  // Find the current final destination
129  $newTitle = self::getFinalDestination( $this->redirTitle );
130  if ( !$newTitle ) {
131  wfDebug( __METHOD__ .
132  ": skipping: single redirect, circular redirect or invalid redirect destination\n" );
133 
134  return true;
135  }
136  if ( $newTitle->equals( $this->redirTitle ) ) {
137  // The redirect is already right, no need to change it
138  // This can happen if the page was moved back (say after vandalism)
139  wfDebug( __METHOD__ . " : skipping, already good\n" );
140  }
141 
142  // Preserve fragment (T16904)
143  $newTitle = Title::makeTitle( $newTitle->getNamespace(), $newTitle->getDBkey(),
144  $currentDest->getFragment(), $newTitle->getInterwiki() );
145 
146  // Fix the text
147  $newContent = $content->updateRedirect( $newTitle );
148 
149  if ( $newContent->equals( $content ) ) {
150  $this->setLastError( 'Content unchanged???' );
151 
152  return false;
153  }
154 
155  $user = $this->getUser();
156  if ( !$user ) {
157  $this->setLastError( 'Invalid user' );
158 
159  return false;
160  }
161 
162  // Save it
163  global $wgUser;
164  $oldUser = $wgUser;
165  $wgUser = $user;
166  $article = WikiPage::factory( $this->title );
167 
168  // Messages: double-redirect-fixed-move, double-redirect-fixed-maintenance
169  $reason = wfMessage( 'double-redirect-fixed-' . $this->reason,
170  $this->redirTitle->getPrefixedText(), $newTitle->getPrefixedText()
171  )->inContentLanguage()->text();
173  $article->doEditContent( $newContent, $reason, $flags, false, $user );
174  $wgUser = $oldUser;
175 
176  return true;
177  }
178 
187  public static function getFinalDestination( $title ) {
188  $dbw = wfGetDB( DB_MASTER );
189 
190  // Circular redirect check
191  $seenTitles = [];
192  $dest = false;
193 
194  while ( true ) {
195  $titleText = $title->getPrefixedDBkey();
196  if ( isset( $seenTitles[$titleText] ) ) {
197  wfDebug( __METHOD__, "Circular redirect detected, aborting\n" );
198 
199  return false;
200  }
201  $seenTitles[$titleText] = true;
202 
203  if ( $title->isExternal() ) {
204  // If the target is interwiki, we have to break early (T42352).
205  // Otherwise it will look up a row in the local page table
206  // with the namespace/page of the interwiki target which can cause
207  // unexpected results (e.g. X -> foo:Bar -> Bar -> .. )
208  break;
209  }
210 
211  $row = $dbw->selectRow(
212  [ 'redirect', 'page' ],
213  [ 'rd_namespace', 'rd_title', 'rd_interwiki' ],
214  [
215  'rd_from=page_id',
216  'page_namespace' => $title->getNamespace(),
217  'page_title' => $title->getDBkey()
218  ], __METHOD__ );
219  if ( !$row ) {
220  # No redirect from here, chain terminates
221  break;
222  } else {
223  $dest = $title = Title::makeTitle(
224  $row->rd_namespace,
225  $row->rd_title,
226  '',
227  $row->rd_interwiki
228  );
229  }
230  }
231 
232  return $dest;
233  }
234 
242  function getUser() {
243  if ( !self::$user ) {
244  $username = wfMessage( 'double-redirect-fixer' )->inContentLanguage()->text();
246  # User::newFromName() can return false on a badly configured wiki.
247  if ( self::$user && !self::$user->isLoggedIn() ) {
248  self::$user->addToDatabase();
249  }
250  }
251 
252  return self::$user;
253  }
254 }
$user
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 account $user
Definition: hooks.txt:244
$article
return true to allow those checks to and false if checking is done remove or add to the links of a group of changes in EnhancedChangesList Hook subscribers can return false to omit this line from recentchanges use this to change the tables headers change it to an object instance and return false override the list derivative used the name of the old file & $article
Definition: hooks.txt:1515
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:280
EDIT_INTERNAL
const EDIT_INTERNAL
Definition: Defines.php:159
captcha-old.count
count
Definition: captcha-old.py:249
Title\getPrefixedDBkey
getPrefixedDBkey()
Get the prefixed database key form.
Definition: Title.php:1682
DoubleRedirectJob\getFinalDestination
static getFinalDestination( $title)
Get the final destination of a redirect.
Definition: DoubleRedirectJob.php:187
Job\$title
Title $title
Definition: Job.php:41
DoubleRedirectJob\getUser
getUser()
Get a user object for doing edits, from a request-lifetime cache False will be returned if the user n...
Definition: DoubleRedirectJob.php:242
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:592
$res
$res
Definition: database.txt:21
Title\isExternal
isExternal()
Is this Title interwiki?
Definition: Title.php:850
Job\$params
array $params
Array of job parameters.
Definition: Job.php:35
Job\setLastError
setLastError( $error)
Definition: Job.php:384
php
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
DoubleRedirectJob
Job to fix double redirects after moving a page.
Definition: DoubleRedirectJob.php:31
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:30
Revision\newFromTitle
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition: Revision.php:133
Title\getDBkey
getDBkey()
Get the main part with underscores.
Definition: Title.php:951
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:127
Title\getNamespace
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:974
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2693
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:545
DB_MASTER
const DB_MASTER
Definition: defines.php:26
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:988
DoubleRedirectJob\fixRedirects
static fixRedirects( $reason, $redirTitle, $destTitle=false)
Insert jobs into the job queue to fix redirects to the given title.
Definition: DoubleRedirectJob.php:63
DoubleRedirectJob\$redirTitle
Title $redirTitle
The title which has changed, redirects pointing to this title are fixed.
Definition: DoubleRedirectJob.php:40
EDIT_UPDATE
const EDIT_UPDATE
Definition: Defines.php:153
title
title
Definition: parserTests.txt:239
DoubleRedirectJob\__construct
__construct(Title $title, array $params)
Definition: DoubleRedirectJob.php:49
DoubleRedirectJob\$user
static User $user
Definition: DoubleRedirectJob.php:43
Title
Represents a title within MediaWiki.
Definition: Title.php:39
reason
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition plus the scripts used to control compilation and installation of the executable as a special the source code distributed need not include anything that is normally and so on of the operating system on which the executable unless that component itself accompanies the executable If distribution of executable or object code is made by offering access to copy from a designated then offering equivalent access to copy the source code from the same place counts as distribution of the source even though third parties are not compelled to copy the source along with the object code You may not or distribute the Program except as expressly provided under this License Any attempt otherwise to sublicense or distribute the Program is and will automatically terminate your rights under this License parties who have received or from you under this License will not have their licenses terminated so long as such parties remain in full compliance You are not required to accept this since you have not signed it nothing else grants you permission to modify or distribute the Program or its derivative works These actions are prohibited by law if you do not accept this License by modifying or distributing the you indicate your acceptance of this License to do and all its terms and conditions for distributing or modifying the Program or works based on it Each time you redistribute the the recipient automatically receives a license from the original licensor to distribute or modify the Program subject to these terms and conditions You may not impose any further restrictions on the recipients exercise of the rights granted herein You are not responsible for enforcing compliance by third parties to this License as a consequence of a court judgment or allegation of patent infringement or for any other reason(not limited to patent issues)
JobQueueGroup\singleton
static singleton( $wiki=false)
Definition: JobQueueGroup.php:69
as
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
$content
$content
Definition: pageupdater.txt:72
EDIT_SUPPRESS_RC
const EDIT_SUPPRESS_RC
Definition: Defines.php:155
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
DoubleRedirectJob\run
run()
Definition: DoubleRedirectJob.php:99
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:47
$username
this hook is for auditing only or null if authentication failed before getting that far $username
Definition: hooks.txt:813
DoubleRedirectJob\$reason
string $reason
Reason for the change, 'maintenance' or 'move'.
Definition: DoubleRedirectJob.php:35