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
|
|
|
*/
|
2004-08-15 19:54:15 +00:00
|
|
|
class DoubleRedirectsPage extends PageQueryPage {
|
|
|
|
|
|
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
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function isExpensive() { return true; }
|
2004-11-13 20:40:28 +00:00
|
|
|
function isSyndicated() { return false; }
|
2010-12-22 14:16:25 +00:00
|
|
|
function sortDescending() { return false; }
|
2004-08-15 19:54:15 +00:00
|
|
|
|
2010-12-22 14:16:25 +00:00
|
|
|
function getPageHeader() {
|
2007-06-19 15:06:15 +00:00
|
|
|
return wfMsgExt( 'doubleredirectstext', array( 'parse' ) );
|
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 );
|
2010-12-22 14:16:25 +00:00
|
|
|
$retval = array (
|
|
|
|
|
'tables' => array ( 'ra' => 'redirect',
|
|
|
|
|
'rb' => 'redirect', 'pa' => 'page',
|
|
|
|
|
'pb' => 'page', 'pc' => 'page' ),
|
|
|
|
|
'fields' => array ( 'pa.page_namespace AS namespace',
|
|
|
|
|
'pa.page_title AS title',
|
|
|
|
|
'pb.page_namespace AS nsb',
|
|
|
|
|
'pb.page_title AS tb',
|
|
|
|
|
'pc.page_namespace AS nsc',
|
|
|
|
|
'pc.page_title AS tc' ),
|
|
|
|
|
'conds' => array ( 'ra.rd_from = pa.page_id',
|
|
|
|
|
'pb.page_namespace = ra.rd_namespace',
|
|
|
|
|
'pb.page_title = ra.rd_title',
|
|
|
|
|
'rb.rd_from = pb.page_id',
|
|
|
|
|
'pc.page_namespace = rb.rd_namespace',
|
|
|
|
|
'pc.page_title = rb.rd_title' )
|
|
|
|
|
);
|
|
|
|
|
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 ) {
|
2011-07-06 02:26:06 +00:00
|
|
|
global $wgLang;
|
|
|
|
|
|
2005-04-24 04:16:50 +00:00
|
|
|
$titleA = Title::makeTitle( $result->namespace, $result->title );
|
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 );
|
|
|
|
|
$res = $dbr->select($qi['tables'], $qi['fields'],
|
|
|
|
|
$qi['conds'], __METHOD__ );
|
2007-08-22 21:52:44 +00:00
|
|
|
if ( $res ) {
|
|
|
|
|
$result = $dbr->fetchObject( $res );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( !$result ) {
|
2010-07-23 16:59:29 +00:00
|
|
|
return '<del>' . $skin->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 );
|
|
|
|
|
$titleC = Title::makeTitle( $result->nsc, $result->tc );
|
|
|
|
|
|
2009-06-07 18:45:52 +00:00
|
|
|
$linkA = $skin->linkKnown(
|
|
|
|
|
$titleA,
|
|
|
|
|
null,
|
|
|
|
|
array(),
|
|
|
|
|
array( 'redirect' => 'no' )
|
|
|
|
|
);
|
2009-07-21 12:02:34 +00:00
|
|
|
$edit = $skin->linkKnown(
|
2009-06-12 23:34:02 +00:00
|
|
|
$titleA,
|
2009-07-21 12:17:32 +00:00
|
|
|
wfMsgExt( 'parentheses', array( 'escape' ), wfMsg( 'editlink' ) ),
|
2009-06-12 23:34:02 +00:00
|
|
|
array(),
|
|
|
|
|
array(
|
|
|
|
|
'redirect' => 'no',
|
|
|
|
|
'action' => 'edit'
|
|
|
|
|
)
|
|
|
|
|
);
|
2009-06-07 18:45:52 +00:00
|
|
|
$linkB = $skin->linkKnown(
|
|
|
|
|
$titleB,
|
|
|
|
|
null,
|
|
|
|
|
array(),
|
|
|
|
|
array( 'redirect' => 'no' )
|
|
|
|
|
);
|
|
|
|
|
$linkC = $skin->linkKnown( $titleC );
|
2011-07-06 02:26:06 +00:00
|
|
|
$arr = $wgLang->getArrow() . $wgLang->getDirMark();
|
2007-08-22 21:52:44 +00:00
|
|
|
|
|
|
|
|
return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );
|
2004-08-15 19:54:15 +00:00
|
|
|
}
|
|
|
|
|
}
|