Fix for r79874: only set $mRevIdFetched from fetchContent(), it was overriden by...
[lhc/web/wiklou.git] / includes / specials / SpecialRecentchangeslinked.php
1 <?php
2 /**
3 * Implements Special:Recentchangeslinked
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 * This is to display changes made to all articles linked in an article.
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialRecentchangeslinked extends SpecialRecentChanges {
30 var $rclTargetTitle;
31
32 function __construct(){
33 parent::__construct( 'Recentchangeslinked' );
34 }
35
36 public function getDefaultOptions() {
37 $opts = parent::getDefaultOptions();
38 $opts->add( 'target', '' );
39 $opts->add( 'showlinkedto', false );
40 $opts->add( 'tagfilter', '' );
41 return $opts;
42 }
43
44 public function parseParameters( $par, FormOptions $opts ) {
45 $opts['target'] = $par;
46 }
47
48 public function feedSetup() {
49 global $wgRequest;
50 $opts = parent::feedSetup();
51 $opts['target'] = $wgRequest->getVal( 'target' );
52 return $opts;
53 }
54
55 public function getFeedObject( $feedFormat ){
56 $feed = new ChangesFeed( $feedFormat, false );
57 $feedObj = $feed->getFeedObject(
58 wfMsgForContent( 'recentchangeslinked-title', $this->getTargetTitle()->getPrefixedText() ),
59 wfMsgForContent( 'recentchangeslinked-feed' )
60 );
61 return array( $feed, $feedObj );
62 }
63
64 public function doMainQuery( $conds, $opts ) {
65 global $wgUser, $wgOut;
66
67 $target = $opts['target'];
68 $showlinkedto = $opts['showlinkedto'];
69 $limit = $opts['limit'];
70
71 if ( $target === '' ) {
72 return false;
73 }
74 $title = Title::newFromURL( $target );
75 if( !$title || $title->getInterwiki() != '' ){
76 $wgOut->wrapWikiMsg( "<div class=\"errorbox\">\n$1\n</div><br style=\"clear: both\" />", 'allpagesbadtitle' );
77 return false;
78 }
79
80 $wgOut->setPageTitle( wfMsg( 'recentchangeslinked-title', $title->getPrefixedText() ) );
81
82 /*
83 * Ordinary links are in the pagelinks table, while transclusions are
84 * in the templatelinks table, categorizations in categorylinks and
85 * image use in imagelinks. We need to somehow combine all these.
86 * Special:Whatlinkshere does this by firing multiple queries and
87 * merging the results, but the code we inherit from our parent class
88 * expects only one result set so we use UNION instead.
89 */
90
91 $dbr = wfGetDB( DB_SLAVE, 'recentchangeslinked' );
92 $id = $title->getArticleId();
93 $ns = $title->getNamespace();
94 $dbkey = $title->getDBkey();
95
96 $tables = array( 'recentchanges' );
97 $select = array( $dbr->tableName( 'recentchanges' ) . '.*' );
98 $join_conds = array();
99 $query_options = array();
100
101 // left join with watchlist table to highlight watched rows
102 $uid = $wgUser->getId();
103 if( $uid ) {
104 $tables[] = 'watchlist';
105 $select[] = 'wl_user';
106 $join_conds['watchlist'] = array( 'LEFT JOIN', "wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace" );
107 }
108 if ( $wgUser->isAllowed( 'rollback' ) ) {
109 $tables[] = 'page';
110 $join_conds['page'] = array('LEFT JOIN', 'rc_cur_id=page_id');
111 $select[] = 'page_latest';
112 }
113 if ( !$this->including() ) { // bug 23293
114 ChangeTags::modifyDisplayQuery( $tables, $select, $conds, $join_conds,
115 $query_options, $opts['tagfilter'] );
116 }
117
118 if ( !wfRunHooks( 'SpecialRecentChangesQuery', array( &$conds, &$tables, &$join_conds, $opts, &$query_options, &$select ) ) )
119 return false;
120
121 if( $ns == NS_CATEGORY && !$showlinkedto ) {
122 // special handling for categories
123 // XXX: should try to make this less klugy
124 $link_tables = array( 'categorylinks' );
125 $showlinkedto = true;
126 } else {
127 // for now, always join on these tables; really should be configurable as in whatlinkshere
128 $link_tables = array( 'pagelinks', 'templatelinks' );
129 // imagelinks only contains links to pages in NS_FILE
130 if( $ns == NS_FILE || !$showlinkedto ) $link_tables[] = 'imagelinks';
131 }
132
133 if( $id == 0 && !$showlinkedto )
134 return false; // nonexistent pages can't link to any pages
135
136 // field name prefixes for all the various tables we might want to join with
137 $prefix = array( 'pagelinks' => 'pl', 'templatelinks' => 'tl', 'categorylinks' => 'cl', 'imagelinks' => 'il' );
138
139 $subsql = array(); // SELECT statements to combine with UNION
140
141 foreach( $link_tables as $link_table ) {
142 $pfx = $prefix[$link_table];
143
144 // imagelinks and categorylinks tables have no xx_namespace field, and have xx_to instead of xx_title
145 if( $link_table == 'imagelinks' ) $link_ns = NS_FILE;
146 else if( $link_table == 'categorylinks' ) $link_ns = NS_CATEGORY;
147 else $link_ns = 0;
148
149 if( $showlinkedto ) {
150 // find changes to pages linking to this page
151 if( $link_ns ) {
152 if( $ns != $link_ns ) continue; // should never happen, but check anyway
153 $subconds = array( "{$pfx}_to" => $dbkey );
154 } else {
155 $subconds = array( "{$pfx}_namespace" => $ns, "{$pfx}_title" => $dbkey );
156 }
157 $subjoin = "rc_cur_id = {$pfx}_from";
158 } else {
159 // find changes to pages linked from this page
160 $subconds = array( "{$pfx}_from" => $id );
161 if( $link_table == 'imagelinks' || $link_table == 'categorylinks' ) {
162 $subconds["rc_namespace"] = $link_ns;
163 $subjoin = "rc_title = {$pfx}_to";
164 } else {
165 $subjoin = "rc_namespace = {$pfx}_namespace AND rc_title = {$pfx}_title";
166 }
167 }
168
169 if( $dbr->unionSupportsOrderAndLimit())
170 $order = array( 'ORDER BY' => 'rc_timestamp DESC' );
171 else
172 $order = array();
173
174
175 $query = $dbr->selectSQLText(
176 array_merge( $tables, array( $link_table ) ),
177 $select,
178 $conds + $subconds,
179 __METHOD__,
180 $order + $query_options,
181 $join_conds + array( $link_table => array( 'INNER JOIN', $subjoin ) )
182 );
183
184 if( $dbr->unionSupportsOrderAndLimit())
185 $query = $dbr->limitResult( $query, $limit );
186
187 $subsql[] = $query;
188 }
189
190 if( count($subsql) == 0 )
191 return false; // should never happen
192 if( count($subsql) == 1 && $dbr->unionSupportsOrderAndLimit() )
193 $sql = $subsql[0];
194 else {
195 // need to resort and relimit after union
196 $sql = $dbr->unionQueries($subsql, false).' ORDER BY rc_timestamp DESC';
197 $sql = $dbr->limitResult($sql, $limit, false);
198 }
199
200 $res = $dbr->query( $sql, __METHOD__ );
201
202 if( $res->numRows() == 0 )
203 $this->mResultEmpty = true;
204
205 return $res;
206 }
207
208 function getExtraOptions( $opts ){
209 $opts->consumeValues( array( 'showlinkedto', 'target', 'tagfilter' ) );
210 $extraOpts = array();
211 $extraOpts['namespace'] = $this->namespaceFilterForm( $opts );
212 $extraOpts['target'] = array( wfMsgHtml( 'recentchangeslinked-page' ),
213 Xml::input( 'target', 40, str_replace('_',' ',$opts['target']) ) .
214 Xml::check( 'showlinkedto', $opts['showlinkedto'], array('id' => 'showlinkedto') ) . ' ' .
215 Xml::label( wfMsg("recentchangeslinked-to"), 'showlinkedto' ) );
216 $tagFilter = ChangeTags::buildTagFilterSelector( $opts['tagfilter'] );
217 if ($tagFilter)
218 $extraOpts['tagfilter'] = $tagFilter;
219 return $extraOpts;
220 }
221
222 function getTargetTitle() {
223 if ( $this->rclTargetTitle === null ) {
224 $opts = $this->getOptions();
225 if ( isset( $opts['target'] ) && $opts['target'] !== '' ) {
226 $this->rclTargetTitle = Title::newFromText( $opts['target'] );
227 } else {
228 $this->rclTargetTitle = false;
229 }
230 }
231 return $this->rclTargetTitle;
232 }
233
234 function setTopText( OutputPage $out, FormOptions $opts ) {
235 global $wgUser;
236 $skin = $wgUser->getSkin();
237 $target = $this->getTargetTitle();
238 if( $target )
239 $out->setSubtitle( wfMsg( 'recentchangeslinked-backlink', $skin->link( $target,
240 $target->getPrefixedText(), array(), array( 'redirect' => 'no' ) ) ) );
241 }
242
243 public function getFeedQuery() {
244 $target = $this->getTargetTitle();
245 if( $target ) {
246 return "target=" . urlencode( $target->getPrefixedDBkey() );
247 } else {
248 return false;
249 }
250 }
251
252 function setBottomText( OutputPage $out, FormOptions $opts ) {
253 if( isset( $this->mResultEmpty ) && $this->mResultEmpty ){
254 $out->addWikiMsg( 'recentchangeslinked-noresult' );
255 }
256 }
257 }