3 * Implements Special:Newpages
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.
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.
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
21 * @ingroup SpecialPage
25 * A special page that list newly created pages
27 * @ingroup SpecialPage
29 class SpecialNewpages
extends IncludableSpecialPage
{
34 protected $customFilters;
36 protected $showNavigation = false;
38 public function __construct() {
39 parent
::__construct( 'Newpages' );
42 protected function setup( $par ) {
44 $opts = new FormOptions();
45 $this->opts
= $opts; // bind
46 $opts->add( 'hideliu', false );
47 $opts->add( 'hidepatrolled', $this->getUser()->getBoolOption( 'newpageshidepatrolled' ) );
48 $opts->add( 'hidebots', false );
49 $opts->add( 'hideredirs', true );
50 $opts->add( 'limit', $this->getUser()->getIntOption( 'rclimit' ) );
51 $opts->add( 'offset', '' );
52 $opts->add( 'namespace', '0' );
53 $opts->add( 'username', '' );
54 $opts->add( 'feed', '' );
55 $opts->add( 'tagfilter', '' );
56 $opts->add( 'invert', false );
58 $this->customFilters
= array();
59 wfRunHooks( 'SpecialNewPagesFilters', array( $this, &$this->customFilters
) );
60 foreach ( $this->customFilters
as $key => $params ) {
61 $opts->add( $key, $params['default'] );
65 $opts->fetchValuesFromRequest( $this->getRequest() );
67 $this->parseParams( $par );
71 $opts->validateIntBounds( 'limit', 0, 5000 );
74 protected function parseParams( $par ) {
75 $bits = preg_split( '/\s*,\s*/', trim( $par ) );
76 foreach ( $bits as $bit ) {
77 if ( 'shownav' == $bit ) {
78 $this->showNavigation
= true;
80 if ( 'hideliu' === $bit ) {
81 $this->opts
->setValue( 'hideliu', true );
83 if ( 'hidepatrolled' == $bit ) {
84 $this->opts
->setValue( 'hidepatrolled', true );
86 if ( 'hidebots' == $bit ) {
87 $this->opts
->setValue( 'hidebots', true );
89 if ( 'showredirs' == $bit ) {
90 $this->opts
->setValue( 'hideredirs', false );
92 if ( is_numeric( $bit ) ) {
93 $this->opts
->setValue( 'limit', intval( $bit ) );
97 if ( preg_match( '/^limit=(\d+)$/', $bit, $m ) ) {
98 $this->opts
->setValue( 'limit', intval( $m[1] ) );
100 // PG offsets not just digits!
101 if ( preg_match( '/^offset=([^=]+)$/', $bit, $m ) ) {
102 $this->opts
->setValue( 'offset', intval( $m[1] ) );
104 if ( preg_match( '/^username=(.*)$/', $bit, $m ) ) {
105 $this->opts
->setValue( 'username', $m[1] );
107 if ( preg_match( '/^namespace=(.*)$/', $bit, $m ) ) {
108 $ns = $this->getLanguage()->getNsIndex( $m[1] );
109 if ( $ns !== false ) {
110 $this->opts
->setValue( 'namespace', $ns );
117 * Show a form for filtering namespace and username
121 public function execute( $par ) {
122 $out = $this->getOutput();
125 $this->outputHeader();
127 $this->showNavigation
= !$this->including(); // Maybe changed in setup
128 $this->setup( $par );
130 if ( !$this->including() ) {
134 $feedType = $this->opts
->getValue( 'feed' );
136 $this->feed( $feedType );
141 $allValues = $this->opts
->getAllValues();
142 unset( $allValues['feed'] );
143 $out->setFeedAppendQuery( wfArrayToCgi( $allValues ) );
146 $pager = new NewPagesPager( $this, $this->opts
);
147 $pager->mLimit
= $this->opts
->getValue( 'limit' );
148 $pager->mOffset
= $this->opts
->getValue( 'offset' );
150 if ( $pager->getNumRows() ) {
152 if ( $this->showNavigation
) {
153 $navigation = $pager->getNavigationBar();
155 $out->addHTML( $navigation . $pager->getBody() . $navigation );
157 $out->addWikiMsg( 'specialpage-empty' );
161 protected function filterLinks() {
163 $showhide = array( $this->msg( 'show' )->escaped(), $this->msg( 'hide' )->escaped() );
165 // Option value -> message mapping
167 'hideliu' => 'rcshowhideliu',
168 'hidepatrolled' => 'rcshowhidepatr',
169 'hidebots' => 'rcshowhidebots',
170 'hideredirs' => 'whatlinkshere-hideredirs'
172 foreach ( $this->customFilters
as $key => $params ) {
173 $filters[$key] = $params['msg'];
176 // Disable some if needed
177 if ( !User
::groupHasPermission( '*', 'createpage' ) ) {
178 unset( $filters['hideliu'] );
180 if ( !$this->getUser()->useNPPatrol() ) {
181 unset( $filters['hidepatrolled'] );
185 $changed = $this->opts
->getChangedValues();
186 unset( $changed['offset'] ); // Reset offset if query type changes
188 $self = $this->getPageTitle();
189 foreach ( $filters as $key => $msg ) {
190 $onoff = 1 - $this->opts
->getValue( $key );
191 $link = Linker
::link( $self, $showhide[$onoff], array(),
192 array( $key => $onoff ) +
$changed
194 $links[$key] = $this->msg( $msg )->rawParams( $link )->escaped();
197 return $this->getLanguage()->pipeList( $links );
200 protected function form() {
201 $out = $this->getOutput();
203 $this->opts
->consumeValue( 'offset' ); // don't carry offset, DWIW
204 $namespace = $this->opts
->consumeValue( 'namespace' );
205 $username = $this->opts
->consumeValue( 'username' );
206 $tagFilterVal = $this->opts
->consumeValue( 'tagfilter' );
207 $nsinvert = $this->opts
->consumeValue( 'invert' );
209 // Check username input validity
210 $ut = Title
::makeTitleSafe( NS_USER
, $username );
211 $userText = $ut ?
$ut->getText() : '';
213 // Store query values in hidden fields so that form submission doesn't lose them
215 foreach ( $this->opts
->getUnconsumedValues() as $key => $value ) {
216 $hidden[] = Html
::hidden( $key, $value );
218 $hidden = implode( "\n", $hidden );
221 'namespace' => array(
222 'type' => 'namespaceselect',
223 'name' => 'namespace',
224 'label-message' => 'namespace',
225 'default' => $namespace,
229 'name' => 'nsinvert',
230 'label-message' => 'invert',
231 'default' => $nsinvert,
232 'tooltip' => $this->msg( 'tooltip-invert' )->text(),
234 'tagFilter' => array(
235 'type' => 'tagfilter',
236 'name' => 'tagfilter',
237 'label-raw' => wfMessage( 'tag-filter' )->parse(),
238 'default' => $tagFilterVal,
242 'name' => 'username',
243 'label-message' => 'newpages-username',
244 'default' => $userText,
245 'id' => 'mw-np-username',
247 'cssclass' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
251 $htmlForm = new HTMLForm( $form, $this->getContext() );
253 $htmlForm->setSubmitText( $this->msg( 'allpagessubmit' )->text() );
254 $htmlForm->setSubmitProgressive();
255 // The form should be visible on each request (inclusive requests with submitted forms), so
256 // return always false here.
257 $htmlForm->setSubmitCallback(
262 $htmlForm->setMethod( 'get' );
264 $out->addHtml( Xml
::fieldset( $this->msg( 'newpages' )->text() ) );
274 Xml
::closeElement( 'fieldset' )
279 * Format a row, providing the timestamp, links to the page/history,
280 * size, user links, and a comment
282 * @param object $result Result row
285 public function formatRow( $result ) {
286 $title = Title
::newFromRow( $result );
288 # Revision deletion works on revisions, so we should cast one
290 'comment' => $result->rc_comment
,
291 'deleted' => $result->rc_deleted
,
292 'user_text' => $result->rc_user_text
,
293 'user' => $result->rc_user
,
295 $rev = new Revision( $row );
296 $rev->setTitle( $title );
300 $lang = $this->getLanguage();
301 $dm = $lang->getDirMark();
303 $spanTime = Html
::element( 'span', array( 'class' => 'mw-newpages-time' ),
304 $lang->userTimeAndDate( $result->rc_timestamp
, $this->getUser() )
306 $time = Linker
::linkKnown(
310 array( 'oldid' => $result->rc_this_oldid
),
314 $query = array( 'redirect' => 'no' );
316 // Linker::linkKnown() uses 'known' and 'noclasses' options.
317 // This breaks the colouration for stubs.
318 $plink = Linker
::link(
321 array( 'class' => 'mw-newpages-pagename' ),
325 $histLink = Linker
::linkKnown(
327 $this->msg( 'hist' )->escaped(),
329 array( 'action' => 'history' )
331 $hist = Html
::rawElement( 'span', array( 'class' => 'mw-newpages-history' ),
332 $this->msg( 'parentheses' )->rawParams( $histLink )->escaped() );
334 $length = Html
::element(
336 array( 'class' => 'mw-newpages-length' ),
337 $this->msg( 'brackets' )->params( $this->msg( 'nbytes' )
338 ->numParams( $result->length
)->text()
342 $ulink = Linker
::revUserTools( $rev );
343 $comment = Linker
::revComment( $rev );
345 if ( $this->patrollable( $result ) ) {
346 $classes[] = 'not-patrolled';
349 # Add a class for zero byte pages
350 if ( $result->length
== 0 ) {
351 $classes[] = 'mw-newpages-zero-byte-page';
355 if ( isset( $result->ts_tags
) ) {
356 list( $tagDisplay, $newClasses ) = ChangeTags
::formatSummaryRow(
360 $classes = array_merge( $classes, $newClasses );
365 $css = count( $classes ) ?
' class="' . implode( ' ', $classes ) . '"' : '';
367 # Display the old title if the namespace/title has been changed
369 $oldTitle = Title
::makeTitle( $result->rc_namespace
, $result->rc_title
);
371 if ( !$title->equals( $oldTitle ) ) {
372 $oldTitleText = $oldTitle->getPrefixedText();
373 $oldTitleText = $this->msg( 'rc-old-title' )->params( $oldTitleText )->escaped();
376 return "<li{$css}>{$time} {$dm}{$plink} {$hist} {$dm}{$length} "
377 . "{$dm}{$ulink} {$comment} {$tagDisplay} {$oldTitleText}</li>\n";
381 * Should a specific result row provide "patrollable" links?
383 * @param object $result Result row
386 protected function patrollable( $result ) {
387 return ( $this->getUser()->useNPPatrol() && !$result->rc_patrolled
);
391 * Output a subscription feed listing recent edits to this page.
393 * @param string $type
395 protected function feed( $type ) {
396 if ( !$this->getConfig()->get( 'Feed' ) ) {
397 $this->getOutput()->addWikiMsg( 'feed-unavailable' );
402 $feedClasses = $this->getConfig()->get( 'FeedClasses' );
403 if ( !isset( $feedClasses[$type] ) ) {
404 $this->getOutput()->addWikiMsg( 'feed-invalid' );
409 $feed = new $feedClasses[$type](
411 $this->msg( 'tagline' )->text(),
412 $this->getPageTitle()->getFullURL()
415 $pager = new NewPagesPager( $this, $this->opts
);
416 $limit = $this->opts
->getValue( 'limit' );
417 $pager->mLimit
= min( $limit, $this->getConfig()->get( 'FeedLimit' ) );
420 if ( $pager->getNumRows() > 0 ) {
421 foreach ( $pager->mResult
as $row ) {
422 $feed->outItem( $this->feedItem( $row ) );
428 protected function feedTitle() {
429 $desc = $this->getDescription();
430 $code = $this->getConfig()->get( 'LanguageCode' );
431 $sitename = $this->getConfig()->get( 'Sitename' );
433 return "$sitename - $desc [$code]";
436 protected function feedItem( $row ) {
437 $title = Title
::makeTitle( intval( $row->rc_namespace
), $row->rc_title
);
439 $date = $row->rc_timestamp
;
440 $comments = $title->getTalkPage()->getFullURL();
443 $title->getPrefixedText(),
444 $this->feedItemDesc( $row ),
445 $title->getFullURL(),
447 $this->feedItemAuthor( $row ),
455 protected function feedItemAuthor( $row ) {
456 return isset( $row->rc_user_text
) ?
$row->rc_user_text
: '';
459 protected function feedItemDesc( $row ) {
460 $revision = Revision
::newFromId( $row->rev_id
);
462 //XXX: include content model/type in feed item?
463 return '<p>' . htmlspecialchars( $revision->getUserText() ) .
464 $this->msg( 'colon-separator' )->inContentLanguage()->escaped() .
465 htmlspecialchars( FeedItem
::stripComment( $revision->getComment() ) ) .
466 "</p>\n<hr />\n<div>" .
467 nl2br( htmlspecialchars( $revision->getContent()->serialize() ) ) . "</div>";
473 protected function getGroupName() {
479 * @ingroup SpecialPage Pager
481 class NewPagesPager
extends ReverseChronologicalPager
{
490 function __construct( $form, FormOptions
$opts ) {
491 parent
::__construct( $form->getContext() );
492 $this->mForm
= $form;
496 function getQueryInfo() {
498 $conds['rc_new'] = 1;
500 $namespace = $this->opts
->getValue( 'namespace' );
501 $namespace = ( $namespace === 'all' ) ?
false : intval( $namespace );
503 $username = $this->opts
->getValue( 'username' );
504 $user = Title
::makeTitleSafe( NS_USER
, $username );
506 $rcIndexes = array();
508 if ( $namespace !== false ) {
509 if ( $this->opts
->getValue( 'invert' ) ) {
510 $conds[] = 'rc_namespace != ' . $this->mDb
->addQuotes( $namespace );
512 $conds['rc_namespace'] = $namespace;
517 $conds['rc_user_text'] = $user->getText();
518 $rcIndexes = 'rc_user_text';
519 } elseif ( User
::groupHasPermission( '*', 'createpage' ) &&
520 $this->opts
->getValue( 'hideliu' )
522 # If anons cannot make new pages, don't "exclude logged in users"!
523 $conds['rc_user'] = 0;
526 # If this user cannot see patrolled edits or they are off, don't do dumb queries!
527 if ( $this->opts
->getValue( 'hidepatrolled' ) && $this->getUser()->useNPPatrol() ) {
528 $conds['rc_patrolled'] = 0;
531 if ( $this->opts
->getValue( 'hidebots' ) ) {
532 $conds['rc_bot'] = 0;
535 if ( $this->opts
->getValue( 'hideredirs' ) ) {
536 $conds['page_is_redirect'] = 0;
539 // Allow changes to the New Pages query
540 $tables = array( 'recentchanges', 'page' );
542 'rc_namespace', 'rc_title', 'rc_cur_id', 'rc_user', 'rc_user_text',
543 'rc_comment', 'rc_timestamp', 'rc_patrolled', 'rc_id', 'rc_deleted',
544 'length' => 'page_len', 'rev_id' => 'page_latest', 'rc_this_oldid',
545 'page_namespace', 'page_title'
547 $join_conds = array( 'page' => array( 'INNER JOIN', 'page_id=rc_cur_id' ) );
549 wfRunHooks( 'SpecialNewpagesConditions',
550 array( &$this, $this->opts
, &$conds, &$tables, &$fields, &$join_conds ) );
555 $options = array( 'USE INDEX' => array( 'recentchanges' => $rcIndexes ) );
562 'options' => $options,
563 'join_conds' => $join_conds
566 // Modify query for tags
567 ChangeTags
::modifyDisplayQuery(
573 $this->opts
['tagfilter']
579 function getIndexField() {
580 return 'rc_timestamp';
583 function formatRow( $row ) {
584 return $this->mForm
->formatRow( $row );
587 function getStartBody() {
588 # Do a batch existence check on pages
589 $linkBatch = new LinkBatch();
590 foreach ( $this->mResult
as $row ) {
591 $linkBatch->add( NS_USER
, $row->rc_user_text
);
592 $linkBatch->add( NS_USER_TALK
, $row->rc_user_text
);
593 $linkBatch->add( $row->rc_namespace
, $row->rc_title
);
595 $linkBatch->execute();
600 function getEndBody() {