* replace use of deprecated makeKnownLinkObj() by linkKnown() in core special pages
[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, $wgUser, $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 if ( $wgGroupPermissions['*']['createpage'] !== true )
140 unset($filters['hideliu']);
141
142 if ( !$wgUser->useNPPatrol() )
143 unset($filters['hidepatrolled']);
144
145 $links = array();
146 $changed = $this->opts->getChangedValues();
147 unset($changed['offset']); // Reset offset if query type changes
148
149 $self = $this->getTitle();
150 foreach ( $filters as $key => $msg ) {
151 $onoff = 1 - $this->opts->getValue($key);
152 $link = $this->skin->link( $self, $showhide[$onoff], array(),
153 array( $key => $onoff ) + $changed
154 );
155 $links[$key] = wfMsgHtml( $msg, $link );
156 }
157
158 return $wgLang->pipeList( $links );
159 }
160
161 protected function form() {
162 global $wgOut, $wgEnableNewpagesUserFilter, $wgScript;
163
164 // Consume values
165 $this->opts->consumeValue( 'offset' ); // don't carry offset, DWIW
166 $namespace = $this->opts->consumeValue( 'namespace' );
167 $username = $this->opts->consumeValue( 'username' );
168
169 // Check username input validity
170 $ut = Title::makeTitleSafe( NS_USER, $username );
171 $userText = $ut ? $ut->getText() : '';
172
173 // Store query values in hidden fields so that form submission doesn't lose them
174 $hidden = array();
175 foreach ( $this->opts->getUnconsumedValues() as $key => $value ) {
176 $hidden[] = Xml::hidden( $key, $value );
177 }
178 $hidden = implode( "\n", $hidden );
179
180 $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagfilter'] );
181 if ($tagFilter)
182 list( $tagFilterLabel, $tagFilterSelector ) = $tagFilter;
183
184 $form = Xml::openElement( 'form', array( 'action' => $wgScript ) ) .
185 Xml::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) .
186 Xml::fieldset( wfMsg( 'newpages' ) ) .
187 Xml::openElement( 'table', array( 'id' => 'mw-newpages-table' ) ) .
188 "<tr>
189 <td class='mw-label'>" .
190 Xml::label( wfMsg( 'namespace' ), 'namespace' ) .
191 "</td>
192 <td class='mw-input'>" .
193 Xml::namespaceSelector( $namespace, 'all' ) .
194 "</td>
195 </tr>" . ( $tagFilter ? (
196 "<tr>
197 <td class='mw-label'>" .
198 $tagFilterLabel .
199 "</td>
200 <td class='mw-input'>" .
201 $tagFilterSelector .
202 "</td>
203 </tr>" ) : '' ) .
204 ($wgEnableNewpagesUserFilter ?
205 "<tr>
206 <td class='mw-label'>" .
207 Xml::label( wfMsg( 'newpages-username' ), 'mw-np-username' ) .
208 "</td>
209 <td class='mw-input'>" .
210 Xml::input( 'username', 30, $userText, array( 'id' => 'mw-np-username' ) ) .
211 "</td>
212 </tr>" : "" ) .
213 "<tr> <td></td>
214 <td class='mw-submit'>" .
215 Xml::submitButton( wfMsg( 'allpagessubmit' ) ) .
216 "</td>
217 </tr>" .
218 "<tr>
219 <td></td>
220 <td class='mw-input'>" .
221 $this->filterLinks() .
222 "</td>
223 </tr>" .
224 Xml::closeElement( 'table' ) .
225 Xml::closeElement( 'fieldset' ) .
226 $hidden .
227 Xml::closeElement( 'form' );
228
229 $wgOut->addHTML( $form );
230 }
231
232 protected function setSyndicated() {
233 global $wgOut;
234 $queryParams = array(
235 'namespace' => $this->opts->getValue( 'namespace' ),
236 'username' => $this->opts->getValue( 'username' )
237 );
238 $wgOut->setSyndicated( true );
239 $wgOut->setFeedAppendQuery( wfArrayToCGI( $queryParams ) );
240 }
241
242 /**
243 * Format a row, providing the timestamp, links to the page/history, size, user links, and a comment
244 *
245 * @param $skin Skin to use
246 * @param $result Result row
247 * @return string
248 */
249 public function formatRow( $result ) {
250 global $wgLang, $wgContLang;
251
252 $classes = array();
253
254 $dm = $wgContLang->getDirMark();
255
256 $title = Title::makeTitleSafe( $result->rc_namespace, $result->rc_title );
257 $time = htmlspecialchars( $wgLang->timeAndDate( $result->rc_timestamp, true ) );
258
259 $query = array( 'redirect' => 'no' );
260
261 if( $this->patrollable( $result ) )
262 $query['rcid'] = $result->rc_id;
263
264 $plink = $this->skin->linkKnown(
265 $title,
266 null,
267 array(),
268 $query
269 );
270 $hist = $this->skin->linkKnown(
271 $title,
272 wfMsgHtml( 'hist' ),
273 array(),
274 array( 'action' => 'history' )
275 );
276 $length = wfMsgExt( 'nbytes', array( 'parsemag', 'escape' ),
277 $wgLang->formatNum( $result->length ) );
278 $ulink = $this->skin->userLink( $result->rc_user, $result->rc_user_text ) . ' ' .
279 $this->skin->userToolLinks( $result->rc_user, $result->rc_user_text );
280 $comment = $this->skin->commentBlock( $result->rc_comment );
281
282 if ( $this->patrollable( $result ) )
283 $classes[] = 'not-patrolled';
284
285 # Tags, if any.
286 list( $tagDisplay, $newClasses ) = ChangeTags::formatSummaryRow( $result->ts_tags, 'newpages' );
287 $classes = array_merge( $classes, $newClasses );
288
289 $css = count($classes) ? ' class="'.implode( " ", $classes).'"' : '';
290
291 return "<li{$css}>{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment} {$tagDisplay}</li>\n";
292 }
293
294 /**
295 * Should a specific result row provide "patrollable" links?
296 *
297 * @param $result Result row
298 * @return bool
299 */
300 protected function patrollable( $result ) {
301 global $wgUser;
302 return ( $wgUser->useNPPatrol() && !$result->rc_patrolled );
303 }
304
305 /**
306 * Output a subscription feed listing recent edits to this page.
307 * @param string $type
308 */
309 protected function feed( $type ) {
310 global $wgFeed, $wgFeedClasses, $wgFeedLimit;
311
312 if ( !$wgFeed ) {
313 global $wgOut;
314 $wgOut->addWikiMsg( 'feed-unavailable' );
315 return;
316 }
317
318 if( !isset( $wgFeedClasses[$type] ) ) {
319 global $wgOut;
320 $wgOut->addWikiMsg( 'feed-invalid' );
321 return;
322 }
323
324 $feed = new $wgFeedClasses[$type](
325 $this->feedTitle(),
326 wfMsgExt( 'tagline', 'parsemag' ),
327 $this->getTitle()->getFullUrl() );
328
329 $pager = new NewPagesPager( $this, $this->opts );
330 $limit = $this->opts->getValue( 'limit' );
331 $pager->mLimit = min( $limit, $wgFeedLimit );
332
333 $feed->outHeader();
334 if( $pager->getNumRows() > 0 ) {
335 while( $row = $pager->mResult->fetchObject() ) {
336 $feed->outItem( $this->feedItem( $row ) );
337 }
338 }
339 $feed->outFooter();
340 }
341
342 protected function feedTitle() {
343 global $wgContLanguageCode, $wgSitename;
344 $page = SpecialPage::getPage( 'Newpages' );
345 $desc = $page->getDescription();
346 return "$wgSitename - $desc [$wgContLanguageCode]";
347 }
348
349 protected function feedItem( $row ) {
350 $title = Title::MakeTitle( intval( $row->rc_namespace ), $row->rc_title );
351 if( $title ) {
352 $date = $row->rc_timestamp;
353 $comments = $title->getTalkPage()->getFullURL();
354
355 return new FeedItem(
356 $title->getPrefixedText(),
357 $this->feedItemDesc( $row ),
358 $title->getFullURL(),
359 $date,
360 $this->feedItemAuthor( $row ),
361 $comments);
362 } else {
363 return NULL;
364 }
365 }
366
367 protected function feedItemAuthor( $row ) {
368 return isset( $row->rc_user_text ) ? $row->rc_user_text : '';
369 }
370
371 protected function feedItemDesc( $row ) {
372 $revision = Revision::newFromId( $row->rev_id );
373 if( $revision ) {
374 return '<p>' . htmlspecialchars( $revision->getUserText() ) . wfMsgForContent( 'colon-separator' ) .
375 htmlspecialchars( FeedItem::stripComment( $revision->getComment() ) ) .
376 "</p>\n<hr />\n<div>" .
377 nl2br( htmlspecialchars( $revision->getText() ) ) . "</div>";
378 }
379 return '';
380 }
381 }
382
383 /**
384 * @ingroup SpecialPage Pager
385 */
386 class NewPagesPager extends ReverseChronologicalPager {
387 // Stored opts
388 protected $opts, $mForm;
389
390 function __construct( $form, FormOptions $opts ) {
391 parent::__construct();
392 $this->mForm = $form;
393 $this->opts = $opts;
394 }
395
396 function getTitle() {
397 static $title = null;
398 if ( $title === null )
399 $title = $this->mForm->getTitle();
400 return $title;
401 }
402
403 function getQueryInfo() {
404 global $wgEnableNewpagesUserFilter, $wgGroupPermissions, $wgUser;
405 $conds = array();
406 $conds['rc_new'] = 1;
407
408 $namespace = $this->opts->getValue( 'namespace' );
409 $namespace = ( $namespace === 'all' ) ? false : intval( $namespace );
410
411 $username = $this->opts->getValue( 'username' );
412 $user = Title::makeTitleSafe( NS_USER, $username );
413
414 if( $namespace !== false ) {
415 $conds['rc_namespace'] = $namespace;
416 $rcIndexes = array( 'new_name_timestamp' );
417 } else {
418 $rcIndexes = array( 'rc_timestamp' );
419 }
420
421 # $wgEnableNewpagesUserFilter - temp WMF hack
422 if( $wgEnableNewpagesUserFilter && $user ) {
423 $conds['rc_user_text'] = $user->getText();
424 $rcIndexes = 'rc_user_text';
425 # If anons cannot make new pages, don't "exclude logged in users"!
426 } elseif( $wgGroupPermissions['*']['createpage'] && $this->opts->getValue( 'hideliu' ) ) {
427 $conds['rc_user'] = 0;
428 }
429 # If this user cannot see patrolled edits or they are off, don't do dumb queries!
430 if( $this->opts->getValue( 'hidepatrolled' ) && $wgUser->useNPPatrol() ) {
431 $conds['rc_patrolled'] = 0;
432 }
433 if( $this->opts->getValue( 'hidebots' ) ) {
434 $conds['rc_bot'] = 0;
435 }
436
437 if ( $this->opts->getValue( 'hideredirs' ) ) {
438 $conds['page_is_redirect'] = 0;
439 }
440
441 $info = array(
442 'tables' => array( 'recentchanges', 'page' ),
443 'fields' => 'rc_namespace,rc_title, rc_cur_id, rc_user,rc_user_text,rc_comment,
444 rc_timestamp,rc_patrolled,rc_id,page_len as length, page_latest as rev_id, ts_tags',
445 'conds' => $conds,
446 'options' => array( 'USE INDEX' => array('recentchanges' => $rcIndexes) ),
447 'join_conds' => array(
448 'page' => array('INNER JOIN', 'page_id=rc_cur_id'),
449 ),
450 );
451
452 ## Empty array for fields, it'll be set by us anyway.
453 $fields = array();
454
455 ## Modify query for tags
456 ChangeTags::modifyDisplayQuery( $info['tables'],
457 $fields,
458 $info['conds'],
459 $info['join_conds'],
460 $info['options'],
461 $this->opts['tagfilter'] );
462
463 return $info;
464 }
465
466 function getIndexField() {
467 return 'rc_timestamp';
468 }
469
470 function formatRow( $row ) {
471 return $this->mForm->formatRow( $row );
472 }
473
474 function getStartBody() {
475 # Do a batch existence check on pages
476 $linkBatch = new LinkBatch();
477 while( $row = $this->mResult->fetchObject() ) {
478 $linkBatch->add( NS_USER, $row->rc_user_text );
479 $linkBatch->add( NS_USER_TALK, $row->rc_user_text );
480 $linkBatch->add( $row->rc_namespace, $row->rc_title );
481 }
482 $linkBatch->execute();
483 return "<ul>";
484 }
485
486 function getEndBody() {
487 return "</ul>";
488 }
489 }