Document $rows on hook ChangesListInitRows as IResultWrapper
[lhc/web/wiklou.git] / includes / changes / ChangesList.php
1 <?php
2 /**
3 * Base class for all changes lists.
4 *
5 * The class is used for formatting recent changes, related changes and watchlist.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @file
23 */
24 use MediaWiki\Linker\LinkRenderer;
25 use MediaWiki\MediaWikiServices;
26 use Wikimedia\Rdbms\IResultWrapper;
27
28 class ChangesList extends ContextSource {
29 const CSS_CLASS_PREFIX = 'mw-changeslist-';
30
31 /**
32 * @var Skin
33 */
34 public $skin;
35
36 protected $watchlist = false;
37 protected $lastdate;
38 protected $message;
39 protected $rc_cache;
40 protected $rcCacheIndex;
41 protected $rclistOpen;
42 protected $rcMoveIndex;
43
44 /** @var callable */
45 protected $changeLinePrefixer;
46
47 /** @var MapCacheLRU */
48 protected $watchMsgCache;
49
50 /**
51 * @var LinkRenderer
52 */
53 protected $linkRenderer;
54
55 /**
56 * @var array
57 */
58 protected $filterGroups;
59
60 /**
61 * @param Skin|IContextSource $obj
62 * @param array $filterGroups Array of ChangesListFilterGroup objects (currently optional)
63 */
64 public function __construct( $obj, array $filterGroups = [] ) {
65 if ( $obj instanceof IContextSource ) {
66 $this->setContext( $obj );
67 $this->skin = $obj->getSkin();
68 } else {
69 $this->setContext( $obj->getContext() );
70 $this->skin = $obj;
71 }
72 $this->preCacheMessages();
73 $this->watchMsgCache = new MapCacheLRU( 50 );
74 $this->linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
75 $this->filterGroups = $filterGroups;
76 }
77
78 /**
79 * Fetch an appropriate changes list class for the specified context
80 * Some users might want to use an enhanced list format, for instance
81 *
82 * @param IContextSource $context
83 * @param array $groups Array of ChangesListFilterGroup objects (currently optional)
84 * @return ChangesList
85 */
86 public static function newFromContext( IContextSource $context, array $groups = [] ) {
87 $user = $context->getUser();
88 $sk = $context->getSkin();
89 $list = null;
90 if ( Hooks::run( 'FetchChangesList', [ $user, &$sk, &$list ] ) ) {
91 $new = $context->getRequest()->getBool( 'enhanced', $user->getOption( 'usenewrc' ) );
92
93 return $new ?
94 new EnhancedChangesList( $context, $groups ) :
95 new OldChangesList( $context, $groups );
96 } else {
97 return $list;
98 }
99 }
100
101 /**
102 * Format a line
103 *
104 * @since 1.27
105 *
106 * @param RecentChange &$rc Passed by reference
107 * @param bool $watched (default false)
108 * @param int|null $linenumber (default null)
109 *
110 * @return string|bool
111 */
112 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
113 throw new RuntimeException( 'recentChangesLine should be implemented' );
114 }
115
116 /**
117 * Get the container for highlights that are used in the new StructuredFilters
118 * system
119 *
120 * @return string HTML structure of the highlight container div
121 */
122 protected function getHighlightsContainerDiv() {
123 $highlightColorDivs = '';
124 foreach ( [ 'none', 'c1', 'c2', 'c3', 'c4', 'c5' ] as $color ) {
125 $highlightColorDivs .= Html::rawElement(
126 'div',
127 [
128 'class' => 'mw-rcfilters-ui-highlights-color-' . $color,
129 'data-color' => $color
130 ]
131 );
132 }
133
134 return Html::rawElement(
135 'div',
136 [ 'class' => 'mw-rcfilters-ui-highlights' ],
137 $highlightColorDivs
138 );
139 }
140
141 /**
142 * Sets the list to use a "<li class='watchlist-(namespace)-(page)'>" tag
143 * @param bool $value
144 */
145 public function setWatchlistDivs( $value = true ) {
146 $this->watchlist = $value;
147 }
148
149 /**
150 * @return bool True when setWatchlistDivs has been called
151 * @since 1.23
152 */
153 public function isWatchlist() {
154 return (bool)$this->watchlist;
155 }
156
157 /**
158 * As we use the same small set of messages in various methods and that
159 * they are called often, we call them once and save them in $this->message
160 */
161 private function preCacheMessages() {
162 if ( !isset( $this->message ) ) {
163 foreach ( [
164 'cur', 'diff', 'hist', 'enhancedrc-history', 'last', 'blocklink', 'history',
165 'semicolon-separator', 'pipe-separator' ] as $msg
166 ) {
167 $this->message[$msg] = $this->msg( $msg )->escaped();
168 }
169 }
170 }
171
172 /**
173 * Returns the appropriate flags for new page, minor change and patrolling
174 * @param array $flags Associative array of 'flag' => Bool
175 * @param string $nothing To use for empty space
176 * @return string
177 */
178 public function recentChangesFlags( $flags, $nothing = "\u{00A0}" ) {
179 $f = '';
180 foreach ( array_keys( $this->getConfig()->get( 'RecentChangesFlags' ) ) as $flag ) {
181 $f .= isset( $flags[$flag] ) && $flags[$flag]
182 ? self::flag( $flag, $this->getContext() )
183 : $nothing;
184 }
185
186 return $f;
187 }
188
189 /**
190 * Get an array of default HTML class attributes for the change.
191 *
192 * @param RecentChange|RCCacheEntry $rc
193 * @param string|bool $watched Optionally timestamp for adding watched class
194 *
195 * @return string[] List of CSS class names
196 */
197 protected function getHTMLClasses( $rc, $watched ) {
198 $classes = [ self::CSS_CLASS_PREFIX . 'line' ];
199 $logType = $rc->mAttribs['rc_log_type'];
200
201 if ( $logType ) {
202 $classes[] = self::CSS_CLASS_PREFIX . 'log';
203 $classes[] = Sanitizer::escapeClass( self::CSS_CLASS_PREFIX . 'log-' . $logType );
204 } else {
205 $classes[] = self::CSS_CLASS_PREFIX . 'edit';
206 $classes[] = Sanitizer::escapeClass( self::CSS_CLASS_PREFIX . 'ns' .
207 $rc->mAttribs['rc_namespace'] . '-' . $rc->mAttribs['rc_title'] );
208 }
209
210 // Indicate watched status on the line to allow for more
211 // comprehensive styling.
212 $classes[] = $watched && $rc->mAttribs['rc_timestamp'] >= $watched
213 ? self::CSS_CLASS_PREFIX . 'line-watched'
214 : self::CSS_CLASS_PREFIX . 'line-not-watched';
215
216 $classes = array_merge( $classes, $this->getHTMLClassesForFilters( $rc ) );
217
218 return $classes;
219 }
220
221 /**
222 * Get an array of CSS classes attributed to filters for this row. Used for highlighting
223 * in the front-end.
224 *
225 * @param RecentChange $rc
226 * @return array Array of CSS classes
227 */
228 protected function getHTMLClassesForFilters( $rc ) {
229 $classes = [];
230
231 $classes[] = Sanitizer::escapeClass( self::CSS_CLASS_PREFIX . 'ns-' .
232 $rc->mAttribs['rc_namespace'] );
233
234 if ( $this->filterGroups !== null ) {
235 foreach ( $this->filterGroups as $filterGroup ) {
236 foreach ( $filterGroup->getFilters() as $filter ) {
237 $filter->applyCssClassIfNeeded( $this, $rc, $classes );
238 }
239 }
240 }
241
242 return $classes;
243 }
244
245 /**
246 * Make an "<abbr>" element for a given change flag. The flag indicating a new page, minor edit,
247 * bot edit, or unpatrolled edit. In English it typically contains "N", "m", "b", or "!".
248 *
249 * @param string $flag One key of $wgRecentChangesFlags
250 * @param IContextSource|null $context
251 * @return string HTML
252 */
253 public static function flag( $flag, IContextSource $context = null ) {
254 static $map = [ 'minoredit' => 'minor', 'botedit' => 'bot' ];
255 static $flagInfos = null;
256
257 if ( is_null( $flagInfos ) ) {
258 global $wgRecentChangesFlags;
259 $flagInfos = [];
260 foreach ( $wgRecentChangesFlags as $key => $value ) {
261 $flagInfos[$key]['letter'] = $value['letter'];
262 $flagInfos[$key]['title'] = $value['title'];
263 // Allow customized class name, fall back to flag name
264 $flagInfos[$key]['class'] = $value['class'] ?? $key;
265 }
266 }
267
268 $context = $context ?: RequestContext::getMain();
269
270 // Inconsistent naming, kepted for b/c
271 if ( isset( $map[$flag] ) ) {
272 $flag = $map[$flag];
273 }
274
275 $info = $flagInfos[$flag];
276 return Html::element( 'abbr', [
277 'class' => $info['class'],
278 'title' => wfMessage( $info['title'] )->setContext( $context )->text(),
279 ], wfMessage( $info['letter'] )->setContext( $context )->text() );
280 }
281
282 /**
283 * Returns text for the start of the tabular part of RC
284 * @return string
285 */
286 public function beginRecentChangesList() {
287 $this->rc_cache = [];
288 $this->rcMoveIndex = 0;
289 $this->rcCacheIndex = 0;
290 $this->lastdate = '';
291 $this->rclistOpen = false;
292 $this->getOutput()->addModuleStyles( [
293 'mediawiki.interface.helpers.styles',
294 'mediawiki.special.changeslist'
295 ] );
296
297 return '<div class="mw-changeslist">';
298 }
299
300 /**
301 * @param IResultWrapper|array $rows
302 */
303 public function initChangesListRows( $rows ) {
304 Hooks::run( 'ChangesListInitRows', [ $this, $rows ] );
305 }
306
307 /**
308 * Show formatted char difference
309 *
310 * Needs the css module 'mediawiki.special.changeslist' to style output
311 *
312 * @param int $old Number of bytes
313 * @param int $new Number of bytes
314 * @param IContextSource|null $context
315 * @return string
316 */
317 public static function showCharacterDifference( $old, $new, IContextSource $context = null ) {
318 if ( !$context ) {
319 $context = RequestContext::getMain();
320 }
321
322 $new = (int)$new;
323 $old = (int)$old;
324 $szdiff = $new - $old;
325
326 $lang = $context->getLanguage();
327 $config = $context->getConfig();
328 $code = $lang->getCode();
329 static $fastCharDiff = [];
330 if ( !isset( $fastCharDiff[$code] ) ) {
331 $fastCharDiff[$code] = $config->get( 'MiserMode' )
332 || $context->msg( 'rc-change-size' )->plain() === '$1';
333 }
334
335 $formattedSize = $lang->formatNum( $szdiff );
336
337 if ( !$fastCharDiff[$code] ) {
338 $formattedSize = $context->msg( 'rc-change-size', $formattedSize )->text();
339 }
340
341 if ( abs( $szdiff ) > abs( $config->get( 'RCChangedSizeThreshold' ) ) ) {
342 $tag = 'strong';
343 } else {
344 $tag = 'span';
345 }
346
347 if ( $szdiff === 0 ) {
348 $formattedSizeClass = 'mw-plusminus-null';
349 } elseif ( $szdiff > 0 ) {
350 $formattedSize = '+' . $formattedSize;
351 $formattedSizeClass = 'mw-plusminus-pos';
352 } else {
353 $formattedSizeClass = 'mw-plusminus-neg';
354 }
355 $formattedSizeClass .= ' mw-diff-bytes';
356
357 $formattedTotalSize = $context->msg( 'rc-change-size-new' )->numParams( $new )->text();
358
359 return Html::element( $tag,
360 [ 'dir' => 'ltr', 'class' => $formattedSizeClass, 'title' => $formattedTotalSize ],
361 $formattedSize ) . $lang->getDirMark();
362 }
363
364 /**
365 * Format the character difference of one or several changes.
366 *
367 * @param RecentChange $old
368 * @param RecentChange|null $new Last change to use, if not provided, $old will be used
369 * @return string HTML fragment
370 */
371 public function formatCharacterDifference( RecentChange $old, RecentChange $new = null ) {
372 $oldlen = $old->mAttribs['rc_old_len'];
373
374 if ( $new ) {
375 $newlen = $new->mAttribs['rc_new_len'];
376 } else {
377 $newlen = $old->mAttribs['rc_new_len'];
378 }
379
380 if ( $oldlen === null || $newlen === null ) {
381 return '';
382 }
383
384 return self::showCharacterDifference( $oldlen, $newlen, $this->getContext() );
385 }
386
387 /**
388 * Returns text for the end of RC
389 * @return string
390 */
391 public function endRecentChangesList() {
392 $out = $this->rclistOpen ? "</ul>\n" : '';
393 $out .= '</div>';
394
395 return $out;
396 }
397
398 /**
399 * Render the date and time of a revision in the current user language
400 * based on whether the user is able to view this information or not.
401 * @param Revision $rev
402 * @param User $user
403 * @param Language $lang
404 * @param Title|null $title (optional) where Title does not match
405 * the Title associated with the Revision
406 * @internal For usage by Pager classes only (e.g. HistoryPager and ContribsPager).
407 * @return string HTML
408 */
409 public static function revDateLink( Revision $rev, User $user, Language $lang, $title = null ) {
410 $ts = $rev->getTimestamp();
411 $date = $lang->userTimeAndDate( $ts, $user );
412 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
413 $link = MediaWikiServices::getInstance()->getLinkRenderer()->makeKnownLink(
414 $title ?? $rev->getTitle(),
415 $date,
416 [ 'class' => 'mw-changeslist-date' ],
417 [ 'oldid' => $rev->getId() ]
418 );
419 } else {
420 $link = htmlspecialchars( $date );
421 }
422 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
423 $link = "<span class=\"history-deleted mw-changeslist-date\">$link</span>";
424 }
425 return $link;
426 }
427
428 /**
429 * @param string &$s HTML to update
430 * @param mixed $rc_timestamp
431 */
432 public function insertDateHeader( &$s, $rc_timestamp ) {
433 # Make date header if necessary
434 $date = $this->getLanguage()->userDate( $rc_timestamp, $this->getUser() );
435 if ( $date != $this->lastdate ) {
436 if ( $this->lastdate != '' ) {
437 $s .= "</ul>\n";
438 }
439 $s .= Xml::element( 'h4', null, $date ) . "\n<ul class=\"special\">";
440 $this->lastdate = $date;
441 $this->rclistOpen = true;
442 }
443 }
444
445 /**
446 * @param string &$s HTML to update
447 * @param Title $title
448 * @param string $logtype
449 */
450 public function insertLog( &$s, $title, $logtype ) {
451 $page = new LogPage( $logtype );
452 $logname = $page->getName()->setContext( $this->getContext() )->text();
453 $s .= $this->msg( 'parentheses' )->rawParams(
454 $this->linkRenderer->makeKnownLink( $title, $logname )
455 )->escaped();
456 }
457
458 /**
459 * @param string &$s HTML to update
460 * @param RecentChange &$rc
461 * @param bool|null $unpatrolled Unused variable, since 1.27.
462 */
463 public function insertDiffHist( &$s, &$rc, $unpatrolled = null ) {
464 # Diff link
465 if (
466 $rc->mAttribs['rc_type'] == RC_NEW ||
467 $rc->mAttribs['rc_type'] == RC_LOG ||
468 $rc->mAttribs['rc_type'] == RC_CATEGORIZE
469 ) {
470 $diffLink = $this->message['diff'];
471 } elseif ( !self::userCan( $rc, Revision::DELETED_TEXT, $this->getUser() ) ) {
472 $diffLink = $this->message['diff'];
473 } else {
474 $query = [
475 'curid' => $rc->mAttribs['rc_cur_id'],
476 'diff' => $rc->mAttribs['rc_this_oldid'],
477 'oldid' => $rc->mAttribs['rc_last_oldid']
478 ];
479
480 $diffLink = $this->linkRenderer->makeKnownLink(
481 $rc->getTitle(),
482 new HtmlArmor( $this->message['diff'] ),
483 [ 'class' => 'mw-changeslist-diff' ],
484 $query
485 );
486 }
487 if ( $rc->mAttribs['rc_type'] == RC_CATEGORIZE ) {
488 $histLink = $this->message['hist'];
489 } else {
490 $histLink = $this->linkRenderer->makeKnownLink(
491 $rc->getTitle(),
492 new HtmlArmor( $this->message['hist'] ),
493 [ 'class' => 'mw-changeslist-history' ],
494 [
495 'curid' => $rc->mAttribs['rc_cur_id'],
496 'action' => 'history'
497 ]
498 );
499 }
500
501 $s .= Html::rawElement( 'div', [ 'class' => 'mw-changeslist-links' ],
502 Html::rawElement( 'span', [], $diffLink ) .
503 Html::rawElement( 'span', [], $histLink )
504 ) .
505 ' <span class="mw-changeslist-separator"></span> ';
506 }
507
508 /**
509 * @param RecentChange &$rc
510 * @param bool $unpatrolled
511 * @param bool $watched
512 * @return string HTML
513 * @since 1.26
514 */
515 public function getArticleLink( &$rc, $unpatrolled, $watched ) {
516 $params = [];
517 if ( $rc->getTitle()->isRedirect() ) {
518 $params = [ 'redirect' => 'no' ];
519 }
520
521 $articlelink = $this->linkRenderer->makeLink(
522 $rc->getTitle(),
523 null,
524 [ 'class' => 'mw-changeslist-title' ],
525 $params
526 );
527 if ( $this->isDeleted( $rc, Revision::DELETED_TEXT ) ) {
528 $articlelink = '<span class="history-deleted">' . $articlelink . '</span>';
529 }
530 # To allow for boldening pages watched by this user
531 $articlelink = "<span class=\"mw-title\">{$articlelink}</span>";
532 # RTL/LTR marker
533 $articlelink .= $this->getLanguage()->getDirMark();
534
535 # TODO: Deprecate the $s argument, it seems happily unused.
536 $s = '';
537 # Avoid PHP 7.1 warning from passing $this by reference
538 $changesList = $this;
539 Hooks::run( 'ChangesListInsertArticleLink',
540 [ &$changesList, &$articlelink, &$s, &$rc, $unpatrolled, $watched ] );
541
542 return "{$s} {$articlelink}";
543 }
544
545 /**
546 * Get the timestamp from $rc formatted with current user's settings
547 * and a separator
548 *
549 * @param RecentChange $rc
550 * @deprecated use revDateLink instead.
551 * @return string HTML fragment
552 */
553 public function getTimestamp( $rc ) {
554 // @todo FIXME: Hard coded ". .". Is there a message for this? Should there be?
555 return $this->message['semicolon-separator'] . '<span class="mw-changeslist-date">' .
556 htmlspecialchars( $this->getLanguage()->userTime(
557 $rc->mAttribs['rc_timestamp'],
558 $this->getUser()
559 ) ) . '</span> <span class="mw-changeslist-separator"></span> ';
560 }
561
562 /**
563 * Insert time timestamp string from $rc into $s
564 *
565 * @param string &$s HTML to update
566 * @param RecentChange $rc
567 */
568 public function insertTimestamp( &$s, $rc ) {
569 $s .= $this->getTimestamp( $rc );
570 }
571
572 /**
573 * Insert links to user page, user talk page and eventually a blocking link
574 *
575 * @param string &$s HTML to update
576 * @param RecentChange &$rc
577 */
578 public function insertUserRelatedLinks( &$s, &$rc ) {
579 if ( $this->isDeleted( $rc, Revision::DELETED_USER ) ) {
580 $s .= ' <span class="history-deleted">' .
581 $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
582 } else {
583 $s .= $this->getLanguage()->getDirMark() . Linker::userLink( $rc->mAttribs['rc_user'],
584 $rc->mAttribs['rc_user_text'] );
585 $s .= Linker::userToolLinks(
586 $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'],
587 false, 0, null,
588 // The text content of tools is not wrapped with parenthesises or "piped".
589 // This will be handled in CSS (T205581).
590 false
591 );
592 }
593 }
594
595 /**
596 * Insert a formatted action
597 *
598 * @param RecentChange $rc
599 * @return string
600 */
601 public function insertLogEntry( $rc ) {
602 $formatter = LogFormatter::newFromRow( $rc->mAttribs );
603 $formatter->setContext( $this->getContext() );
604 $formatter->setShowUserToolLinks( true );
605 $mark = $this->getLanguage()->getDirMark();
606
607 return $formatter->getActionText() . " $mark" . $formatter->getComment();
608 }
609
610 /**
611 * Insert a formatted comment
612 * @param RecentChange $rc
613 * @return string
614 */
615 public function insertComment( $rc ) {
616 if ( $this->isDeleted( $rc, Revision::DELETED_COMMENT ) ) {
617 return ' <span class="history-deleted">' .
618 $this->msg( 'rev-deleted-comment' )->escaped() . '</span>';
619 } else {
620 return Linker::commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle(),
621 // Whether section links should refer to local page (using default false)
622 false,
623 // wikid to generate links for (using default null) */
624 null,
625 // whether parentheses should be rendered as part of the message
626 false );
627 }
628 }
629
630 /**
631 * Returns the string which indicates the number of watching users
632 * @param int $count Number of user watching a page
633 * @return string
634 */
635 protected function numberofWatchingusers( $count ) {
636 if ( $count <= 0 ) {
637 return '';
638 }
639
640 return $this->watchMsgCache->getWithSetCallback(
641 "watching-users-msg:$count",
642 function () use ( $count ) {
643 return $this->msg( 'number-of-watching-users-for-recent-changes' )
644 ->numParams( $count )->escaped();
645 }
646 );
647 }
648
649 /**
650 * Determine if said field of a revision is hidden
651 * @param RCCacheEntry|RecentChange $rc
652 * @param int $field One of DELETED_* bitfield constants
653 * @return bool
654 */
655 public static function isDeleted( $rc, $field ) {
656 return ( $rc->mAttribs['rc_deleted'] & $field ) == $field;
657 }
658
659 /**
660 * Determine if the current user is allowed to view a particular
661 * field of this revision, if it's marked as deleted.
662 * @param RCCacheEntry|RecentChange $rc
663 * @param int $field
664 * @param User|null $user User object to check, or null to use $wgUser
665 * @return bool
666 */
667 public static function userCan( $rc, $field, User $user = null ) {
668 if ( $rc->mAttribs['rc_type'] == RC_LOG ) {
669 return LogEventsList::userCanBitfield( $rc->mAttribs['rc_deleted'], $field, $user );
670 } else {
671 return Revision::userCanBitfield( $rc->mAttribs['rc_deleted'], $field, $user );
672 }
673 }
674
675 /**
676 * @param string $link
677 * @param bool $watched
678 * @return string
679 */
680 protected function maybeWatchedLink( $link, $watched = false ) {
681 if ( $watched ) {
682 return '<strong class="mw-watched">' . $link . '</strong>';
683 } else {
684 return '<span class="mw-rc-unwatched">' . $link . '</span>';
685 }
686 }
687
688 /**
689 * Insert a rollback link
690 *
691 * @param string &$s
692 * @param RecentChange &$rc
693 */
694 public function insertRollback( &$s, &$rc ) {
695 if ( $rc->mAttribs['rc_type'] == RC_EDIT
696 && $rc->mAttribs['rc_this_oldid']
697 && $rc->mAttribs['rc_cur_id']
698 && $rc->getAttribute( 'page_latest' ) == $rc->mAttribs['rc_this_oldid']
699 ) {
700 $title = $rc->getTitle();
701 /** Check for rollback permissions, disallow special pages, and only
702 * show a link on the top-most revision */
703 if ( $title->quickUserCan( 'rollback', $this->getUser() ) ) {
704 $rev = new Revision( [
705 'title' => $title,
706 'id' => $rc->mAttribs['rc_this_oldid'],
707 'user' => $rc->mAttribs['rc_user'],
708 'user_text' => $rc->mAttribs['rc_user_text'],
709 'actor' => $rc->mAttribs['rc_actor'] ?? null,
710 'deleted' => $rc->mAttribs['rc_deleted']
711 ] );
712 $s .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
713 }
714 }
715 }
716
717 /**
718 * @param RecentChange $rc
719 * @return string
720 * @since 1.26
721 */
722 public function getRollback( RecentChange $rc ) {
723 $s = '';
724 $this->insertRollback( $s, $rc );
725 return $s;
726 }
727
728 /**
729 * @param string &$s
730 * @param RecentChange &$rc
731 * @param array &$classes
732 */
733 public function insertTags( &$s, &$rc, &$classes ) {
734 if ( empty( $rc->mAttribs['ts_tags'] ) ) {
735 return;
736 }
737
738 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
739 $rc->mAttribs['ts_tags'],
740 'changeslist',
741 $this->getContext()
742 );
743 $classes = array_merge( $classes, $newClasses );
744 $s .= ' ' . $tagSummary;
745 }
746
747 /**
748 * @param RecentChange $rc
749 * @param array &$classes
750 * @return string
751 * @since 1.26
752 */
753 public function getTags( RecentChange $rc, array &$classes ) {
754 $s = '';
755 $this->insertTags( $s, $rc, $classes );
756 return $s;
757 }
758
759 public function insertExtra( &$s, &$rc, &$classes ) {
760 // Empty, used for subclasses to add anything special.
761 }
762
763 protected function showAsUnpatrolled( RecentChange $rc ) {
764 return self::isUnpatrolled( $rc, $this->getUser() );
765 }
766
767 /**
768 * @param object|RecentChange $rc Database row from recentchanges or a RecentChange object
769 * @param User $user
770 * @return bool
771 */
772 public static function isUnpatrolled( $rc, User $user ) {
773 if ( $rc instanceof RecentChange ) {
774 $isPatrolled = $rc->mAttribs['rc_patrolled'];
775 $rcType = $rc->mAttribs['rc_type'];
776 $rcLogType = $rc->mAttribs['rc_log_type'];
777 } else {
778 $isPatrolled = $rc->rc_patrolled;
779 $rcType = $rc->rc_type;
780 $rcLogType = $rc->rc_log_type;
781 }
782
783 if ( !$isPatrolled ) {
784 if ( $user->useRCPatrol() ) {
785 return true;
786 }
787 if ( $user->useNPPatrol() && $rcType == RC_NEW ) {
788 return true;
789 }
790 if ( $user->useFilePatrol() && $rcLogType == 'upload' ) {
791 return true;
792 }
793 }
794
795 return false;
796 }
797
798 /**
799 * Determines whether a revision is linked to this change; this may not be the case
800 * when the categorization wasn't done by an edit but a conditional parser function
801 *
802 * @since 1.27
803 *
804 * @param RecentChange|RCCacheEntry $rcObj
805 * @return bool
806 */
807 protected function isCategorizationWithoutRevision( $rcObj ) {
808 return intval( $rcObj->getAttribute( 'rc_type' ) ) === RC_CATEGORIZE
809 && intval( $rcObj->getAttribute( 'rc_this_oldid' ) ) === 0;
810 }
811
812 /**
813 * Get recommended data attributes for a change line.
814 * @param RecentChange $rc
815 * @return string[] attribute name => value
816 */
817 protected function getDataAttributes( RecentChange $rc ) {
818 $attrs = [];
819
820 $type = $rc->getAttribute( 'rc_source' );
821 switch ( $type ) {
822 case RecentChange::SRC_EDIT:
823 case RecentChange::SRC_NEW:
824 $attrs['data-mw-revid'] = $rc->mAttribs['rc_this_oldid'];
825 break;
826 case RecentChange::SRC_LOG:
827 $attrs['data-mw-logid'] = $rc->mAttribs['rc_logid'];
828 $attrs['data-mw-logaction'] =
829 $rc->mAttribs['rc_log_type'] . '/' . $rc->mAttribs['rc_log_action'];
830 break;
831 }
832
833 $attrs[ 'data-mw-ts' ] = $rc->getAttribute( 'rc_timestamp' );
834
835 return $attrs;
836 }
837
838 /**
839 * Sets the callable that generates a change line prefix added to the beginning of each line.
840 *
841 * @param callable $prefixer Callable to run that generates the change line prefix.
842 * Takes three parameters: a RecentChange object, a ChangesList object,
843 * and whether the current entry is a grouped entry.
844 */
845 public function setChangeLinePrefixer( callable $prefixer ) {
846 $this->changeLinePrefixer = $prefixer;
847 }
848 }