3 * Job to fix double redirects after moving a page.
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
25 * Job to fix double redirects after moving a page
29 class DoubleRedirectJob
extends Job
{
30 var $reason, $redirTitle;
38 * Insert jobs into the job queue to fix redirects to the given title
39 * @param string $reason the reason for the fix, see message "double-redirect-fixed-<reason>"
40 * @param $redirTitle Title: the title which has changed, redirects pointing to this title are fixed
41 * @param bool $destTitle Not used
43 public static function fixRedirects( $reason, $redirTitle, $destTitle = false ) {
44 # Need to use the master to get the redirect table updated in the same transaction
45 $dbw = wfGetDB( DB_MASTER
);
47 array( 'redirect', 'page' ),
48 array( 'page_namespace', 'page_title' ),
51 'rd_namespace' => $redirTitle->getNamespace(),
52 'rd_title' => $redirTitle->getDBkey()
54 if ( !$res->numRows() ) {
58 foreach ( $res as $row ) {
59 $title = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
64 $jobs[] = new self( $title, array(
66 'redirTitle' => $redirTitle->getPrefixedDBkey() ) );
67 # Avoid excessive memory usage
68 if ( count( $jobs ) > 10000 ) {
69 JobQueueGroup
::singleton()->push( $jobs );
73 JobQueueGroup
::singleton()->push( $jobs );
76 function __construct( $title, $params = false, $id = 0 ) {
77 parent
::__construct( 'fixDoubleRedirect', $title, $params, $id );
78 $this->reason
= $params['reason'];
79 $this->redirTitle
= Title
::newFromText( $params['redirTitle'] );
86 if ( !$this->redirTitle
) {
87 $this->setLastError( 'Invalid title' );
91 $targetRev = Revision
::newFromTitle( $this->title
, false, Revision
::READ_LATEST
);
93 wfDebug( __METHOD__
. ": target redirect already deleted, ignoring\n" );
96 $content = $targetRev->getContent();
97 $currentDest = $content ?
$content->getRedirectTarget() : null;
98 if ( !$currentDest ||
!$currentDest->equals( $this->redirTitle
) ) {
99 wfDebug( __METHOD__
. ": Redirect has changed since the job was queued\n" );
103 # Check for a suppression tag (used e.g. in periodically archived discussions)
104 $mw = MagicWord
::get( 'staticredirect' );
105 if ( $content->matchMagicWord( $mw ) ) {
106 wfDebug( __METHOD__
. ": skipping: suppressed with __STATICREDIRECT__\n" );
110 # Find the current final destination
111 $newTitle = self
::getFinalDestination( $this->redirTitle
);
113 wfDebug( __METHOD__
. ": skipping: single redirect, circular redirect or invalid redirect destination\n" );
116 if ( $newTitle->equals( $this->redirTitle
) ) {
117 # The redirect is already right, no need to change it
118 # This can happen if the page was moved back (say after vandalism)
119 wfDebug( __METHOD__
. " : skipping, already good\n" );
122 # Preserve fragment (bug 14904)
123 $newTitle = Title
::makeTitle( $newTitle->getNamespace(), $newTitle->getDBkey(),
124 $currentDest->getFragment(), $newTitle->getInterwiki() );
127 $newContent = $content->updateRedirect( $newTitle );
129 if ( $newContent->equals( $content ) ) {
130 $this->setLastError( 'Content unchanged???' );
134 $user = $this->getUser();
136 $this->setLastError( 'Invalid user' );
144 $article = WikiPage
::factory( $this->title
);
145 $reason = wfMessage( 'double-redirect-fixed-' . $this->reason
,
146 $this->redirTitle
->getPrefixedText(), $newTitle->getPrefixedText()
147 )->inContentLanguage()->text();
148 $article->doEditContent( $newContent, $reason, EDIT_UPDATE | EDIT_SUPPRESS_RC
, false, $user );
155 * Get the final destination of a redirect
157 * @param $title Title
159 * @return bool if the specified title is not a redirect, or if it is a circular redirect
161 public static function getFinalDestination( $title ) {
162 $dbw = wfGetDB( DB_MASTER
);
164 $seenTitles = array(); # Circular redirect check
168 $titleText = $title->getPrefixedDBkey();
169 if ( isset( $seenTitles[$titleText] ) ) {
170 wfDebug( __METHOD__
, "Circular redirect detected, aborting\n" );
173 $seenTitles[$titleText] = true;
175 if ( $title->getInterwiki() ) {
176 // If the target is interwiki, we have to break early (bug 40352).
177 // Otherwise it will look up a row in the local page table
178 // with the namespace/page of the interwiki target which can cause
179 // unexpected results (e.g. X -> foo:Bar -> Bar -> .. )
183 $row = $dbw->selectRow(
184 array( 'redirect', 'page' ),
185 array( 'rd_namespace', 'rd_title', 'rd_interwiki' ),
188 'page_namespace' => $title->getNamespace(),
189 'page_title' => $title->getDBkey()
192 # No redirect from here, chain terminates
195 $dest = $title = Title
::makeTitle( $row->rd_namespace
, $row->rd_title
, '', $row->rd_interwiki
);
202 * Get a user object for doing edits, from a request-lifetime cache
203 * False will be returned if the user name specified in the
204 * 'double-redirect-fixer' message is invalid.
209 if ( !self
::$user ) {
210 self
::$user = User
::newFromName( wfMessage( 'double-redirect-fixer' )->inContentLanguage()->text() );
211 # User::newFromName() can return false on a badly configured wiki.
212 if ( self
::$user && !self
::$user->isLoggedIn() ) {
213 self
::$user->addToDatabase();