2004-08-15 19:54:15 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2010-08-14 19:19:41 +00:00
|
|
|
* Implements Special:DoubleRedirects
|
2010-06-21 12:59:04 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
2010-06-21 13:16:32 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-06-21 12:59:04 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
2010-08-14 19:19:41 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-08-15 19:54:15 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2007-04-21 12:42:27 +00:00
|
|
|
* A special page listing redirects to redirecting page.
|
2007-04-24 06:53:31 +00:00
|
|
|
* The software will automatically not follow double redirects, to prevent loops.
|
2010-06-21 12:59:04 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2012-04-13 08:30:57 +00:00
|
|
|
class DoubleRedirectsPage extends QueryPage {
|
2004-08-15 19:54:15 +00:00
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function __construct( $name = 'DoubleRedirects' ) {
|
|
|
|
|
parent::__construct( $name );
|
2004-08-15 19:54:15 +00:00
|
|
|
}
|
2011-03-18 20:37:11 +00:00
|
|
|
|
2012-09-24 17:44:57 +00:00
|
|
|
function isExpensive() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isSyndicated() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function sortDescending() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-08-15 19:54:15 +00:00
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function getPageHeader() {
|
2011-12-22 20:37:55 +00:00
|
|
|
return $this->msg( 'doubleredirectstext' )->parseAsBlock();
|
2004-08-15 19:54:15 +00:00
|
|
|
}
|
|
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function reallyGetQueryInfo( $namespace = null, $title = null ) {
|
2007-08-22 21:52:44 +00:00
|
|
|
$limitToTitle = !( $namespace === null && $title === null );
|
2013-01-29 20:00:33 +00:00
|
|
|
$dbr = wfGetDB( DB_SLAVE );
|
2010-12-22 14:16:25 +00:00
|
|
|
$retval = array (
|
2012-09-19 12:20:32 +00:00
|
|
|
'tables' => array (
|
|
|
|
|
'ra' => 'redirect',
|
|
|
|
|
'rb' => 'redirect',
|
|
|
|
|
'pa' => 'page',
|
|
|
|
|
'pb' => 'page'
|
|
|
|
|
),
|
|
|
|
|
'fields' => array(
|
|
|
|
|
'namespace' => 'pa.page_namespace',
|
|
|
|
|
'title' => 'pa.page_title',
|
|
|
|
|
'value' => 'pa.page_title',
|
|
|
|
|
|
|
|
|
|
'nsb' => 'pb.page_namespace',
|
|
|
|
|
'tb' => 'pb.page_title',
|
|
|
|
|
|
|
|
|
|
// Select fields from redirect instead of page. Because there may
|
|
|
|
|
// not actually be a page table row for this target (e.g. for interwiki redirects)
|
|
|
|
|
'nsc' => 'rb.rd_namespace',
|
|
|
|
|
'tc' => 'rb.rd_title',
|
|
|
|
|
'iwc' => 'rb.rd_interwiki',
|
|
|
|
|
),
|
|
|
|
|
'conds' => array(
|
|
|
|
|
'ra.rd_from = pa.page_id',
|
|
|
|
|
|
|
|
|
|
// Filter out redirects where the target goes interwiki (bug 40353).
|
|
|
|
|
// This isn't an optimization, it is required for correct results,
|
|
|
|
|
// otherwise a non-double redirect like Bar -> w:Foo will show up
|
|
|
|
|
// like "Bar -> Foo -> w:Foo".
|
|
|
|
|
|
|
|
|
|
// Need to check both NULL and "" for some reason,
|
|
|
|
|
// apparently either can be stored for non-iw entries.
|
2013-01-29 20:00:33 +00:00
|
|
|
'ra.rd_interwiki IS NULL OR ra.rd_interwiki = ' . $dbr->addQuotes( '' ),
|
2012-09-19 12:20:32 +00:00
|
|
|
|
|
|
|
|
'pb.page_namespace = ra.rd_namespace',
|
|
|
|
|
'pb.page_title = ra.rd_title',
|
|
|
|
|
|
|
|
|
|
'rb.rd_from = pb.page_id',
|
|
|
|
|
)
|
2010-12-22 14:16:25 +00:00
|
|
|
);
|
|
|
|
|
if ( $limitToTitle ) {
|
|
|
|
|
$retval['conds']['pa.page_namespace'] = $namespace;
|
|
|
|
|
$retval['conds']['pa.page_title'] = $title;
|
2007-08-22 21:52:44 +00:00
|
|
|
}
|
2010-12-22 14:16:25 +00:00
|
|
|
return $retval;
|
2007-08-22 21:52:44 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function getQueryInfo() {
|
|
|
|
|
return $this->reallyGetQueryInfo();
|
2006-04-20 21:52:30 +00:00
|
|
|
}
|
2004-08-15 19:54:15 +00:00
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function getOrderFields() {
|
|
|
|
|
return array ( 'ra.rd_namespace', 'ra.rd_title' );
|
2004-08-15 19:54:15 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2006-11-08 07:12:03 +00:00
|
|
|
function formatResult( $skin, $result ) {
|
2005-04-24 04:16:50 +00:00
|
|
|
$titleA = Title::makeTitle( $result->namespace, $result->title );
|
2007-08-22 21:52:44 +00:00
|
|
|
|
2012-09-19 12:20:32 +00:00
|
|
|
// If only titleA is in the query, it means this came from
|
|
|
|
|
// querycache (which only saves 3 columns).
|
|
|
|
|
// That does save the bulk of the query cost, but now we need to
|
|
|
|
|
// get a little more detail about each individual entry quickly
|
|
|
|
|
// using the filter of reallyGetQueryInfo.
|
2007-08-22 21:52:44 +00:00
|
|
|
if ( $result && !isset( $result->nsb ) ) {
|
|
|
|
|
$dbr = wfGetDB( DB_SLAVE );
|
2010-12-22 14:16:25 +00:00
|
|
|
$qi = $this->reallyGetQueryInfo( $result->namespace,
|
|
|
|
|
$result->title );
|
2013-01-28 21:11:10 +00:00
|
|
|
$res = $dbr->select( $qi['tables'], $qi['fields'],
|
2010-12-22 14:16:25 +00:00
|
|
|
$qi['conds'], __METHOD__ );
|
2007-08-22 21:52:44 +00:00
|
|
|
if ( $res ) {
|
|
|
|
|
$result = $dbr->fetchObject( $res );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( !$result ) {
|
2011-10-08 09:12:42 +00:00
|
|
|
return '<del>' . Linker::link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</del>';
|
2005-04-24 04:16:50 +00:00
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2007-08-22 21:52:44 +00:00
|
|
|
$titleB = Title::makeTitle( $result->nsb, $result->tb );
|
2013-01-28 21:11:10 +00:00
|
|
|
$titleC = Title::makeTitle( $result->nsc, $result->tc, '', $result->iwc );
|
2007-08-22 21:52:44 +00:00
|
|
|
|
2011-10-08 09:12:42 +00:00
|
|
|
$linkA = Linker::linkKnown(
|
2009-06-07 18:45:52 +00:00
|
|
|
$titleA,
|
|
|
|
|
null,
|
|
|
|
|
array(),
|
|
|
|
|
array( 'redirect' => 'no' )
|
|
|
|
|
);
|
2011-10-08 09:12:42 +00:00
|
|
|
|
|
|
|
|
$edit = Linker::linkKnown(
|
2009-06-12 23:34:02 +00:00
|
|
|
$titleA,
|
2011-12-22 20:37:55 +00:00
|
|
|
$this->msg( 'parentheses', $this->msg( 'editlink' )->text() )->escaped(),
|
2009-06-12 23:34:02 +00:00
|
|
|
array(),
|
|
|
|
|
array(
|
|
|
|
|
'redirect' => 'no',
|
|
|
|
|
'action' => 'edit'
|
|
|
|
|
)
|
|
|
|
|
);
|
2011-10-08 09:12:42 +00:00
|
|
|
|
|
|
|
|
$linkB = Linker::linkKnown(
|
2009-06-07 18:45:52 +00:00
|
|
|
$titleB,
|
|
|
|
|
null,
|
|
|
|
|
array(),
|
|
|
|
|
array( 'redirect' => 'no' )
|
|
|
|
|
);
|
2011-10-08 09:12:42 +00:00
|
|
|
|
|
|
|
|
$linkC = Linker::linkKnown( $titleC );
|
|
|
|
|
|
2011-11-21 16:13:21 +00:00
|
|
|
$lang = $this->getLanguage();
|
2011-10-08 09:12:42 +00:00
|
|
|
$arr = $lang->getArrow() . $lang->getDirMark();
|
2007-08-22 21:52:44 +00:00
|
|
|
|
|
|
|
|
return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );
|
2004-08-15 19:54:15 +00:00
|
|
|
}
|
|
|
|
|
}
|