1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?php
/**
* Implements Special:DoubleRedirects
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup SpecialPage
*/
/**
* A special page listing redirects to redirecting page.
* The software will automatically not follow double redirects, to prevent loops.
*
* @ingroup SpecialPage
*/
class DoubleRedirectsPage extends PageQueryPage {
function __construct( $name = 'DoubleRedirects' ) {
parent::__construct( $name );
}
function isExpensive() { return true; }
function isSyndicated() { return false; }
function sortDescending() { return false; }
function getPageHeader() {
return wfMsgExt( 'doubleredirectstext', array( 'parse' ) );
}
function reallyGetQueryInfo( $namespace = null, $title = null ) {
$limitToTitle = !( $namespace === null && $title === null );
$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;
}
return $retval;
}
function getQueryInfo() {
return $this->reallyGetQueryInfo();
}
function getOrderFields() {
return array ( 'ra.rd_namespace', 'ra.rd_title' );
}
function formatResult( $skin, $result ) {
global $wgLang;
$titleA = Title::makeTitle( $result->namespace, $result->title );
if ( $result && !isset( $result->nsb ) ) {
$dbr = wfGetDB( DB_SLAVE );
$qi = $this->reallyGetQueryInfo( $result->namespace,
$result->title );
$res = $dbr->select($qi['tables'], $qi['fields'],
$qi['conds'], __METHOD__ );
if ( $res ) {
$result = $dbr->fetchObject( $res );
}
}
if ( !$result ) {
return '<del>' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</del>';
}
$titleB = Title::makeTitle( $result->nsb, $result->tb );
$titleC = Title::makeTitle( $result->nsc, $result->tc );
$linkA = $skin->linkKnown(
$titleA,
null,
array(),
array( 'redirect' => 'no' )
);
$edit = $skin->linkKnown(
$titleA,
wfMsgExt( 'parentheses', array( 'escape' ), wfMsg( 'editlink' ) ),
array(),
array(
'redirect' => 'no',
'action' => 'edit'
)
);
$linkB = $skin->linkKnown(
$titleB,
null,
array(),
array( 'redirect' => 'no' )
);
$linkC = $skin->linkKnown( $titleC );
$arr = $wgLang->getArrow() . $wgLang->getDirMark();
return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );
}
}
|