Fix epic fail in r64860
[lhc/web/wiklou.git] / includes / specials / SpecialNewpages.php
1 <?php
2
3 /**
4 * implements Special:Newpages
5 * @ingroup SpecialPage
6 */
7 class SpecialNewpages extends SpecialPage {
8
9 // Stored objects
10 protected $opts, $skin;
11
12 // Some internal settings
13 protected $showNavigation = false;
14
15 public function __construct() {
16 parent::__construct( 'Newpages' );
17 $this->includable( true );
18 }
19
20 protected function setup( $par ) {
21 global $wgRequest, $wgUser, $wgEnableNewpagesUserFilter;
22
23 // Options
24 $opts = new FormOptions();
25 $this->opts = $opts; // bind
26 $opts->add( 'hideliu', false );
27 $opts->add( 'hidepatrolled', $wgUser->getBoolOption( 'newpageshidepatrolled' ) );
28 $opts->add( 'hidebots', false );
29 $opts->add( 'hideredirs', true );
30 $opts->add( 'limit', (int)$wgUser->getOption( 'rclimit' ) );
31 $opts->add( 'offset', '' );
32 $opts->add( 'namespace', '0' );
33 $opts->add( 'username', '' );
34 $opts->add( 'feed', '' );
35 $opts->add( 'tagfilter', '' );
36
37 // Set values
38 $opts->fetchValuesFromRequest( $wgRequest );
39 if ( $par ) $this->parseParams( $par );
40
41 // Validate
42 $opts->validateIntBounds( 'limit', 0, 5000 );
43 if( !$wgEnableNewpagesUserFilter ) {
44 $opts->setValue( 'username', '' );
45 }
46
47 // Store some objects
48 $this->skin = $wgUser->getSkin();
49 }
50
51 protected function parseParams( $par ) {
52 global $wgLang;
53 $bits = preg_split( '/\s*,\s*/', trim( $par ) );
54 foreach ( $bits as $bit ) {
55 if ( 'shownav' == $bit )
56 $this->showNavigation = true;
57 if ( 'hideliu' === $bit )
58 $this->opts->setValue( 'hideliu', true );
59 if ( 'hidepatrolled' == $bit )
60 $this->opts->setValue( 'hidepatrolled', true );
61 if ( 'hidebots' == $bit )
62 $this->opts->setValue( 'hidebots', true );
63 if ( 'showredirs' == $bit )
64 $this->opts->setValue( 'hideredirs', false );
65 if ( is_numeric( $bit ) )
66 $this->opts->setValue( 'limit', intval( $bit ) );
67
68 $m = array();
69 if ( preg_match( '/^limit=(\d+)$/', $bit, $m ) )
70 $this->opts->setValue( 'limit', intval($m[1]) );
71 // PG offsets not just digits!
72 if ( preg_match( '/^offset=([^=]+)$/', $bit, $m ) )
73 $this->opts->setValue( 'offset', intval($m[1]) );
74 if ( preg_match( '/^username=(.*)$/', $bit, $m ) )
75 $this->opts->setValue( 'username', $m[1] );
76 if ( preg_match( '/^namespace=(.*)$/', $bit, $m ) ) {
77 $ns = $wgLang->getNsIndex( $m[1] );
78 if( $ns !== false ) {
79 $this->opts->setValue( 'namespace', $ns );
80 }
81 }
82 }
83 }
84
85 /**
86 * Show a form for filtering namespace and username
87 *
88 * @param string $par
89 * @return string
90 */
91 public function execute( $par ) {
92 global $wgLang, $wgOut;
93
94 $this->setHeaders();
95 $this->outputHeader();
96
97 $this->showNavigation = !$this->including(); // Maybe changed in setup
98 $this->setup( $par );
99
100 if( !$this->including() ) {
101 // Settings
102 $this->form();
103
104 $this->setSyndicated();
105 $feedType = $this->opts->getValue( 'feed' );
106 if( $feedType ) {
107 return $this->feed( $feedType );
108 }
109 }
110
111 $pager = new NewPagesPager( $this, $this->opts );
112 $pager->mLimit = $this->opts->getValue( 'limit' );
113 $pager->mOffset = $this->opts->getValue( 'offset' );
114
115 if( $pager->getNumRows() ) {
116 $navigation = '';
117 if ( $this->showNavigation ) $navigation = $pager->getNavigationBar();
118 $wgOut->addHTML( $navigation . $pager->getBody() . $navigation );
119 } else {
120 $wgOut->addWikiMsg( 'specialpage-empty' );
121 }
122 }
123
124 protected function filterLinks() {
125 global $wgGroupPermissions, $wgUser, $wgLang;
126
127 // show/hide links
128 $showhide = array( wfMsgHtml( 'show' ), wfMsgHtml( 'hide' ) );
129
130 // Option value -> message mapping
131 $filters = array(
132 'hideliu' => 'rcshowhideliu',
133 'hidepatrolled' => 'rcshowhidepatr',
134 'hidebots' => 'rcshowhidebots',
135 'hideredirs' => 'whatlinkshere-hideredirs'
136 );
137
138 // Disable some if needed
139 # FIXME: throws E_NOTICEs if not set; and doesn't obey hooks etc
140 if ( $wgGroupPermissions['*']['createpage'] !== true )
141 unset($filters['hideliu']);
142
143 if ( !$wgUser->useNPPatrol() )
144 unset($filters['hidepatrolled']);
145
146 $links = array();
147 $changed = $this->opts->getChangedValues();
148 unset($changed['offset']); // Reset offset if query type changes
149
150 $self = $this->getTitle();
151 foreach ( $filters as $key => $msg ) {
152 $onoff = 1 - $this->opts->getValue($key);
153 $link = $this->skin->link( $self, $showhide[$onoff], array(),
154 array( $key => $onoff ) + $changed
155 );
156 $links[$key] = wfMsgHtml( $msg, $link );
157 }
158
159 return $wgLang->pipeList( $links );
160 }
161
162 protected function form() {
163 global $wgOut, $wgEnableNewpagesUserFilter, $wgScript;
164
165 // Consume values
166 $this->opts->consumeValue( 'offset' ); // don't carry offset, DWIW
167 $namespace = $this->opts->consumeValue( 'namespace' );
168 $username = $this->opts->consumeValue( 'username' );
169 $tagFilterVal = $this->opts->consumeValue( 'tagfilter' );
170
171 // Check username input validity
172 $ut = Title::makeTitleSafe( NS_USER, $username );
173 $userText = $ut ? $ut->getText() : '';
174
175 // Store query values in hidden fields so that form submission doesn't lose them
176 $hidden = array();
177 foreach ( $this->opts->getUnconsumedValues() as $key => $value ) {
178 $hidden[] = Xml::hidden( $key, $value );
179 }
180 $hidden = implode( "\n", $hidden );
181
182 $tagFilter = ChangeTags::buildTagFilterSelector( $tagFilterVal );
183 if ($tagFilter)
184 list( $tagFilterLabel, $tagFilterSelector ) = $tagFilter;
185
186 $form = Xml::openElement( 'form', array( 'action' => $wgScript ) ) .
187 Xml::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) .
188 Xml::fieldset( wfMsg( 'newpages' ) ) .
189 Xml::openElement( 'table', array( 'id' => 'mw-newpages-table' ) ) .
190 "<tr>
191 <td class='mw-label'>" .
192 Xml::label( wfMsg( 'namespace' ), 'namespace' ) .
193 "</td>
194 <td class='mw-input'>" .
195 Xml::namespaceSelector( $namespace, 'all' ) .
196 "</td>
197 </tr>" . ( $tagFilter ? (
198 "<tr>
199 <td class='mw-label'>" .
200 $tagFilterLabel .
201 "</td>
202 <td class='mw-input'>" .
203 $tagFilterSelector .
204 "</td>
205 </tr>" ) : '' ) .
206 ($wgEnableNewpagesUserFilter ?
207 "<tr>
208 <td class='mw-label'>" .
209 Xml::label( wfMsg( 'newpages-username' ), 'mw-np-username' ) .
210 "</td>
211 <td class='mw-input'>" .
212 Xml::input( 'username', 30, $userText, array( 'id' => 'mw-np-username' ) ) .
213 "</td>
214 </tr>" : "" ) .
215 "<tr> <td></td>
216 <td class='mw-submit'>" .
217 Xml::submitButton( wfMsg( 'allpagessubmit' ) ) .
218 "</td>
219 </tr>" .
220 "<tr>
221 <td></td>
222 <td class='mw-input'>" .
223 $this->filterLinks() .
224 "</td>
225 </tr>" .
226 Xml::closeElement( 'table' ) .
227 Xml::closeElement( 'fieldset' ) .
228 $hidden .
229 Xml::closeElement( 'form' );
230
231 $wgOut->addHTML( $form );
232 }
233
234 protected function setSyndicated() {
235 global $wgOut;
236 $wgOut->setSyndicated( true );
237 $wgOut->setFeedAppendQuery( wfArrayToCGI( $this->opts->getAllValues() ) );
238 }
239
240 /**
241 * Format a row, providing the timestamp, links to the page/history, size, user links, and a comment
242 *
243 * @param $skin Skin to use
244 * @param $result Result row
245 * @return string
246 */
247 public function formatRow( $result ) {
248 global $wgLang, $wgContLang;
249
250 $classes = array();
251
252 $dm = $wgContLang->getDirMark();
253
254 $title = Title::makeTitleSafe( $result->rc_namespace, $result->rc_title );
255 $time = htmlspecialchars( $wgLang->timeAndDate( $result->rc_timestamp, true ) );
256
257 $query = array( 'redirect' => 'no' );
258
259 if( $this->patrollable( $result ) )
260 $query['rcid'] = $result->rc_id;
261
262 $plink = $this->skin->linkKnown(
263 $title,
264 null,
265 array(),
266 $query
267 );
268 $hist = $this->skin->linkKnown(
269 $title,
270 wfMsgHtml( 'hist' ),
271 array(),
272 array( 'action' => 'history' )
273 );
274 $length = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
275 $wgLang->formatNum( $result->length ) );
276 $ulink = $this->skin->userLink( $result->rc_user, $result->rc_user_text ) . ' ' .
277 $this->skin->userToolLinks( $result->rc_user, $result->rc_user_text );
278 $comment = $this->skin->commentBlock( $result->rc_comment );
279
280 if ( $this->patrollable( $result ) )
281 $classes[] = 'not-patrolled';
282
283 # Tags, if any.
284 list( $tagDisplay, $newClasses ) = ChangeTags::formatSummaryRow( $result->ts_tags, 'newpages' );
285 $classes = array_merge( $classes, $newClasses );
286
287 $css = count($classes) ? ' class="'.implode( " ", $classes).'"' : '';
288
289 return "<li{$css}>{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment} {$tagDisplay}</li>\n";
290 }
291
292 /**
293 * Should a specific result row provide "patrollable" links?
294 *
295 * @param $result Result row
296 * @return bool
297 */
298 protected function patrollable( $result ) {
299 global $wgUser;
300 return ( $wgUser->useNPPatrol() && !$result->rc_patrolled );
301 }
302
303 /**
304 * Output a subscription feed listing recent edits to this page.
305 * @param string $type
306 */
307 protected function feed( $type ) {
308 global $wgFeed, $wgFeedClasses, $wgFeedLimit;
309
310 if ( !$wgFeed ) {
311 global $wgOut;
312 $wgOut->addWikiMsg( 'feed-unavailable' );
313 return;
314 }
315
316 if( !isset( $wgFeedClasses[$type] ) ) {
317 global $wgOut;
318 $wgOut->addWikiMsg( 'feed-invalid' );
319 return;
320 }
321
322 $feed = new $wgFeedClasses[$type](
323 $this->feedTitle(),
324 wfMsgExt( 'tagline', 'parsemag' ),
325 $this->getTitle()->getFullUrl() );
326
327 $pager = new NewPagesPager( $this, $this->opts );
328 $limit = $this->opts->getValue( 'limit' );
329 $pager->mLimit = min( $limit, $wgFeedLimit );
330
331 $feed->outHeader();
332 if( $pager->getNumRows() > 0 ) {
333 while( $row = $pager->mResult->fetchObject() ) {
334 $feed->outItem( $this->feedItem( $row ) );
335 }
336 }
337 $feed->outFooter();
338 }
339
340 protected function feedTitle() {
341 global $wgContLanguageCode, $wgSitename;
342 $page = SpecialPage::getPage( 'Newpages' );
343 $desc = $page->getDescription();
344 return "$wgSitename - $desc [$wgContLanguageCode]";
345 }
346
347 protected function feedItem( $row ) {
348 $title = Title::MakeTitle( intval( $row->rc_namespace ), $row->rc_title );
349 if( $title ) {
350 $date = $row->rc_timestamp;
351 $comments = $title->getTalkPage()->getFullURL();
352
353 return new FeedItem(
354 $title->getPrefixedText(),
355 $this->feedItemDesc( $row ),
356 $title->getFullURL(),
357 $date,
358 $this->feedItemAuthor( $row ),
359 $comments);
360 } else {
361 return null;
362 }
363 }
364
365 protected function feedItemAuthor( $row ) {
366 return isset( $row->rc_user_text ) ? $row->rc_user_text : '';
367 }
368
369 protected function feedItemDesc( $row ) {
370 $revision = Revision::newFromId( $row->rev_id );
371 if( $revision ) {
372 return '<p>' . htmlspecialchars( $revision->getUserText() ) . wfMsgForContent( 'colon-separator' ) .
373 htmlspecialchars( FeedItem::stripComment( $revision->getComment() ) ) .
374 "</p>\n<hr />\n<div>" .
375 nl2br( htmlspecialchars( $revision->getText() ) ) . "</div>";
376 }
377 return '';
378 }
379 }
380
381 /**
382 * @ingroup SpecialPage Pager
383 */
384 class NewPagesPager extends ReverseChronologicalPager {
385 // Stored opts
386 protected $opts, $mForm;
387
388 function __construct( $form, FormOptions $opts ) {
389 parent::__construct();
390 $this->mForm = $form;
391 $this->opts = $opts;
392 }
393
394 function getTitle() {
395 static $title = null;
396 if ( $title === null )
397 $title = $this->mForm->getTitle();
398 return $title;
399 }
400
401 function getQueryInfo() {
402 global $wgEnableNewpagesUserFilter, $wgGroupPermissions, $wgUser;
403 $conds = array();
404 $conds['rc_new'] = 1;
405
406 $namespace = $this->opts->getValue( 'namespace' );
407 $namespace = ( $namespace === 'all' ) ? false : intval( $namespace );
408
409 $username = $this->opts->getValue( 'username' );
410 $user = Title::makeTitleSafe( NS_USER, $username );
411
412 if( $namespace !== false ) {
413 $conds['rc_namespace'] = $namespace;
414 $rcIndexes = array( 'new_name_timestamp' );
415 } else {
416 $rcIndexes = array( 'rc_timestamp' );
417 }
418
419 # $wgEnableNewpagesUserFilter - temp WMF hack
420 if( $wgEnableNewpagesUserFilter && $user ) {
421 $conds['rc_user_text'] = $user->getText();
422 $rcIndexes = 'rc_user_text';
423 # If anons cannot make new pages, don't "exclude logged in users"!
424 } elseif( $wgGroupPermissions['*']['createpage'] && $this->opts->getValue( 'hideliu' ) ) {
425 $conds['rc_user'] = 0;
426 }
427 # If this user cannot see patrolled edits or they are off, don't do dumb queries!
428 if( $this->opts->getValue( 'hidepatrolled' ) && $wgUser->useNPPatrol() ) {
429 $conds['rc_patrolled'] = 0;
430 }
431 if( $this->opts->getValue( 'hidebots' ) ) {
432 $conds['rc_bot'] = 0;
433 }
434
435 if ( $this->opts->getValue( 'hideredirs' ) ) {
436 $conds['page_is_redirect'] = 0;
437 }
438
439 $info = array(
440 'tables' => array( 'recentchanges', 'page' ),
441 'fields' => 'rc_namespace,rc_title, rc_cur_id, rc_user,rc_user_text,rc_comment,
442 rc_timestamp,rc_patrolled,rc_id,page_len as length, page_latest as rev_id, ts_tags',
443 'conds' => $conds,
444 'options' => array( 'USE INDEX' => array('recentchanges' => $rcIndexes) ),
445 'join_conds' => array(
446 'page' => array('INNER JOIN', 'page_id=rc_cur_id'),
447 ),
448 );
449
450 ## Empty array for fields, it'll be set by us anyway.
451 $fields = array();
452
453 ## Modify query for tags
454 ChangeTags::modifyDisplayQuery( $info['tables'],
455 $fields,
456 $info['conds'],
457 $info['join_conds'],
458 $info['options'],
459 $this->opts['tagfilter'] );
460
461 return $info;
462 }
463
464 function getIndexField() {
465 return 'rc_timestamp';
466 }
467
468 function formatRow( $row ) {
469 return $this->mForm->formatRow( $row );
470 }
471
472 function getStartBody() {
473 # Do a batch existence check on pages
474 $linkBatch = new LinkBatch();
475 while( $row = $this->mResult->fetchObject() ) {
476 $linkBatch->add( NS_USER, $row->rc_user_text );
477 $linkBatch->add( NS_USER_TALK, $row->rc_user_text );
478 $linkBatch->add( $row->rc_namespace, $row->rc_title );
479 }
480 $linkBatch->execute();
481 return "<ul>";
482 }
483
484 function getEndBody() {
485 return "</ul>";
486 }
487 }