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() {
202 $this->opts
->consumeValue( 'offset' ); // don't carry offset, DWIW
203 $namespace = $this->opts
->consumeValue( 'namespace' );
204 $username = $this->opts
->consumeValue( 'username' );
205 $tagFilterVal = $this->opts
->consumeValue( 'tagfilter' );
206 $nsinvert = $this->opts
->consumeValue( 'invert' );
208 // Check username input validity
209 $ut = Title
::makeTitleSafe( NS_USER
, $username );
210 $userText = $ut ?
$ut->getText() : '';
212 // Store query values in hidden fields so that form submission doesn't lose them
214 foreach ( $this->opts
->getUnconsumedValues() as $key => $value ) {
215 $hidden[] = Html
::hidden( $key, $value );
217 $hidden = implode( "\n", $hidden );
219 $tagFilter = ChangeTags
::buildTagFilterSelector( $tagFilterVal );
221 list( $tagFilterLabel, $tagFilterSelector ) = $tagFilter;
224 $form = Xml
::openElement( 'form', array( 'action' => wfScript() ) ) .
225 Html
::hidden( 'title', $this->getPageTitle()->getPrefixedDBkey() ) .
226 Xml
::fieldset( $this->msg( 'newpages' )->text() ) .
227 Xml
::openElement( 'table', array( 'id' => 'mw-newpages-table' ) ) .
229 <td class="mw-label">' .
230 Xml
::label( $this->msg( 'namespace' )->text(), 'namespace' ) .
232 <td class="mw-input">' .
233 Html
::namespaceSelector(
235 'selected' => $namespace,
238 'name' => 'namespace',
240 'class' => 'namespaceselector',
244 $this->msg( 'invert' )->text(),
248 array( 'title' => $this->msg( 'tooltip-invert' )->text() )
251 </tr>' . ( $tagFilter ?
(
253 <td class="mw-label">' .
256 <td class="mw-input">' .
261 <td class="mw-label">' .
262 Xml
::label( $this->msg( 'newpages-username' )->text(), 'mw-np-username' ) .
264 <td class="mw-input">' .
265 Xml
::input( 'username', 30, $userText, array( 'id' => 'mw-np-username' ) ) .
269 <td class="mw-submit">' .
270 Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() ) .
275 <td class="mw-input">' .
276 $this->filterLinks() .
279 Xml
::closeElement( 'table' ) .
280 Xml
::closeElement( 'fieldset' ) .
282 Xml
::closeElement( 'form' );
284 $this->getOutput()->addHTML( $form );
288 * Format a row, providing the timestamp, links to the page/history,
289 * size, user links, and a comment
291 * @param object $result Result row
294 public function formatRow( $result ) {
295 $title = Title
::newFromRow( $result );
297 # Revision deletion works on revisions, so we should cast one
299 'comment' => $result->rc_comment
,
300 'deleted' => $result->rc_deleted
,
301 'user_text' => $result->rc_user_text
,
302 'user' => $result->rc_user
,
304 $rev = new Revision( $row );
305 $rev->setTitle( $title );
309 $lang = $this->getLanguage();
310 $dm = $lang->getDirMark();
312 $spanTime = Html
::element( 'span', array( 'class' => 'mw-newpages-time' ),
313 $lang->userTimeAndDate( $result->rc_timestamp
, $this->getUser() )
315 $time = Linker
::linkKnown(
319 array( 'oldid' => $result->rc_this_oldid
),
323 $query = array( 'redirect' => 'no' );
325 // Linker::linkKnown() uses 'known' and 'noclasses' options.
326 // This breaks the colouration for stubs.
327 $plink = Linker
::link(
330 array( 'class' => 'mw-newpages-pagename' ),
334 $histLink = Linker
::linkKnown(
336 $this->msg( 'hist' )->escaped(),
338 array( 'action' => 'history' )
340 $hist = Html
::rawElement( 'span', array( 'class' => 'mw-newpages-history' ),
341 $this->msg( 'parentheses' )->rawParams( $histLink )->escaped() );
343 $length = Html
::element(
345 array( 'class' => 'mw-newpages-length' ),
346 $this->msg( 'brackets' )->params( $this->msg( 'nbytes' )
347 ->numParams( $result->length
)->text()
351 $ulink = Linker
::revUserTools( $rev );
352 $comment = Linker
::revComment( $rev );
354 if ( $this->patrollable( $result ) ) {
355 $classes[] = 'not-patrolled';
358 # Add a class for zero byte pages
359 if ( $result->length
== 0 ) {
360 $classes[] = 'mw-newpages-zero-byte-page';
364 if ( isset( $result->ts_tags
) ) {
365 list( $tagDisplay, $newClasses ) = ChangeTags
::formatSummaryRow(
369 $classes = array_merge( $classes, $newClasses );
374 $css = count( $classes ) ?
' class="' . implode( ' ', $classes ) . '"' : '';
376 # Display the old title if the namespace/title has been changed
378 $oldTitle = Title
::makeTitle( $result->rc_namespace
, $result->rc_title
);
380 if ( !$title->equals( $oldTitle ) ) {
381 $oldTitleText = $oldTitle->getPrefixedText();
382 $oldTitleText = $this->msg( 'rc-old-title' )->params( $oldTitleText )->escaped();
385 return "<li{$css}>{$time} {$dm}{$plink} {$hist} {$dm}{$length} "
386 . "{$dm}{$ulink} {$comment} {$tagDisplay} {$oldTitleText}</li>\n";
390 * Should a specific result row provide "patrollable" links?
392 * @param object $result Result row
395 protected function patrollable( $result ) {
396 return ( $this->getUser()->useNPPatrol() && !$result->rc_patrolled
);
400 * Output a subscription feed listing recent edits to this page.
402 * @param string $type
404 protected function feed( $type ) {
405 if ( !$this->getConfig()->get( 'Feed' ) ) {
406 $this->getOutput()->addWikiMsg( 'feed-unavailable' );
411 $feedClasses = $this->getConfig()->get( 'FeedClasses' );
412 if ( !isset( $feedClasses[$type] ) ) {
413 $this->getOutput()->addWikiMsg( 'feed-invalid' );
418 $feed = new $feedClasses[$type](
420 $this->msg( 'tagline' )->text(),
421 $this->getPageTitle()->getFullURL()
424 $pager = new NewPagesPager( $this, $this->opts
);
425 $limit = $this->opts
->getValue( 'limit' );
426 $pager->mLimit
= min( $limit, $this->getConfig()->get( 'FeedLimit' ) );
429 if ( $pager->getNumRows() > 0 ) {
430 foreach ( $pager->mResult
as $row ) {
431 $feed->outItem( $this->feedItem( $row ) );
437 protected function feedTitle() {
438 $desc = $this->getDescription();
439 $code = $this->getConfig()->get( 'LanguageCode' );
440 $sitename = $this->getConfig()->get( 'Sitename' );
442 return "$sitename - $desc [$code]";
445 protected function feedItem( $row ) {
446 $title = Title
::makeTitle( intval( $row->rc_namespace
), $row->rc_title
);
448 $date = $row->rc_timestamp
;
449 $comments = $title->getTalkPage()->getFullURL();
452 $title->getPrefixedText(),
453 $this->feedItemDesc( $row ),
454 $title->getFullURL(),
456 $this->feedItemAuthor( $row ),
464 protected function feedItemAuthor( $row ) {
465 return isset( $row->rc_user_text
) ?
$row->rc_user_text
: '';
468 protected function feedItemDesc( $row ) {
469 $revision = Revision
::newFromId( $row->rev_id
);
471 //XXX: include content model/type in feed item?
472 return '<p>' . htmlspecialchars( $revision->getUserText() ) .
473 $this->msg( 'colon-separator' )->inContentLanguage()->escaped() .
474 htmlspecialchars( FeedItem
::stripComment( $revision->getComment() ) ) .
475 "</p>\n<hr />\n<div>" .
476 nl2br( htmlspecialchars( $revision->getContent()->serialize() ) ) . "</div>";
482 protected function getGroupName() {
488 * @ingroup SpecialPage Pager
490 class NewPagesPager
extends ReverseChronologicalPager
{
499 function __construct( $form, FormOptions
$opts ) {
500 parent
::__construct( $form->getContext() );
501 $this->mForm
= $form;
505 function getQueryInfo() {
507 $conds['rc_new'] = 1;
509 $namespace = $this->opts
->getValue( 'namespace' );
510 $namespace = ( $namespace === 'all' ) ?
false : intval( $namespace );
512 $username = $this->opts
->getValue( 'username' );
513 $user = Title
::makeTitleSafe( NS_USER
, $username );
515 $rcIndexes = array();
517 if ( $namespace !== false ) {
518 if ( $this->opts
->getValue( 'invert' ) ) {
519 $conds[] = 'rc_namespace != ' . $this->mDb
->addQuotes( $namespace );
521 $conds['rc_namespace'] = $namespace;
526 $conds['rc_user_text'] = $user->getText();
527 $rcIndexes = 'rc_user_text';
528 } elseif ( User
::groupHasPermission( '*', 'createpage' ) &&
529 $this->opts
->getValue( 'hideliu' )
531 # If anons cannot make new pages, don't "exclude logged in users"!
532 $conds['rc_user'] = 0;
535 # If this user cannot see patrolled edits or they are off, don't do dumb queries!
536 if ( $this->opts
->getValue( 'hidepatrolled' ) && $this->getUser()->useNPPatrol() ) {
537 $conds['rc_patrolled'] = 0;
540 if ( $this->opts
->getValue( 'hidebots' ) ) {
541 $conds['rc_bot'] = 0;
544 if ( $this->opts
->getValue( 'hideredirs' ) ) {
545 $conds['page_is_redirect'] = 0;
548 // Allow changes to the New Pages query
549 $tables = array( 'recentchanges', 'page' );
551 'rc_namespace', 'rc_title', 'rc_cur_id', 'rc_user', 'rc_user_text',
552 'rc_comment', 'rc_timestamp', 'rc_patrolled', 'rc_id', 'rc_deleted',
553 'length' => 'page_len', 'rev_id' => 'page_latest', 'rc_this_oldid',
554 'page_namespace', 'page_title'
556 $join_conds = array( 'page' => array( 'INNER JOIN', 'page_id=rc_cur_id' ) );
558 wfRunHooks( 'SpecialNewpagesConditions',
559 array( &$this, $this->opts
, &$conds, &$tables, &$fields, &$join_conds ) );
564 $options = array( 'USE INDEX' => array( 'recentchanges' => $rcIndexes ) );
571 'options' => $options,
572 'join_conds' => $join_conds
575 // Modify query for tags
576 ChangeTags
::modifyDisplayQuery(
582 $this->opts
['tagfilter']
588 function getIndexField() {
589 return 'rc_timestamp';
592 function formatRow( $row ) {
593 return $this->mForm
->formatRow( $row );
596 function getStartBody() {
597 # Do a batch existence check on pages
598 $linkBatch = new LinkBatch();
599 foreach ( $this->mResult
as $row ) {
600 $linkBatch->add( NS_USER
, $row->rc_user_text
);
601 $linkBatch->add( NS_USER_TALK
, $row->rc_user_text
);
602 $linkBatch->add( $row->rc_namespace
, $row->rc_title
);
604 $linkBatch->execute();
609 function getEndBody() {