Merge "[LockManager] Cleaned up DBLockManager and reduced code duplication."
[lhc/web/wiklou.git] / includes / specials / SpecialDisambiguations.php
1 <?php
2 /**
3 * Implements Special:Disambiguations
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * A special page that lists pages containing links to disambiguations pages
26 *
27 * @ingroup SpecialPage
28 */
29 class DisambiguationsPage extends QueryPage {
30
31 function __construct( $name = 'Disambiguations' ) {
32 parent::__construct( $name );
33 }
34
35 function isExpensive() {
36 return true;
37 }
38
39 function isSyndicated() {
40 return false;
41 }
42
43 function getPageHeader() {
44 return $this->msg( 'disambiguations-text' )->parseAsBlock();
45 }
46
47 /**
48 * @return string|bool False on failure
49 */
50 function getQueryFromLinkBatch() {
51 $dbr = wfGetDB( DB_SLAVE );
52 $dMsgText = $this->msg( 'disambiguationspage' )->inContentLanguage()->text();
53 $linkBatch = new LinkBatch;
54
55 # If the text can be treated as a title, use it verbatim.
56 # Otherwise, pull the titles from the links table
57 $dp = Title::newFromText( $dMsgText );
58 if( $dp ) {
59 if( $dp->getNamespace() != NS_TEMPLATE ) {
60 # @todo FIXME: We assume the disambiguation message is a template but
61 # the page can potentially be from another namespace :/
62 wfDebug("Mediawiki:disambiguationspage message does not refer to a template!\n");
63 }
64 $linkBatch->addObj( $dp );
65 } else {
66 # Get all the templates linked from the Mediawiki:Disambiguationspage
67 $disPageObj = Title::makeTitleSafe( NS_MEDIAWIKI, 'disambiguationspage' );
68 $res = $dbr->select(
69 array('pagelinks', 'page'),
70 'pl_title',
71 array('page_id = pl_from',
72 'pl_namespace' => NS_TEMPLATE,
73 'page_namespace' => $disPageObj->getNamespace(),
74 'page_title' => $disPageObj->getDBkey()),
75 __METHOD__ );
76
77 foreach ( $res as $row ) {
78 $linkBatch->addObj( Title::makeTitle( NS_TEMPLATE, $row->pl_title ));
79 }
80 }
81 $set = $linkBatch->constructSet( 'tl', $dbr );
82
83 if( $set === false ) {
84 # We must always return a valid SQL query, but this way
85 # the DB will always quickly return an empty result
86 $set = 'FALSE';
87 wfDebug( "Mediawiki:disambiguationspage message does not link to any templates!\n" );
88 }
89 return $set;
90 }
91
92 function getQueryInfo() {
93 // @todo FIXME: What are pagelinks and p2 doing here?
94 return array (
95 'tables' => array(
96 'templatelinks',
97 'p1' => 'page',
98 'pagelinks',
99 'p2' => 'page'
100 ),
101 'fields' => array(
102 'p1.page_namespace AS namespace',
103 'p1.page_title AS title',
104 'pl_from AS value'
105 ),
106 'conds' => array(
107 $this->getQueryFromLinkBatch(),
108 'p1.page_id = tl_from',
109 'pl_namespace = p1.page_namespace',
110 'pl_title = p1.page_title',
111 'p2.page_id = pl_from',
112 'p2.page_namespace' => MWNamespace::getContentNamespaces()
113 )
114 );
115 }
116
117 function getOrderFields() {
118 return array( 'tl_namespace', 'tl_title', 'value' );
119 }
120
121 function sortDescending() {
122 return false;
123 }
124
125 /**
126 * Fetch links and cache their existence
127 *
128 * @param $db DatabaseBase
129 * @param $res
130 */
131 function preprocessResults( $db, $res ) {
132 if ( !$res->numRows() ) {
133 return;
134 }
135
136 $batch = new LinkBatch;
137 foreach ( $res as $row ) {
138 $batch->add( $row->namespace, $row->title );
139 }
140 $batch->execute();
141
142 $res->seek( 0 );
143 }
144
145 function formatResult( $skin, $result ) {
146 $title = Title::newFromID( $result->value );
147 $dp = Title::makeTitle( $result->namespace, $result->title );
148
149 $from = Linker::link( $title );
150 $edit = Linker::link(
151 $title,
152 $this->msg( 'parentheses', $this->msg( 'editlink' )->text() )->escaped(),
153 array(),
154 array( 'redirect' => 'no', 'action' => 'edit' )
155 );
156 $arr = $this->getLanguage()->getArrow();
157 $to = Linker::link( $dp );
158
159 return "$from $edit $arr $to";
160 }
161 }