aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialDoubleRedirects.php
blob: 9c0563e5ab8e286dba3f5905ad0b269cbe509513 (plain) (blame)
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
<?php
/**
 *
 * @package MediaWiki
 * @subpackage SpecialPage
 */

/**
 * 
 */
require_once('QueryPage.php');

/**
 *
 * @package MediaWiki
 * @subpackage SpecialPage
 */
class DoubleRedirectsPage extends PageQueryPage {

	function getName() {
		return 'DoubleRedirects';
	}
	
	function isExpensive( ) { return true; }
	function isSyndicated() { return false; }

	function getPageHeader( ) {
		#FIXME : probably need to add a backlink to the maintenance page.
		return '<p>'.wfMsg("doubleredirectstext")."</p><br />\n";
	}

	function getSQL() {
		$dbr =& wfGetDB( DB_SLAVE );
		extract( $dbr->tableNames( 'page', 'links' ) );

		$sql = "SELECT 'DoubleRedirects' as type," .
		         " 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" .
			   " FROM $links AS la, $links AS lb, $page AS pa, $page AS pb, $page AS pc" .
			   " WHERE pa.page_is_redirect=1 AND pb.page_is_redirect=1" .
			     " AND la.l_from=pa.page_id" .
				 " AND la.l_to=pb.page_id" .
				 " AND lb.l_from=pb.page_id" .
				 " AND lb.l_to=pc.page_id";
		return $sql;
	}

	function getOrder() {
		return '';
	}
	
	function formatResult( $skin, $result ) {
		$fname = 'DoubleRedirectsPage::formatResult';
		$titleA = Title::makeTitle( $result->namespace, $result->title );

		if ( $result && !isset( $result->nsb ) ) {
			$dbr =& wfGetDB( DB_SLAVE );
			extract( $dbr->tableNames( 'page', 'links' ) );
			$encTitle = $dbr->addQuotes( $result->title );

			$sql = "SELECT 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" .
				   " FROM $links AS la, $links AS lb, $page AS pa, $page AS pb, $page AS pc" .
				   " WHERE pa.page_is_redirect=1 AND pb.page_is_redirect=1" .
					 " AND la.l_from=pa.page_id" .
					 " AND la.l_to=pb.page_id" .
					 " AND lb.l_from=pb.page_id" .
					 " AND lb.l_to=pc.page_id" .
					 " AND pa.page_namespace={$result->namespace}" .
					 " AND pa.page_title=$encTitle";
			$res = $dbr->query( $sql, $fname );
			if ( $res ) {
				$result = $dbr->fetchObject( $res );
			}
		}
		if ( !$result ) {
			return '';
		}
		
		$titleB = Title::makeTitle( $result->nsb, $result->tb );
		$titleC = Title::makeTitle( $result->nsc, $result->tc );

		$linkA = $skin->makeKnownLinkObj( $titleA,'', 'redirect=no' );
		$edit = $skin->makeBrokenLinkObj( $titleA, "(".wfMsg("qbedit").")" , 'redirect=no');
		$linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' );
		$linkC = $skin->makeKnownLinkObj( $titleC );
		
		return "$linkA $edit &rarr; $linkB &rarr; $linkC";
	}
}

/**
 * constructor
 */
function wfSpecialDoubleRedirects() {
	list( $limit, $offset ) = wfCheckLimits();
	
	$sdr = new DoubleRedirectsPage();
	
	return $sdr->doQuery( $offset, $limit );

}
?>