And even more documentation in various files
[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, $wgRCMaxAge;
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 $opts->validateIntBounds( 'days', 1, $wgRCMaxAge / ( 3600 * 24 ) );
86
87 // Give precedence to subpage syntax
88 if( $parameters !== null ) {
89 $this->parseParameters( $parameters, $opts );
90 }
91
92 $opts->validateIntBounds( 'limit', 0, 5000 );
93 return $opts;
94 }
95
96 /**
97 * Create a FormOptions object specific for feed requests and return it
98 *
99 * @return FormOptions
100 */
101 public function feedSetup() {
102 global $wgFeedLimit, $wgRequest;
103 $opts = $this->getDefaultOptions();
104 # Feed is cached on limit,hideminor,namespace; other params would randomly not work
105 $opts->fetchValuesFromRequest( $wgRequest, array( 'limit', 'hideminor', 'namespace' ) );
106 $opts->validateIntBounds( 'limit', 0, $wgFeedLimit );
107 return $opts;
108 }
109
110 /**
111 * Get the current FormOptions for this request
112 */
113 public function getOptions() {
114 if ( $this->rcOptions === null ) {
115 global $wgRequest;
116 $feedFormat = $wgRequest->getVal( 'feed' );
117 $this->rcOptions = $feedFormat ? $this->feedSetup() : $this->setup( $this->rcSubpage );
118 }
119 return $this->rcOptions;
120 }
121
122
123 /**
124 * Main execution point
125 *
126 * @param $subpage String
127 */
128 public function execute( $subpage ) {
129 global $wgRequest, $wgOut;
130 $this->rcSubpage = $subpage;
131 $feedFormat = $wgRequest->getVal( 'feed' );
132
133 # 10 seconds server-side caching max
134 $wgOut->setSquidMaxage( 10 );
135 # Check if the client has a cached version
136 $lastmod = $this->checkLastModified( $feedFormat );
137 if( $lastmod === false ) {
138 return;
139 }
140
141 $opts = $this->getOptions();
142 $this->setHeaders();
143 $this->outputHeader();
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
370 $fields = array( $dbr->tableName( 'recentchanges' ) . '.*' ); // all rc columns
371 // JOIN on watchlist for users
372 if ( $uid ) {
373 $tables[] = 'watchlist';
374 $fields[] = 'wl_user';
375 $fields[] = 'wl_notificationtimestamp';
376 $join_conds['watchlist'] = array('LEFT JOIN',
377 "wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace");
378 }
379 if ( $this->getUser()->isAllowed( 'rollback' ) ) {
380 $tables[] = 'page';
381 $fields[] = 'page_latest';
382 $join_conds['page'] = array('LEFT JOIN', 'rc_cur_id=page_id');
383 }
384 if ( !$this->including() ) {
385 // Tag stuff.
386 // Doesn't work when transcluding. See bug 23293
387 ChangeTags::modifyDisplayQuery(
388 $tables, $fields, $conds, $join_conds, $query_options,
389 $opts['tagfilter']
390 );
391 }
392
393 if ( !wfRunHooks( 'SpecialRecentChangesQuery',
394 array( &$conds, &$tables, &$join_conds, $opts, &$query_options, &$fields ) ) )
395 {
396 return false;
397 }
398
399 // Don't use the new_namespace_time timestamp index if:
400 // (a) "All namespaces" selected
401 // (b) We want all pages NOT in a certain namespaces (inverted)
402 // (c) There is a tag to filter on (use tag index instead)
403 // (d) UNION + sort/limit is not an option for the DBMS
404 if( is_null( $namespace )
405 || ( $invert && !is_null( $namespace ) )
406 || $opts['tagfilter'] != ''
407 || !$dbr->unionSupportsOrderAndLimit() )
408 {
409 $res = $dbr->select( $tables, $fields, $conds, __METHOD__,
410 array( 'ORDER BY' => 'rc_timestamp DESC', 'LIMIT' => $limit ) +
411 $query_options,
412 $join_conds );
413 // We have a new_namespace_time index! UNION over new=(0,1) and sort result set!
414 } else {
415 // New pages
416 $sqlNew = $dbr->selectSQLText(
417 $tables,
418 $fields,
419 array( 'rc_new' => 1 ) + $conds,
420 __METHOD__,
421 array(
422 'ORDER BY' => 'rc_timestamp DESC',
423 'LIMIT' => $limit,
424 'USE INDEX' => array( 'recentchanges' => 'rc_timestamp' )
425 ),
426 $join_conds
427 );
428 // Old pages
429 $sqlOld = $dbr->selectSQLText(
430 $tables,
431 $fields,
432 array( 'rc_new' => 0 ) + $conds,
433 __METHOD__,
434 array(
435 'ORDER BY' => 'rc_timestamp DESC',
436 'LIMIT' => $limit,
437 'USE INDEX' => array( 'recentchanges' => 'rc_timestamp' )
438 ),
439 $join_conds
440 );
441 # Join the two fast queries, and sort the result set
442 $sql = $dbr->unionQueries( array( $sqlNew, $sqlOld ), false ) .
443 ' ORDER BY rc_timestamp DESC';
444 $sql = $dbr->limitResult( $sql, $limit, false );
445 $res = $dbr->query( $sql, __METHOD__ );
446 }
447
448 return $res;
449 }
450
451 /**
452 * Send output to $wgOut, only called if not used feeds
453 *
454 * @param $rows Array of database rows
455 * @param $opts FormOptions
456 */
457 public function webOutput( $rows, $opts ) {
458 global $wgOut, $wgRCShowWatchingUsers, $wgShowUpdatedMarker;
459 global $wgAllowCategorizedRecentChanges;
460
461 $limit = $opts['limit'];
462
463 if( !$this->including() ) {
464 // Output options box
465 $this->doHeader( $opts );
466 }
467
468 // And now for the content
469 $wgOut->setFeedAppendQuery( $this->getFeedQuery() );
470
471 if( $wgAllowCategorizedRecentChanges ) {
472 $this->filterByCategories( $rows, $opts );
473 }
474
475 $showWatcherCount = $wgRCShowWatchingUsers && $this->getUser()->getOption( 'shownumberswatching' );
476 $watcherCache = array();
477
478 $dbr = wfGetDB( DB_SLAVE );
479
480 $counter = 1;
481 $list = ChangesList::newFromUser( $this->getUser() );
482
483 $s = $list->beginRecentChangesList();
484 foreach( $rows as $obj ) {
485 if( $limit == 0 ) {
486 break;
487 }
488 $rc = RecentChange::newFromRow( $obj );
489 $rc->counter = $counter++;
490 # Check if the page has been updated since the last visit
491 if( $wgShowUpdatedMarker && !empty( $obj->wl_notificationtimestamp ) ) {
492 $rc->notificationtimestamp = ( $obj->rc_timestamp >= $obj->wl_notificationtimestamp );
493 } else {
494 $rc->notificationtimestamp = false; // Default
495 }
496 # Check the number of users watching the page
497 $rc->numberofWatchingusers = 0; // Default
498 if( $showWatcherCount && $obj->rc_namespace >= 0 ) {
499 if( !isset( $watcherCache[$obj->rc_namespace][$obj->rc_title] ) ) {
500 $watcherCache[$obj->rc_namespace][$obj->rc_title] =
501 $dbr->selectField(
502 'watchlist',
503 'COUNT(*)',
504 array(
505 'wl_namespace' => $obj->rc_namespace,
506 'wl_title' => $obj->rc_title,
507 ),
508 __METHOD__ . '-watchers'
509 );
510 }
511 $rc->numberofWatchingusers = $watcherCache[$obj->rc_namespace][$obj->rc_title];
512 }
513 $s .= $list->recentChangesLine( $rc, !empty( $obj->wl_user ), $counter );
514 --$limit;
515 }
516 $s .= $list->endRecentChangesList();
517 $wgOut->addHTML( $s );
518 }
519
520 /**
521 * Get the query string to append to feed link URLs.
522 * This is overridden by RCL to add the target parameter
523 */
524 public function getFeedQuery() {
525 return false;
526 }
527
528 /**
529 * Return the text to be displayed above the changes
530 *
531 * @param $opts FormOptions
532 * @return String: XHTML
533 */
534 public function doHeader( $opts ) {
535 global $wgScript, $wgOut;
536
537 $this->setTopText( $wgOut, $opts );
538
539 $defaults = $opts->getAllValues();
540 $nondefaults = $opts->getChangedValues();
541 $opts->consumeValues( array(
542 'namespace', 'invert', 'associated', 'tagfilter',
543 'categories', 'categories_any'
544 ) );
545
546 $panel = array();
547 $panel[] = $this->optionsPanel( $defaults, $nondefaults );
548 $panel[] = '<hr />';
549
550 $extraOpts = $this->getExtraOptions( $opts );
551 $extraOptsCount = count( $extraOpts );
552 $count = 0;
553 $submit = ' ' . Xml::submitbutton( wfMsg( 'allpagessubmit' ) );
554
555 $out = Xml::openElement( 'table', array( 'class' => 'mw-recentchanges-table' ) );
556 foreach( $extraOpts as $optionRow ) {
557 # Add submit button to the last row only
558 ++$count;
559 $addSubmit = $count === $extraOptsCount ? $submit : '';
560
561 $out .= Xml::openElement( 'tr' );
562 if( is_array( $optionRow ) ) {
563 $out .= Xml::tags( 'td', array( 'class' => 'mw-label' ), $optionRow[0] );
564 $out .= Xml::tags( 'td', array( 'class' => 'mw-input' ), $optionRow[1] . $addSubmit );
565 } else {
566 $out .= Xml::tags( 'td', array( 'class' => 'mw-input', 'colspan' => 2 ), $optionRow . $addSubmit );
567 }
568 $out .= Xml::closeElement( 'tr' );
569 }
570 $out .= Xml::closeElement( 'table' );
571
572 $unconsumed = $opts->getUnconsumedValues();
573 foreach( $unconsumed as $key => $value ) {
574 $out .= Html::hidden( $key, $value );
575 }
576
577 $t = $this->getTitle();
578 $out .= Html::hidden( 'title', $t->getPrefixedText() );
579 $form = Xml::tags( 'form', array( 'action' => $wgScript ), $out );
580 $panel[] = $form;
581 $panelString = implode( "\n", $panel );
582
583 $wgOut->addHTML(
584 Xml::fieldset( wfMsg( 'recentchanges-legend' ), $panelString, array( 'class' => 'rcoptions' ) )
585 );
586
587 $this->setBottomText( $wgOut, $opts );
588 }
589
590 /**
591 * Get options to be displayed in a form
592 *
593 * @param $opts FormOptions
594 * @return Array
595 */
596 function getExtraOptions( $opts ) {
597 $extraOpts = array();
598 $extraOpts['namespace'] = $this->namespaceFilterForm( $opts );
599
600 global $wgAllowCategorizedRecentChanges;
601 if( $wgAllowCategorizedRecentChanges ) {
602 $extraOpts['category'] = $this->categoryFilterForm( $opts );
603 }
604
605 $tagFilter = ChangeTags::buildTagFilterSelector( $opts['tagfilter'] );
606 if ( count( $tagFilter ) ) {
607 $extraOpts['tagfilter'] = $tagFilter;
608 }
609
610 wfRunHooks( 'SpecialRecentChangesPanel', array( &$extraOpts, $opts ) );
611 return $extraOpts;
612 }
613
614 /**
615 * Send the text to be displayed above the options
616 *
617 * @param $out OutputPage
618 * @param $opts FormOptions
619 */
620 function setTopText( OutputPage $out, FormOptions $opts ) {
621 $out->addWikiText( wfMsgForContentNoTrans( 'recentchangestext' ) );
622 }
623
624 /**
625 * Send the text to be displayed after the options, for use in
626 * Recentchangeslinked
627 *
628 * @param $out OutputPage
629 * @param $opts FormOptions
630 */
631 function setBottomText( OutputPage $out, FormOptions $opts ) {}
632
633 /**
634 * Creates the choose namespace selection
635 *
636 * @todo Uses radio buttons (HASHAR)
637 * @param $opts FormOptions
638 * @return String
639 */
640 protected function namespaceFilterForm( FormOptions $opts ) {
641 $nsSelect = Xml::namespaceSelector( $opts['namespace'], '' );
642 $nsLabel = Xml::label( wfMsg( 'namespace' ), 'namespace' );
643 $invert = Xml::checkLabel( wfMsg( 'invert' ), 'invert', 'nsinvert', $opts['invert'] );
644 $associated = Xml::checkLabel(
645 wfMsg( 'namespace_association' ), 'associated', 'nsassociated',
646 $opts['associated']
647 );
648 return array( $nsLabel, "$nsSelect $invert $associated" );
649 }
650
651 /**
652 * Create a input to filter changes by categories
653 *
654 * @param $opts FormOptions
655 * @return Array
656 */
657 protected function categoryFilterForm( FormOptions $opts ) {
658 list( $label, $input ) = Xml::inputLabelSep( wfMsg( 'rc_categories' ),
659 'categories', 'mw-categories', false, $opts['categories'] );
660
661 $input .= ' ' . Xml::checkLabel( wfMsg( 'rc_categories_any' ),
662 'categories_any', 'mw-categories_any', $opts['categories_any'] );
663
664 return array( $label, $input );
665 }
666
667 /**
668 * Filter $rows by categories set in $opts
669 *
670 * @param $rows Array of database rows
671 * @param $opts FormOptions
672 */
673 function filterByCategories( &$rows, FormOptions $opts ) {
674 $categories = array_map( 'trim', explode( '|' , $opts['categories'] ) );
675
676 if( !count( $categories ) ) {
677 return;
678 }
679
680 # Filter categories
681 $cats = array();
682 foreach( $categories as $cat ) {
683 $cat = trim( $cat );
684 if( $cat == '' ) {
685 continue;
686 }
687 $cats[] = $cat;
688 }
689
690 # Filter articles
691 $articles = array();
692 $a2r = array();
693 $rowsarr = array();
694 foreach( $rows as $k => $r ) {
695 $nt = Title::makeTitle( $r->rc_namespace, $r->rc_title );
696 $id = $nt->getArticleID();
697 if( $id == 0 ) {
698 continue; # Page might have been deleted...
699 }
700 if( !in_array( $id, $articles ) ) {
701 $articles[] = $id;
702 }
703 if( !isset( $a2r[$id] ) ) {
704 $a2r[$id] = array();
705 }
706 $a2r[$id][] = $k;
707 $rowsarr[$k] = $r;
708 }
709
710 # Shortcut?
711 if( !count( $articles ) || !count( $cats ) ) {
712 return;
713 }
714
715 # Look up
716 $c = new Categoryfinder;
717 $c->seed( $articles, $cats, $opts['categories_any'] ? 'OR' : 'AND' );
718 $match = $c->run();
719
720 # Filter
721 $newrows = array();
722 foreach( $match as $id ) {
723 foreach( $a2r[$id] as $rev ) {
724 $k = $rev;
725 $newrows[$k] = $rowsarr[$k];
726 }
727 }
728 $rows = $newrows;
729 }
730
731 /**
732 * Makes change an option link which carries all the other options
733 *
734 * @param $title Title
735 * @param $override Array: options to override
736 * @param $options Array: current options
737 * @param $active Boolean: whether to show the link in bold
738 */
739 function makeOptionsLink( $title, $override, $options, $active = false ) {
740 $params = $override + $options;
741 if ( $active ) {
742 return $this->getSkin()->link(
743 $this->getTitle(),
744 '<strong>' . htmlspecialchars( $title ) . '</strong>',
745 array(), $params, array( 'known' ) );
746 } else {
747 return $this->getSkin()->link(
748 $this->getTitle(), htmlspecialchars( $title ), array(),
749 $params, array( 'known' ) );
750 }
751 }
752
753 /**
754 * Creates the options panel.
755 *
756 * @param $defaults Array
757 * @param $nondefaults Array
758 */
759 function optionsPanel( $defaults, $nondefaults ) {
760 global $wgLang, $wgRCLinkLimits, $wgRCLinkDays;
761
762 $options = $nondefaults + $defaults;
763
764 $note = '';
765 if( !wfEmptyMsg( 'rclegend' ) ) {
766 $note .= '<div class="mw-rclegend">' .
767 wfMsgExt( 'rclegend', array( 'parseinline' ) ) . "</div>\n";
768 }
769 if( $options['from'] ) {
770 $note .= wfMsgExt( 'rcnotefrom', array( 'parseinline' ),
771 $wgLang->formatNum( $options['limit'] ),
772 $wgLang->timeanddate( $options['from'], true ),
773 $wgLang->date( $options['from'], true ),
774 $wgLang->time( $options['from'], true ) ) . '<br />';
775 }
776
777 # Sort data for display and make sure it's unique after we've added user data.
778 $wgRCLinkLimits[] = $options['limit'];
779 $wgRCLinkDays[] = $options['days'];
780 sort( $wgRCLinkLimits );
781 sort( $wgRCLinkDays );
782 $wgRCLinkLimits = array_unique( $wgRCLinkLimits );
783 $wgRCLinkDays = array_unique( $wgRCLinkDays );
784
785 // limit links
786 foreach( $wgRCLinkLimits as $value ) {
787 $cl[] = $this->makeOptionsLink( $wgLang->formatNum( $value ),
788 array( 'limit' => $value ), $nondefaults, $value == $options['limit'] );
789 }
790 $cl = $wgLang->pipeList( $cl );
791
792 // day links, reset 'from' to none
793 foreach( $wgRCLinkDays as $value ) {
794 $dl[] = $this->makeOptionsLink( $wgLang->formatNum( $value ),
795 array( 'days' => $value, 'from' => '' ), $nondefaults, $value == $options['days'] );
796 }
797 $dl = $wgLang->pipeList( $dl );
798
799
800 // show/hide links
801 $showhide = array( wfMsg( 'show' ), wfMsg( 'hide' ) );
802 $filters = array(
803 'hideminor' => 'rcshowhideminor',
804 'hidebots' => 'rcshowhidebots',
805 'hideanons' => 'rcshowhideanons',
806 'hideliu' => 'rcshowhideliu',
807 'hidepatrolled' => 'rcshowhidepatr',
808 'hidemyself' => 'rcshowhidemine'
809 );
810 foreach ( $this->customFilters as $key => $params ) {
811 $filters[$key] = $params['msg'];
812 }
813 // Disable some if needed
814 if ( !$this->getUser()->useRCPatrol() ) {
815 unset( $filters['hidepatrolled'] );
816 }
817
818 $links = array();
819 foreach ( $filters as $key => $msg ) {
820 $link = $this->makeOptionsLink( $showhide[1 - $options[$key]],
821 array( $key => 1-$options[$key] ), $nondefaults );
822 $links[] = wfMsgHtml( $msg, $link );
823 }
824
825 // show from this onward link
826 $now = $wgLang->timeanddate( wfTimestampNow(), true );
827 $tl = $this->makeOptionsLink(
828 $now, array( 'from' => wfTimestampNow() ), $nondefaults
829 );
830
831 $rclinks = wfMsgExt( 'rclinks', array( 'parseinline', 'replaceafter' ),
832 $cl, $dl, $wgLang->pipeList( $links ) );
833 $rclistfrom = wfMsgExt( 'rclistfrom', array( 'parseinline', 'replaceafter' ), $tl );
834 return "{$note}$rclinks<br />$rclistfrom";
835 }
836 }