MediaWiki REL1_33
DoubleRedirectJob.php
Go to the documentation of this file.
1<?php
25
31class 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();
245 self::$user = User::newFromName( $username );
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}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Job to fix double redirects after moving a page.
static getFinalDestination( $title)
Get the final destination of a redirect.
getUser()
Get a user object for doing edits, from a request-lifetime cache False will be returned if the user n...
static fixRedirects( $reason, $redirTitle, $destTitle=false)
Insert jobs into the job queue to fix redirects to the given title.
__construct(Title $title, array $params)
Title $redirTitle
The title which has changed, redirects pointing to this title are fixed.
string $reason
Reason for the change, 'maintenance' or 'move'.
Class to both describe a background job and handle jobs.
Definition Job.php:30
Title $title
Definition Job.php:41
setLastError( $error)
Definition Job.php:429
array $params
Array of job parameters.
Definition Job.php:35
MediaWikiServices is the service locator for the application scope of MediaWiki.
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:137
Represents a title within MediaWiki.
Definition Title.php:40
getNamespace()
Get the namespace index, i.e.
Definition Title.php:994
getPrefixedDBkey()
Get the prefixed database key form.
Definition Title.php:1648
isExternal()
Is this Title interwiki?
Definition Title.php:869
getDBkey()
Get the main part with underscores.
Definition Title.php:970
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:585
$res
Definition database.txt:21
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
const EDIT_INTERNAL
Definition Defines.php:168
const EDIT_UPDATE
Definition Defines.php:162
const EDIT_SUPPRESS_RC
Definition Defines.php:164
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;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:782
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:1580
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:37
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))
$content
title
const DB_MASTER
Definition defines.php:26