63 foreach ( $msgs as $msg ) {
64 $this->messages[$msg] = $this->
msg( $msg )->escaped();
68 $this->contribs = isset(
$options[
'contribs'] ) ?
$options[
'contribs'] :
'users';
69 $this->
namespace = isset(
$options['namespace'] ) ?
$options['namespace'] : '';
70 $this->tagFilter = isset( $options['tagfilter'] ) ?
$options['tagfilter'] : false;
71 $this->nsInvert = isset( $options['nsInvert'] ) ?
$options['nsInvert'] : false;
72 $this->associated = isset( $options['associated'] ) ?
$options['associated'] : false;
74 $this->deletedOnly = !empty( $options['deletedOnly'] );
75 $this->topOnly = !empty( $options['topOnly'] );
76 $this->newOnly = !empty( $options['newOnly'] );
77 $this->hideMinor = !empty( $options['hideMinor'] );
82 if ( $options['start'] ) {
83 $startTimestamp =
$options[
'start'] .
' 00:00:00';
86 $endTimestamp =
$options[
'end'] .
' 23:59:59';
99 $this->templateParser =
new TemplateParser();
103 $query = parent::getDefaultQuery();
143 $data = [ $this->mDb->select(
147 'ContribsPager::reallyDoQuery',
148 [ &$data, $this, $offset, $limit, $descending ]
154 foreach ( $data as
$query ) {
155 foreach (
$query as $i => $row ) {
169 $result = array_slice( $result, 0, $limit );
172 $result = array_values( $result );
178 $revQuery = Revision::getQueryInfo( [
'page',
'user' ] );
181 'fields' => array_merge(
$revQuery[
'fields'], [
'page_is_new' ] ),
187 if ( $this->contribs ==
'newbie' ) {
188 $max = $this->mDb->selectField(
'user',
'max(user_id)',
'', __METHOD__ );
189 $queryInfo[
'conds'][] =
$revQuery[
'fields'][
'rev_user'] .
' >' . (int)( $max - $max / 100 );
190 # ignore local groups with the bot right
191 # @todo FIXME: Global groups may have 'bot' rights
193 if ( count( $groupsWithBotPermission ) ) {
194 $queryInfo[
'tables'][] =
'user_groups';
195 $queryInfo[
'conds'][] =
'ug_group IS NULL';
196 $queryInfo[
'join_conds'][
'user_groups'] = [
198 'ug_user = ' .
$revQuery[
'fields'][
'rev_user'],
199 'ug_group' => $groupsWithBotPermission,
200 'ug_expiry IS NULL OR ug_expiry >= ' .
201 $this->mDb->addQuotes( $this->mDb->timestamp() )
208 $queryInfo[
'conds'][] =
'rev_timestamp > ' .
209 $this->mDb->addQuotes( $this->mDb->timestamp(
wfTimestamp() - 30 * 24 * 60 * 60 ) );
212 $ipRangeConds = $user->isAnon() ? $this->getIpRangeConds( $this->mDb, $this->target ) :
null;
213 if ( $ipRangeConds ) {
214 $queryInfo[
'tables'][] =
'ip_changes';
215 $queryInfo[
'join_conds'][
'ip_changes'] = [
216 'LEFT JOIN', [
'ipc_rev_id = rev_id' ]
218 $queryInfo[
'conds'][] = $ipRangeConds;
221 $conds = ActorMigration::newMigration()->getWhere( $this->mDb,
'rev_user', $user );
222 $queryInfo[
'conds'][] = $conds[
'conds'];
224 if ( count( $conds[
'orconds'] ) === 1 ) {
225 if ( isset( $conds[
'orconds'][
'actor'] ) ) {
227 $queryInfo[
'options'][
'USE INDEX'][
'temp_rev_user'] =
'actor_timestamp';
229 $queryInfo[
'options'][
'USE INDEX'][
'revision'] =
230 isset( $conds[
'orconds'][
'userid'] ) ?
'user_timestamp' :
'usertext_timestamp';
236 if ( $this->deletedOnly ) {
237 $queryInfo[
'conds'][] =
'rev_deleted != 0';
240 if ( $this->topOnly ) {
241 $queryInfo[
'conds'][] =
'rev_id = page_latest';
244 if ( $this->newOnly ) {
245 $queryInfo[
'conds'][] =
'rev_parent_id = 0';
248 if ( $this->hideMinor ) {
249 $queryInfo[
'conds'][] =
'rev_minor_edit = 0';
252 $user = $this->getUser();
253 $queryInfo[
'conds'] = array_merge( $queryInfo[
'conds'], $this->getNamespaceCond() );
256 if ( !$user->isAllowed(
'deletedhistory' ) ) {
257 $queryInfo[
'conds'][] = $this->mDb->bitAnd(
'rev_deleted', Revision::DELETED_USER ) .
' = 0';
258 } elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
259 $queryInfo[
'conds'][] = $this->mDb->bitAnd(
'rev_deleted', Revision::SUPPRESSED_USER ) .
260 ' != ' . Revision::SUPPRESSED_USER;
265 if ( self::isQueryableRange( $this->target ) ) {
266 $queryInfo[
'fields'][] =
'ipc_rev_timestamp';
270 $queryInfo[
'tables'],
271 $queryInfo[
'fields'],
273 $queryInfo[
'join_conds'],
274 $queryInfo[
'options'],
280 Hooks::run(
'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
286 if ( $this->
namespace !==
'' ) {
287 $selectedNS = $this->mDb->addQuotes( $this->
namespace );
288 $eq_op = $this->nsInvert ?
'!=' :
'=';
289 $bool_op = $this->nsInvert ?
'AND' :
'OR';
291 if ( !$this->associated ) {
292 return [
"page_namespace $eq_op $selectedNS" ];
295 $associatedNS = $this->mDb->addQuotes(
296 MWNamespace::getAssociated( $this->
namespace )
300 "page_namespace $eq_op $selectedNS " .
302 " page_namespace $eq_op $associatedNS"
317 if ( !$this->isQueryableRange( $ip ) ) {
321 list( $start, $end ) = IP::parseRange( $ip );
323 return 'ipc_hex BETWEEN ' . $db->addQuotes( $start ) .
' AND ' . $db->addQuotes( $end );
334 $limits = $this->getConfig()->get(
'RangeContributionsCIDRLimit' );
336 $bits = IP::parseCIDR( $ipRange )[1];
338 ( $bits ===
false ) ||
339 ( IP::isIPv4( $ipRange ) && $bits < $limits[
'IPv4'] ) ||
340 ( IP::isIPv6( $ipRange ) && $bits < $limits[
'IPv6'] )
355 if ( $this->isQueryableRange( $this->target ) ) {
356 return 'ipc_rev_timestamp';
358 return 'rev_timestamp';
363 # Do a link batch query
364 $this->mResult->seek( 0 );
366 $this->mParentLens = [];
368 $isIpRange = $this->isQueryableRange( $this->target );
369 # Give some pointers to make (last) links
370 foreach ( $this->mResult as $row ) {
371 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
372 $parentRevIds[] = $row->rev_parent_id;
374 if ( isset( $row->rev_id ) ) {
375 $this->mParentLens[$row->rev_id] = $row->rev_len;
376 if ( $this->contribs ===
'newbie' ) {
377 $batch->add( NS_USER, $row->user_name );
379 } elseif ( $isIpRange ) {
383 $batch->add( $row->page_namespace, $row->page_title );
386 # Fetch rev_len for revisions not already scanned above
387 $this->mParentLens += Revision::getParentLengths(
389 array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
392 $this->mResult->seek( 0 );
399 return "<ul class=\"mw-contributions-list\">\n";
426 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
435 Wikimedia\suppressWarnings();
438 $validRevision = (bool)
$rev->getId();
439 }
catch ( Exception
$e ) {
440 $validRevision =
false;
442 Wikimedia\restoreWarnings();
444 if ( $validRevision ) {
447 $page = Title::newFromRow( $row );
450 $page->getPrefixedText(),
451 [
'class' =>
'mw-contributions-title' ],
452 $page->isRedirect() ? [
'redirect' =>
'no' ] : []
454 # Mark current revisions
456 $user = $this->getUser();
458 if ( $row->rev_id === $row->page_latest ) {
459 $topmarktext .=
'<span class="mw-uctop">' . $this->messages[
'uctop'] .
'</span>';
460 $classes[] =
'mw-contributions-current';
462 if ( !$row->page_is_new && $page->quickUserCan(
'rollback', $user )
463 && $page->quickUserCan(
'edit', $user )
465 $this->preventClickjacking();
469 # Is there a visible previous revision?
470 if (
$rev->userCan( Revision::DELETED_TEXT, $user ) &&
$rev->getParentId() !== 0 ) {
473 new HtmlArmor( $this->messages[
'diff'] ),
474 [
'class' =>
'mw-changeslist-diff' ],
477 'oldid' => $row->rev_id
481 $difftext = $this->messages[
'diff'];
485 new HtmlArmor( $this->messages[
'hist'] ),
486 [
'class' =>
'mw-changeslist-history' ],
487 [
'action' =>
'history' ]
490 if ( $row->rev_parent_id ===
null ) {
494 $chardiff =
' <span class="mw-changeslist-separator">. .</span> ';
496 $chardiff .=
' <span class="mw-changeslist-separator">. .</span> ';
499 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
500 $parentLen = $this->mParentLens[$row->rev_parent_id];
503 $chardiff =
' <span class="mw-changeslist-separator">. .</span> ';
509 $chardiff .=
' <span class="mw-changeslist-separator">. .</span> ';
512 $lang = $this->getLanguage();
514 $date =
$lang->userTimeAndDate( $row->rev_timestamp, $user );
515 if (
$rev->userCan( Revision::DELETED_TEXT, $user ) ) {
519 [
'class' =>
'mw-changeslist-date' ],
520 [
'oldid' => intval( $row->rev_id ) ]
523 $d = htmlspecialchars( $date );
525 if (
$rev->isDeleted( Revision::DELETED_TEXT ) ) {
526 $d =
'<span class="history-deleted">' . $d .
'</span>';
529 # Show user names for /newbies as there may be different users.
530 # Note that only unprivileged users have rows with hidden user names excluded.
531 # When querying for an IP range, we want to always show user and user talk links.
533 if ( ( $this->contribs ==
'newbie' && !
$rev->isDeleted( Revision::DELETED_USER ) )
534 || $this->isQueryableRange( $this->target ) ) {
535 $userlink =
' . . ' .
$lang->getDirMark()
537 $userlink .=
' ' . $this->msg(
'parentheses' )->rawParams(
542 if (
$rev->getParentId() === 0 ) {
546 if (
$rev->isMinor() ) {
555 $diffHistLinks = $this->msg(
'parentheses' )
556 ->rawParams( $difftext . $this->messages[
'pipe-separator'] . $histlink )
565 $classes = array_merge( $classes, $newClasses );
567 Hooks::run(
'SpecialContributions::formatRow::flags', [ $this->
getContext(), $row, &$flags ] );
572 'diffHistLinks' => $diffHistLinks,
573 'charDifference' => $chardiff,
575 'articleLink' =>
$link,
576 'userlink' => $userlink,
577 'logText' => $comment,
578 'topmarktext' => $topmarktext,
579 'tagSummary' => $tagSummary,
582 # Denote if username is redacted for this edit
583 if (
$rev->isDeleted( Revision::DELETED_USER ) ) {
584 $templateParams[
'rev-deleted-user-contribs'] =
585 $this->msg(
'rev-deleted-user-contribs' )->escaped();
588 $ret = $this->templateParser->processTemplate(
589 'SpecialContributionsLine',
595 Hooks::run(
'ContributionsLineEnding', [ $this, &
$ret, $row, &$classes, &
$attribs ] );
601 if ( $classes === [] &&
$attribs === [] &&
$ret ===
'' ) {
602 wfDebug(
"Dropping Special:Contribution row that could not be formatted\n" );
603 return "<!-- Could not format Special:Contribution row. -->\n";
617 if ( $this->
namespace || $this->deletedOnly ) {
619 return 'contributions page filtered for namespace or RevisionDeleted edits';
621 return 'contributions page unfiltered';
626 $this->preventClickjacking =
true;
633 return $this->preventClickjacking;
643 $start = isset( $opts[
'start'] ) ? $opts[
'start'] :
'';
644 $end = isset( $opts[
'end'] ) ? $opts[
'end'] :
'';
645 $year = isset( $opts[
'year'] ) ? $opts[
'year'] :
'';
646 $month = isset( $opts[
'month'] ) ? $opts[
'month'] :
'';
648 if ( $start !==
'' && $end !==
'' && $start > $end ) {
655 if ( $year !==
'' || $month !==
'' ) {
660 $legacyDateTime =
new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
661 $legacyDateTime = $legacyDateTime->modify(
'-1 day' );
666 $end = $legacyDateTime->format(
'Y-m-d' );
669 $opts[
'start'] = $start;
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfArrayFilterByKey(array $arr, callable $callback)
Like array_filter with ARRAY_FILTER_USE_KEY, but works pre-5.6.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
static showCharacterDifference( $old, $new, IContextSource $context=null)
Show formatted char difference.
static flag( $flag, IContextSource $context=null)
Make an "<abbr>" element for a given change flag.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Marks HTML that shouldn't be escaped.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
static generateRollback( $rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
static formatRevisionSize( $size)
static userTalkLink( $userId, $userText)
static getRevDeleteLink(User $user, Revision $rev, Title $title)
Get a revision-deletion link, or disabled link, or nothing, depending on user permissions & the setti...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
usually copyright or history_copyright This message must be in HTML not wikitext & $link
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
returning false will NOT prevent logging $e
Interface for objects which can provide a MediaWiki context on request.
if(!isset( $args[0])) $lang