Fix whitespace, documentation
[lhc/web/wiklou.git] / includes / specials / SpecialRecentchanges.php
1 <?php
2 /**
3 * Implements Special:Recentchanges
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 * A special page that lists last changes made to the wiki
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialRecentChanges extends IncludableSpecialPage {
30 var $rcOptions, $rcSubpage;
31 protected $customFilters;
32
33 public function __construct( $name = 'Recentchanges' ) {
34 parent::__construct( $name );
35 }
36
37 /**
38 * Get a FormOptions object containing the default options
39 *
40 * @return FormOptions
41 */
42 public function getDefaultOptions() {
43 $opts = new FormOptions();
44
45 $opts->add( 'days', (int)$this->getUser()->getOption( 'rcdays' ) );
46 $opts->add( 'limit', (int)$this->getUser()->getOption( 'rclimit' ) );
47 $opts->add( 'from', '' );
48
49 $opts->add( 'hideminor', $this->getUser()->getBoolOption( 'hideminor' ) );
50 $opts->add( 'hidebots', true );
51 $opts->add( 'hideanons', false );
52 $opts->add( 'hideliu', false );
53 $opts->add( 'hidepatrolled', $this->getUser()->getBoolOption( 'hidepatrolled' ) );
54 $opts->add( 'hidemyself', false );
55
56 $opts->add( 'namespace', '', FormOptions::INTNULL );
57 $opts->add( 'invert', false );
58 $opts->add( 'associated', false );
59
60 $opts->add( 'categories', '' );
61 $opts->add( 'categories_any', false );
62 $opts->add( 'tagfilter', '' );
63 return $opts;
64 }
65
66 /**
67 * Create a FormOptions object with options as specified by the user
68 *
69 * @param $parameters array
70 *
71 * @return FormOptions
72 */
73 public function setup( $parameters ) {
74 global $wgRequest;
75
76 $opts = $this->getDefaultOptions();
77
78 $this->customFilters = array();
79 wfRunHooks( 'SpecialRecentChangesFilters', array( $this, &$this->customFilters ) );
80 foreach( $this->customFilters as $key => $params ) {
81 $opts->add( $key, $params['default'] );
82 }
83
84 $opts->fetchValuesFromRequest( $wgRequest );
85
86 // Give precedence to subpage syntax
87 if( $parameters !== null ) {
88 $this->parseParameters( $parameters, $opts );
89 }
90
91 $opts->validateIntBounds( 'limit', 0, 5000 );
92 return $opts;
93 }
94
95 /**
96 * Create a FormOptions object specific for feed requests and return it
97 *
98 * @return FormOptions
99 */
100 public function feedSetup() {
101 global $wgFeedLimit, $wgRequest;
102 $opts = $this->getDefaultOptions();
103 # Feed is cached on limit,hideminor,namespace; other params would randomly not work
104 $opts->fetchValuesFromRequest( $wgRequest, array( 'limit', 'hideminor', 'namespace' ) );
105 $opts->validateIntBounds( 'limit', 0, $wgFeedLimit );
106 return $opts;
107 }
108
109 /**
110 * Get the current FormOptions for this request
111 */
112 public function getOptions() {
113 if ( $this->rcOptions === null ) {
114 global $wgRequest;
115 $feedFormat = $wgRequest->getVal( 'feed' );
116 $this->rcOptions = $feedFormat ? $this->feedSetup() : $this->setup( $this->rcSubpage );
117 }
118 return $this->rcOptions;
119 }
120
121
122 /**
123 * Main execution point
124 *
125 * @param $subpage String
126 */
127 public function execute( $subpage ) {
128 global $wgRequest, $wgOut;
129 $this->rcSubpage = $subpage;
130 $feedFormat = $wgRequest->getVal( 'feed' );
131
132 # 10 seconds server-side caching max
133 $wgOut->setSquidMaxage( 10 );
134 # Check if the client has a cached version
135 $lastmod = $this->checkLastModified( $feedFormat );
136 if( $lastmod === false ) {
137 return;
138 }
139
140 $opts = $this->getOptions();
141 $this->setHeaders();
142 $this->outputHeader();
143 $this->addRecentChangesJS();
144
145 // Fetch results, prepare a batch link existence check query
146 $conds = $this->buildMainQueryConds( $opts );
147 $rows = $this->doMainQuery( $conds, $opts );
148 if( $rows === false ){
149 if( !$this->including() ) {
150 $this->doHeader( $opts );
151 }
152 return;
153 }
154
155 if( !$feedFormat ) {
156 $batch = new LinkBatch;
157 foreach( $rows as $row ) {
158 $batch->add( NS_USER, $row->rc_user_text );
159 $batch->add( NS_USER_TALK, $row->rc_user_text );
160 $batch->add( $row->rc_namespace, $row->rc_title );
161 }
162 $batch->execute();
163 }
164 if( $feedFormat ) {
165 list( $changesFeed, $formatter ) = $this->getFeedObject( $feedFormat );
166 $changesFeed->execute( $formatter, $rows, $lastmod, $opts );
167 } else {
168 $this->webOutput( $rows, $opts );
169 }
170
171 $rows->free();
172 }
173
174 /**
175 * Return an array with a ChangesFeed object and ChannelFeed object
176 *
177 * @return Array
178 */
179 public function getFeedObject( $feedFormat ){
180 $changesFeed = new ChangesFeed( $feedFormat, 'rcfeed' );
181 $formatter = $changesFeed->getFeedObject(
182 wfMsgForContent( 'recentchanges' ),
183 wfMsgForContent( 'recentchanges-feed-description' ),
184 $this->getTitle()->getFullURL()
185 );
186 return array( $changesFeed, $formatter );
187 }
188
189 /**
190 * Process $par and put options found if $opts
191 * Mainly used when including the page
192 *
193 * @param $par String
194 * @param $opts FormOptions
195 */
196 public function parseParameters( $par, FormOptions $opts ) {
197 $bits = preg_split( '/\s*,\s*/', trim( $par ) );
198 foreach( $bits as $bit ) {
199 if( 'hidebots' === $bit ) {
200 $opts['hidebots'] = true;
201 }
202 if( 'bots' === $bit ) {
203 $opts['hidebots'] = false;
204 }
205 if( 'hideminor' === $bit ) {
206 $opts['hideminor'] = true;
207 }
208 if( 'minor' === $bit ) {
209 $opts['hideminor'] = false;
210 }
211 if( 'hideliu' === $bit ) {
212 $opts['hideliu'] = true;
213 }
214 if( 'hidepatrolled' === $bit ) {
215 $opts['hidepatrolled'] = true;
216 }
217 if( 'hideanons' === $bit ) {
218 $opts['hideanons'] = true;
219 }
220 if( 'hidemyself' === $bit ) {
221 $opts['hidemyself'] = true;
222 }
223
224 if( is_numeric( $bit ) ) {
225 $opts['limit'] = $bit;
226 }
227
228 $m = array();
229 if( preg_match( '/^limit=(\d+)$/', $bit, $m ) ) {
230 $opts['limit'] = $m[1];
231 }
232 if( preg_match( '/^days=(\d+)$/', $bit, $m ) ) {
233 $opts['days'] = $m[1];
234 }
235 }
236 }
237
238 /**
239 * Get last modified date, for client caching
240 * Don't use this if we are using the patrol feature, patrol changes don't
241 * update the timestamp
242 *
243 * @param $feedFormat String
244 * @return String or false
245 */
246 public function checkLastModified( $feedFormat ) {
247 $dbr = wfGetDB( DB_SLAVE );
248 $lastmod = $dbr->selectField( 'recentchanges', 'MAX(rc_timestamp)', false, __METHOD__ );
249 if( $feedFormat || !$this->getUser()->useRCPatrol() ) {
250 if( $lastmod && $this->getOutput()->checkLastModified( $lastmod ) ) {
251 # Client cache fresh and headers sent, nothing more to do.
252 return false;
253 }
254 }
255 return $lastmod;
256 }
257
258 /**
259 * Return an array of conditions depending of options set in $opts
260 *
261 * @param $opts FormOptions
262 * @return array
263 */
264 public function buildMainQueryConds( FormOptions $opts ) {
265 $dbr = wfGetDB( DB_SLAVE );
266 $conds = array();
267
268 # It makes no sense to hide both anons and logged-in users
269 # Where this occurs, force anons to be shown
270 $forcebot = false;
271 if( $opts['hideanons'] && $opts['hideliu'] ){
272 # Check if the user wants to show bots only
273 if( $opts['hidebots'] ){
274 $opts['hideanons'] = false;
275 } else {
276 $forcebot = true;
277 $opts['hidebots'] = false;
278 }
279 }
280
281 // Calculate cutoff
282 $cutoff_unixtime = time() - ( $opts['days'] * 86400 );
283 $cutoff_unixtime = $cutoff_unixtime - ($cutoff_unixtime % 86400);
284 $cutoff = $dbr->timestamp( $cutoff_unixtime );
285
286 $fromValid = preg_match('/^[0-9]{14}$/', $opts['from']);
287 if( $fromValid && $opts['from'] > wfTimestamp(TS_MW,$cutoff) ) {
288 $cutoff = $dbr->timestamp($opts['from']);
289 } else {
290 $opts->reset( 'from' );
291 }
292
293 $conds[] = 'rc_timestamp >= ' . $dbr->addQuotes( $cutoff );
294
295
296 $hidePatrol = $this->getUser()->useRCPatrol() && $opts['hidepatrolled'];
297 $hideLoggedInUsers = $opts['hideliu'] && !$forcebot;
298 $hideAnonymousUsers = $opts['hideanons'] && !$forcebot;
299
300 if( $opts['hideminor'] ) {
301 $conds['rc_minor'] = 0;
302 }
303 if( $opts['hidebots'] ) {
304 $conds['rc_bot'] = 0;
305 }
306 if( $hidePatrol ) {
307 $conds['rc_patrolled'] = 0;
308 }
309 if( $forcebot ) {
310 $conds['rc_bot'] = 1;
311 }
312 if( $hideLoggedInUsers ) {
313 $conds[] = 'rc_user = 0';
314 }
315 if( $hideAnonymousUsers ) {
316 $conds[] = 'rc_user != 0';
317 }
318
319 if( $opts['hidemyself'] ) {
320 if( $this->getUser()->getId() ) {
321 $conds[] = 'rc_user != ' . $dbr->addQuotes( $this->getUser()->getId() );
322 } else {
323 $conds[] = 'rc_user_text != ' . $dbr->addQuotes( $this->getUser()->getName() );
324 }
325 }
326
327 # Namespace filtering
328 if( $opts['namespace'] !== '' ) {
329 $namespaces[] = $opts['namespace'];
330
331 $inversionSuffix = $opts['invert'] ? '!' : '';
332
333 if( $opts['associated'] ) {
334 # namespace association (bug 2429)
335 $namespaces[] = MWNamespace::getAssociated( $opts['namespace'] );
336 }
337
338 $condition = $dbr->makeList(
339 array( 'rc_namespace' . $inversionSuffix
340 => $namespaces ),
341 LIST_AND
342 );
343
344 $conds[] = $condition;
345 }
346
347 return $conds;
348 }
349
350 /**
351 * Process the query
352 *
353 * @param $conds Array
354 * @param $opts FormOptions
355 * @return database result or false (for Recentchangeslinked only)
356 */
357 public function doMainQuery( $conds, $opts ) {
358 $tables = array( 'recentchanges' );
359 $join_conds = array();
360 $query_options = array(
361 'USE INDEX' => array( 'recentchanges' => 'rc_timestamp' )
362 );
363
364 $uid = $this->getUser()->getId();
365 $dbr = wfGetDB( DB_SLAVE );
366 $limit = $opts['limit'];
367 $namespace = $opts['namespace'];
368 $invert = $opts['invert'];
369 $associated = $opts['associated'];
370
371 $fields = array( $dbr->tableName( 'recentchanges' ) . '.*' ); // all rc columns
372 // JOIN on watchlist for users
373 if ( $uid ) {
374 $tables[] = 'watchlist';
375 $fields[] = 'wl_user';
376 $fields[] = 'wl_notificationtimestamp';
377 $join_conds['watchlist'] = array('LEFT JOIN',
378 "wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace");
379 }
380 if ( $this->getUser()->isAllowed( 'rollback' ) ) {
381 $tables[] = 'page';
382 $fields[] = 'page_latest';
383 $join_conds['page'] = array('LEFT JOIN', 'rc_cur_id=page_id');
384 }
385 if ( !$this->including() ) {
386 // Tag stuff.
387 // Doesn't work when transcluding. See bug 23293
388 ChangeTags::modifyDisplayQuery(
389 $tables, $fields, $conds, $join_conds, $query_options,
390 $opts['tagfilter']
391 );
392 }
393
394 if ( !wfRunHooks( 'SpecialRecentChangesQuery',
395 array( &$conds, &$tables, &$join_conds, $opts, &$query_options, &$fields ) ) )
396 {
397 return false;
398 }
399
400 // Don't use the new_namespace_time timestamp index if:
401 // (a) "All namespaces" selected
402 // (b) We want pages in more than one namespace (inverted/associated)
403 // (c) There is a tag to filter on (use tag index instead)
404 // (d) UNION + sort/limit is not an option for the DBMS
405 if( $namespace === ''
406 || ( $invert || $associated )
407 || $opts['tagfilter'] != ''
408 || !$dbr->unionSupportsOrderAndLimit() )
409 {
410 $res = $dbr->select( $tables, $fields, $conds, __METHOD__,
411 array( 'ORDER BY' => 'rc_timestamp DESC', 'LIMIT' => $limit ) +
412 $query_options,
413 $join_conds );
414 // We have a new_namespace_time index! UNION over new=(0,1) and sort result set!
415 } else {
416 // New pages
417 $sqlNew = $dbr->selectSQLText(
418 $tables,
419 $fields,
420 array( 'rc_new' => 1 ) + $conds,
421 __METHOD__,
422 array(
423 'ORDER BY' => 'rc_timestamp DESC',
424 'LIMIT' => $limit,
425 'USE INDEX' => array( 'recentchanges' => 'new_name_timestamp' )
426 ),
427 $join_conds
428 );
429 // Old pages
430 $sqlOld = $dbr->selectSQLText(
431 $tables,
432 $fields,
433 array( 'rc_new' => 0 ) + $conds,
434 __METHOD__,
435 array(
436 'ORDER BY' => 'rc_timestamp DESC',
437 'LIMIT' => $limit,
438 'USE INDEX' => array( 'recentchanges' => 'new_name_timestamp' )
439 ),
440 $join_conds
441 );
442 # Join the two fast queries, and sort the result set
443 $sql = $dbr->unionQueries( array( $sqlNew, $sqlOld ), false ) .
444 ' ORDER BY rc_timestamp DESC';
445 $sql = $dbr->limitResult( $sql, $limit, false );
446 $res = $dbr->query( $sql, __METHOD__ );
447 }
448
449 return $res;
450 }
451
452 /**
453 * Send output to $wgOut, only called if not used feeds
454 *
455 * @param $rows Array of database rows
456 * @param $opts FormOptions
457 */
458 public function webOutput( $rows, $opts ) {
459 global $wgOut, $wgRCShowWatchingUsers, $wgShowUpdatedMarker;
460 global $wgAllowCategorizedRecentChanges;
461
462 $limit = $opts['limit'];
463
464 if( !$this->including() ) {
465 // Output options box
466 $this->doHeader( $opts );
467 }
468
469 // And now for the content
470 $wgOut->setFeedAppendQuery( $this->getFeedQuery() );
471
472 if( $wgAllowCategorizedRecentChanges ) {
473 $this->filterByCategories( $rows, $opts );
474 }
475
476 $showWatcherCount = $wgRCShowWatchingUsers && $this->getUser()->getOption( 'shownumberswatching' );
477 $watcherCache = array();
478
479 $dbr = wfGetDB( DB_SLAVE );
480
481 $counter = 1;
482 $list = ChangesList::newFromUser( $this->getUser() );
483
484 $s = $list->beginRecentChangesList();
485 foreach( $rows as $obj ) {
486 if( $limit == 0 ) {
487 break;
488 }
489 $rc = RecentChange::newFromRow( $obj );
490 $rc->counter = $counter++;
491 # Check if the page has been updated since the last visit
492 if( $wgShowUpdatedMarker && !empty( $obj->wl_notificationtimestamp ) ) {
493 $rc->notificationtimestamp = ( $obj->rc_timestamp >= $obj->wl_notificationtimestamp );
494 } else {
495 $rc->notificationtimestamp = false; // Default
496 }
497 # Check the number of users watching the page
498 $rc->numberofWatchingusers = 0; // Default
499 if( $showWatcherCount && $obj->rc_namespace >= 0 ) {
500 if( !isset( $watcherCache[$obj->rc_namespace][$obj->rc_title] ) ) {
501 $watcherCache[$obj->rc_namespace][$obj->rc_title] =
502 $dbr->selectField(
503 'watchlist',
504 'COUNT(*)',
505 array(
506 'wl_namespace' => $obj->rc_namespace,
507 'wl_title' => $obj->rc_title,
508 ),
509 __METHOD__ . '-watchers'
510 );
511 }
512 $rc->numberofWatchingusers = $watcherCache[$obj->rc_namespace][$obj->rc_title];
513 }
514 $s .= $list->recentChangesLine( $rc, !empty( $obj->wl_user ), $counter );
515 --$limit;
516 }
517 $s .= $list->endRecentChangesList();
518 $wgOut->addHTML( $s );
519 }
520
521 /**
522 * Get the query string to append to feed link URLs.
523 * This is overridden by RCL to add the target parameter
524 */
525 public function getFeedQuery() {
526 return false;
527 }
528
529 /**
530 * Return the text to be displayed above the changes
531 *
532 * @param $opts FormOptions
533 * @return String: XHTML
534 */
535 public function doHeader( $opts ) {
536 global $wgScript, $wgOut;
537
538 $this->setTopText( $wgOut, $opts );
539
540 $defaults = $opts->getAllValues();
541 $nondefaults = $opts->getChangedValues();
542 $opts->consumeValues( array(
543 'namespace', 'invert', 'associated', 'tagfilter',
544 'categories', 'categories_any'
545 ) );
546
547 $panel = array();
548 $panel[] = $this->optionsPanel( $defaults, $nondefaults );
549 $panel[] = '<hr />';
550
551 $extraOpts = $this->getExtraOptions( $opts );
552 $extraOptsCount = count( $extraOpts );
553 $count = 0;
554 $submit = ' ' . Xml::submitbutton( wfMsg( 'allpagessubmit' ) );
555
556 $out = Xml::openElement( 'table', array( 'class' => 'mw-recentchanges-table' ) );
557 foreach( $extraOpts as $optionRow ) {
558 # Add submit button to the last row only
559 ++$count;
560 $addSubmit = $count === $extraOptsCount ? $submit : '';
561
562 $out .= Xml::openElement( 'tr' );
563 if( is_array( $optionRow ) ) {
564 $out .= Xml::tags( 'td', array( 'class' => 'mw-label' ), $optionRow[0] );
565 $out .= Xml::tags( 'td', array( 'class' => 'mw-input' ), $optionRow[1] . $addSubmit );
566 } else {
567 $out .= Xml::tags( 'td', array( 'class' => 'mw-input', 'colspan' => 2 ), $optionRow . $addSubmit );
568 }
569 $out .= Xml::closeElement( 'tr' );
570 }
571 $out .= Xml::closeElement( 'table' );
572
573 $unconsumed = $opts->getUnconsumedValues();
574 foreach( $unconsumed as $key => $value ) {
575 $out .= Html::hidden( $key, $value );
576 }
577
578 $t = $this->getTitle();
579 $out .= Html::hidden( 'title', $t->getPrefixedText() );
580 $form = Xml::tags( 'form', array( 'action' => $wgScript ), $out );
581 $panel[] = $form;
582 $panelString = implode( "\n", $panel );
583
584 $wgOut->addHTML(
585 Xml::fieldset( wfMsg( 'recentchanges-legend' ), $panelString, array( 'class' => 'rcoptions' ) )
586 );
587
588 $this->setBottomText( $wgOut, $opts );
589 }
590
591 /**
592 * Get options to be displayed in a form
593 *
594 * @param $opts FormOptions
595 * @return Array
596 */
597 function getExtraOptions( $opts ) {
598 $extraOpts = array();
599 $extraOpts['namespace'] = $this->namespaceFilterForm( $opts );
600
601 global $wgAllowCategorizedRecentChanges;
602 if( $wgAllowCategorizedRecentChanges ) {
603 $extraOpts['category'] = $this->categoryFilterForm( $opts );
604 }
605
606 $tagFilter = ChangeTags::buildTagFilterSelector( $opts['tagfilter'] );
607 if ( count( $tagFilter ) ) {
608 $extraOpts['tagfilter'] = $tagFilter;
609 }
610
611 wfRunHooks( 'SpecialRecentChangesPanel', array( &$extraOpts, $opts ) );
612 return $extraOpts;
613 }
614
615 /**
616 * Send the text to be displayed above the options
617 *
618 * @param $out OutputPage
619 * @param $opts FormOptions
620 */
621 function setTopText( OutputPage $out, FormOptions $opts ) {
622 $out->addWikiText( wfMsgForContentNoTrans( 'recentchangestext' ) );
623 }
624
625 /**
626 * Send the text to be displayed after the options, for use in
627 * Recentchangeslinked
628 *
629 * @param $out OutputPage
630 * @param $opts FormOptions
631 */
632 function setBottomText( OutputPage $out, FormOptions $opts ) {}
633
634 /**
635 * Creates the choose namespace selection
636 *
637 * @todo Uses radio buttons (HASHAR)
638 * @param $opts FormOptions
639 * @return String
640 */
641 protected function namespaceFilterForm( FormOptions $opts ) {
642 $nsSelect = Xml::namespaceSelector( $opts['namespace'], '' );
643 $nsLabel = Xml::label( wfMsg( 'namespace' ), 'namespace' );
644 $invert = Xml::checkLabel(
645 wfMsg( 'invert' ), 'invert', 'nsinvert',
646 $opts['invert'],
647 array( 'title' => wfMsg( 'tooltip-invert' ) )
648 );
649 $associated = Xml::checkLabel(
650 wfMsg( 'namespace_association' ), 'associated', 'nsassociated',
651 $opts['associated'],
652 array( 'title' => wfMsg( 'tooltip-namespace_association' ) )
653 );
654 return array( $nsLabel, "$nsSelect $invert $associated" );
655 }
656
657 /**
658 * Create a input to filter changes by categories
659 *
660 * @param $opts FormOptions
661 * @return Array
662 */
663 protected function categoryFilterForm( FormOptions $opts ) {
664 list( $label, $input ) = Xml::inputLabelSep( wfMsg( 'rc_categories' ),
665 'categories', 'mw-categories', false, $opts['categories'] );
666
667 $input .= ' ' . Xml::checkLabel( wfMsg( 'rc_categories_any' ),
668 'categories_any', 'mw-categories_any', $opts['categories_any'] );
669
670 return array( $label, $input );
671 }
672
673 /**
674 * Filter $rows by categories set in $opts
675 *
676 * @param $rows Array of database rows
677 * @param $opts FormOptions
678 */
679 function filterByCategories( &$rows, FormOptions $opts ) {
680 $categories = array_map( 'trim', explode( '|' , $opts['categories'] ) );
681
682 if( !count( $categories ) ) {
683 return;
684 }
685
686 # Filter categories
687 $cats = array();
688 foreach( $categories as $cat ) {
689 $cat = trim( $cat );
690 if( $cat == '' ) {
691 continue;
692 }
693 $cats[] = $cat;
694 }
695
696 # Filter articles
697 $articles = array();
698 $a2r = array();
699 $rowsarr = array();
700 foreach( $rows as $k => $r ) {
701 $nt = Title::makeTitle( $r->rc_namespace, $r->rc_title );
702 $id = $nt->getArticleID();
703 if( $id == 0 ) {
704 continue; # Page might have been deleted...
705 }
706 if( !in_array( $id, $articles ) ) {
707 $articles[] = $id;
708 }
709 if( !isset( $a2r[$id] ) ) {
710 $a2r[$id] = array();
711 }
712 $a2r[$id][] = $k;
713 $rowsarr[$k] = $r;
714 }
715
716 # Shortcut?
717 if( !count( $articles ) || !count( $cats ) ) {
718 return;
719 }
720
721 # Look up
722 $c = new Categoryfinder;
723 $c->seed( $articles, $cats, $opts['categories_any'] ? 'OR' : 'AND' );
724 $match = $c->run();
725
726 # Filter
727 $newrows = array();
728 foreach( $match as $id ) {
729 foreach( $a2r[$id] as $rev ) {
730 $k = $rev;
731 $newrows[$k] = $rowsarr[$k];
732 }
733 }
734 $rows = $newrows;
735 }
736
737 /**
738 * Makes change an option link which carries all the other options
739 *
740 * @param $title Title
741 * @param $override Array: options to override
742 * @param $options Array: current options
743 * @param $active Boolean: whether to show the link in bold
744 */
745 function makeOptionsLink( $title, $override, $options, $active = false ) {
746 $params = $override + $options;
747 if ( $active ) {
748 return $this->getSkin()->link(
749 $this->getTitle(),
750 '<strong>' . htmlspecialchars( $title ) . '</strong>',
751 array(), $params, array( 'known' ) );
752 } else {
753 return $this->getSkin()->link(
754 $this->getTitle(), htmlspecialchars( $title ), array(),
755 $params, array( 'known' ) );
756 }
757 }
758
759 /**
760 * Creates the options panel.
761 *
762 * @param $defaults Array
763 * @param $nondefaults Array
764 */
765 function optionsPanel( $defaults, $nondefaults ) {
766 global $wgLang, $wgRCLinkLimits, $wgRCLinkDays;
767
768 $options = $nondefaults + $defaults;
769
770 $note = '';
771 if( !wfEmptyMsg( 'rclegend' ) ) {
772 $note .= '<div class="mw-rclegend">' .
773 wfMsgExt( 'rclegend', array( 'parseinline' ) ) . "</div>\n";
774 }
775 if( $options['from'] ) {
776 $note .= wfMsgExt( 'rcnotefrom', array( 'parseinline' ),
777 $wgLang->formatNum( $options['limit'] ),
778 $wgLang->timeanddate( $options['from'], true ),
779 $wgLang->date( $options['from'], true ),
780 $wgLang->time( $options['from'], true ) ) . '<br />';
781 }
782
783 # Sort data for display and make sure it's unique after we've added user data.
784 $wgRCLinkLimits[] = $options['limit'];
785 $wgRCLinkDays[] = $options['days'];
786 sort( $wgRCLinkLimits );
787 sort( $wgRCLinkDays );
788 $wgRCLinkLimits = array_unique( $wgRCLinkLimits );
789 $wgRCLinkDays = array_unique( $wgRCLinkDays );
790
791 // limit links
792 foreach( $wgRCLinkLimits as $value ) {
793 $cl[] = $this->makeOptionsLink( $wgLang->formatNum( $value ),
794 array( 'limit' => $value ), $nondefaults, $value == $options['limit'] );
795 }
796 $cl = $wgLang->pipeList( $cl );
797
798 // day links, reset 'from' to none
799 foreach( $wgRCLinkDays as $value ) {
800 $dl[] = $this->makeOptionsLink( $wgLang->formatNum( $value ),
801 array( 'days' => $value, 'from' => '' ), $nondefaults, $value == $options['days'] );
802 }
803 $dl = $wgLang->pipeList( $dl );
804
805
806 // show/hide links
807 $showhide = array( wfMsg( 'show' ), wfMsg( 'hide' ) );
808 $filters = array(
809 'hideminor' => 'rcshowhideminor',
810 'hidebots' => 'rcshowhidebots',
811 'hideanons' => 'rcshowhideanons',
812 'hideliu' => 'rcshowhideliu',
813 'hidepatrolled' => 'rcshowhidepatr',
814 'hidemyself' => 'rcshowhidemine'
815 );
816 foreach ( $this->customFilters as $key => $params ) {
817 $filters[$key] = $params['msg'];
818 }
819 // Disable some if needed
820 if ( !$this->getUser()->useRCPatrol() ) {
821 unset( $filters['hidepatrolled'] );
822 }
823
824 $links = array();
825 foreach ( $filters as $key => $msg ) {
826 $link = $this->makeOptionsLink( $showhide[1 - $options[$key]],
827 array( $key => 1-$options[$key] ), $nondefaults );
828 $links[] = wfMsgHtml( $msg, $link );
829 }
830
831 // show from this onward link
832 $timestamp = wfTimestampNow();
833 $now = $wgLang->timeanddate( $timestamp, true );
834 $tl = $this->makeOptionsLink(
835 $now, array( 'from' => $timestamp ), $nondefaults
836 );
837
838 $rclinks = wfMsgExt( 'rclinks', array( 'parseinline', 'replaceafter' ),
839 $cl, $dl, $wgLang->pipeList( $links ) );
840 $rclistfrom = wfMsgExt( 'rclistfrom', array( 'parseinline', 'replaceafter' ), $tl );
841 return "{$note}$rclinks<br />$rclistfrom";
842 }
843
844 /**
845 * add javascript specific to the [[Special:RecentChanges]] page
846 */
847 function addRecentChangesJS() {
848 global $wgOut;
849 $wgOut->addModules( array(
850 'mediawiki.special.recentchanges',
851 ) );
852 }
853 }