115 foreach ( $msgs as $msg ) {
116 $this->
messages[$msg] = $this->
msg( $msg )->escaped();
119 $this->target =
$options[
'target'] ??
'';
120 $this->contribs =
$options[
'contribs'] ??
'users';
121 $this->
namespace = $options['namespace'] ?? '';
122 $this->tagFilter =
$options[
'tagfilter'] ??
false;
123 $this->nsInvert =
$options[
'nsInvert'] ??
false;
124 $this->associated =
$options[
'associated'] ??
false;
126 $this->deletedOnly = !empty(
$options[
'deletedOnly'] );
127 $this->topOnly = !empty(
$options[
'topOnly'] );
128 $this->newOnly = !empty(
$options[
'newOnly'] );
129 $this->hideMinor = !empty(
$options[
'hideMinor'] );
132 $startTimestamp =
'';
135 $startTimestamp =
$options[
'start'] .
' 00:00:00';
138 $endTimestamp =
$options[
'end'] .
' 23:59:59';
151 $query = parent::getDefaultQuery();
165 return Html::rawElement(
'p', [
'class' =>
'mw-pager-navigation-bar' ],
166 parent::getNavigationBar()
204 $data = [ $this->mDb->select(
208 'ContribsPager::reallyDoQuery',
209 [ &
$data, $this, $offset, $limit, $order ]
216 foreach (
$query as $i => $row ) {
223 if ( $order === self::QUERY_ASCENDING ) {
248 if ( $this->contribs ==
'newbie' ) {
249 $max = $this->mDb->selectField(
'user',
'max(user_id)',
'', __METHOD__ );
250 $queryInfo[
'conds'][] =
$revQuery[
'fields'][
'rev_user'] .
' >' . (
int)( $max - $max / 100 );
251 # ignore local groups with the bot right
252 # @todo FIXME: Global groups may have 'bot' rights
254 if ( count( $groupsWithBotPermission ) ) {
255 $queryInfo[
'tables'][] =
'user_groups';
256 $queryInfo[
'conds'][] =
'ug_group IS NULL';
257 $queryInfo[
'join_conds'][
'user_groups'] = [
259 'ug_user = ' .
$revQuery[
'fields'][
'rev_user'],
261 'ug_expiry IS NULL OR ug_expiry >= ' .
262 $this->mDb->addQuotes( $this->mDb->timestamp() )
269 $queryInfo[
'conds'][] =
'rev_timestamp > ' .
270 $this->mDb->addQuotes( $this->mDb->timestamp(
wfTimestamp() - 30 * 24 * 60 * 60 ) );
273 $ipRangeConds = $user->isAnon() ? $this->getIpRangeConds( $this->mDb, $this->target ) :
null;
274 if ( $ipRangeConds ) {
275 $queryInfo[
'tables'][] =
'ip_changes';
284 'rev_timestamp' =>
'ipc_rev_timestamp',
285 'rev_id' =>
'ipc_rev_id',
292 $queryInfo[
'join_conds'][
'ip_changes'] = [
293 'LEFT JOIN', [
'ipc_rev_id = rev_id' ]
298 $conds = ActorMigration::newMigration()->getWhere( $this->mDb,
'rev_user', $user );
299 $queryInfo[
'conds'][] = $conds[
'conds'];
301 if (
isset( $conds[
'orconds'][
'actor'] ) ) {
303 $queryInfo[
'options'][
'USE INDEX'][
'temp_rev_user'] =
'actor_timestamp';
307 array_diff( $queryInfo[
'fields'], [
'rev_timestamp' ] ),
308 [
'rev_timestamp' =>
'revactor_timestamp' ]
311 $queryInfo[
'options'][
'USE INDEX'][
'revision'] =
312 isset( $conds[
'orconds'][
'userid'] ) ?
'user_timestamp' :
'usertext_timestamp';
317 if ( $this->deletedOnly ) {
318 $queryInfo[
'conds'][] =
'rev_deleted != 0';
321 if ( $this->topOnly ) {
322 $queryInfo[
'conds'][] =
'rev_id = page_latest';
325 if ( $this->newOnly ) {
326 $queryInfo[
'conds'][] =
'rev_parent_id = 0';
329 if ( $this->hideMinor ) {
330 $queryInfo[
'conds'][] =
'rev_minor_edit = 0';
333 $user = $this->getUser();
334 $queryInfo[
'conds'] =
array_merge( $queryInfo[
'conds'], $this->getNamespaceCond() );
337 if ( !$user->isAllowed(
'deletedhistory' ) ) {
339 }
elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
346 if ( self::isQueryableRange( $this->target ) ) {
347 $queryInfo[
'fields'][] =
'ipc_rev_timestamp';
351 $queryInfo[
'tables'],
352 $queryInfo[
'fields'],
354 $queryInfo[
'join_conds'],
355 $queryInfo[
'options'],
361 Hooks::run(
'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
367 if ( $this->
namespace !==
'' ) {
368 $selectedNS = $this->mDb->addQuotes( $this->
namespace );
369 $eq_op = $this->nsInvert ?
'!=' :
'=';
370 $bool_op = $this->nsInvert ?
'AND' :
'OR';
372 if ( !$this->associated ) {
373 return [
"page_namespace $eq_op $selectedNS" ];
376 $associatedNS = $this->mDb->addQuotes(
377 MWNamespace::getAssociated( $this->
namespace )
381 "page_namespace $eq_op $selectedNS " .
383 " page_namespace $eq_op $associatedNS"
398 if ( !$this->isQueryableRange( $ip ) ) {
402 list( $start, $end ) = IP::parseRange( $ip );
404 return 'ipc_hex BETWEEN ' . $db->addQuotes( $start ) .
' AND ' . $db->addQuotes( $end );
415 $limits = $this->getConfig()->get(
'RangeContributionsCIDRLimit' );
417 $bits = IP::parseCIDR( $ipRange )[1];
419 ( $bits ===
false ) ||
420 ( IP::isIPv4( $ipRange ) && $bits < $limits[
'IPv4'] ) ||
421 ( IP::isIPv6( $ipRange ) && $bits < $limits[
'IPv6'] )
434 return 'rev_timestamp';
441 return $this->tagFilter;
448 return $this->contribs;
455 return $this->target;
462 return $this->newOnly;
469 return $this->namespace;
481 # Do a link batch query
482 $this->mResult->seek( 0 );
484 $this->mParentLens = [];
486 $isIpRange = $this->isQueryableRange( $this->target );
487 # Give some pointers to make (last) links
488 foreach ( $this->mResult as $row ) {
489 if (
isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
490 $parentRevIds[] = $row->rev_parent_id;
492 if (
isset( $row->rev_id ) ) {
493 $this->mParentLens[$row->rev_id] = $row->rev_len;
494 if ( $this->contribs ===
'newbie' ) {
495 $batch->add( NS_USER, $row->user_name );
501 $batch->add( $row->page_namespace, $row->page_title );
504 # Fetch rev_len for revisions not already scanned above
510 $this->mResult->seek( 0 );
517 return "<ul class=\"mw-contributions-list\">\n";
546 $validRevision = (
bool)
$rev->getId();
547 }
catch ( Exception
$e ) {
548 $validRevision =
false;
551 return $validRevision ?
$rev :
null;
571 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
576 if (
isset( $row->page_namespace ) && isset( $row->page_title ) ) {
577 $page = Title::newFromRow( $row );
579 $rev = $this->tryToCreateValidRevision( $row, $page );
585 $page->getPrefixedText(),
586 [
'class' =>
'mw-contributions-title' ],
587 $page->isRedirect() ? [
'redirect' =>
'no' ] : []
589 # Mark current revisions
591 $user = $this->getUser();
593 if ( $row->rev_id === $row->page_latest ) {
594 $topmarktext .=
'<span class="mw-uctop">' . $this->
messages[
'uctop'] .
'</span>';
595 $classes[] =
'mw-contributions-current';
597 if ( !$row->page_is_new && $page->quickUserCan(
'rollback', $user )
598 && $page->quickUserCan(
'edit', $user )
600 $this->preventClickjacking();
604 # Is there a visible previous revision?
609 [
'class' =>
'mw-changeslist-diff' ],
612 'oldid' => $row->rev_id
616 $difftext = $this->
messages[
'diff'];
621 [
'class' =>
'mw-changeslist-history' ],
622 [
'action' =>
'history' ]
625 if ( $row->rev_parent_id ===
null ) {
629 $chardiff =
' <span class="mw-changeslist-separator"></span> ';
631 $chardiff .=
' <span class="mw-changeslist-separator"></span> ';
634 if (
isset( $this->mParentLens[$row->rev_parent_id] ) ) {
635 $parentLen = $this->mParentLens[$row->rev_parent_id];
638 $chardiff =
' <span class="mw-changeslist-separator"></span> ';
644 $chardiff .=
' <span class="mw-changeslist-separator"></span> ';
647 $lang = $this->getLanguage();
651 # Show user names for /newbies as there may be different users.
652 # Note that only unprivileged users have rows with hidden user names excluded.
653 # When querying for an IP range, we want to always show user and user talk links.
656 || $this->isQueryableRange( $this->target ) ) {
657 $userlink =
' <span class="mw-changeslist-separator"></span> '
658 .
$lang->getDirMark()
660 $userlink .=
' ' . $this->msg(
'parentheses' )->rawParams(
665 if (
$rev->getParentId() === 0 ) {
669 if (
$rev->isMinor() ) {
682 $diffHistLinks = Html::rawElement(
'span',
683 [
'class' =>
'mw-changeslist-links' ],
686 Html::rawElement(
'span', [], $difftext ) .
688 Html::rawElement(
'span', [], $histlink )
699 Hooks::run(
'SpecialContributions::formatRow::flags', [ $this->
getContext(), $row, &$flags ] );
707 'articleLink' =>
$link,
708 'userlink' => $userlink,
709 'logText' => $comment,
714 # Denote if username is redacted for this edit
716 $templateParams[
'rev-deleted-user-contribs'] =
717 $this->msg(
'rev-deleted-user-contribs' )->escaped();
720 $ret = $this->templateParser->processTemplate(
721 'SpecialContributionsLine',
727 Hooks::run(
'ContributionsLineEnding', [ $this, &
$ret, $row, &$classes, &
$attribs ] );
729 [ Sanitizer::class,
'isReservedDataAttribute' ],
736 if ( $classes === [] &&
$attribs === [] &&
$ret ===
'' ) {
737 wfDebug(
"Dropping Special:Contribution row that could not be formatted\n" );
738 return "<!-- Could not format Special:Contribution row. -->\n";
752 if ( $this->
namespace || $this->deletedOnly ) {
754 return 'contributions page filtered for namespace or RevisionDeleted edits';
756 return 'contributions page unfiltered';
761 $this->preventClickjacking =
true;
768 return $this->preventClickjacking;
778 $start = $opts[
'start'] ??
'';
779 $end = $opts[
'end'] ??
'';
780 $year = $opts[
'year'] ??
'';
781 $month = $opts[
'month'] ??
'';
783 if ( $start !==
'' && $end !==
'' && $start > $end ) {
790 if ( $year !==
'' || $month !==
'' ) {
795 $legacyDateTime =
new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
796 $legacyDateTime = $legacyDateTime->modify(
'-1 day' );
801 $end = $legacyDateTime->format(
'Y-m-d' );
804 $opts[
'start'] = $start;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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.
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.
static revDateLink(Revision $rev, User $user, Language $lang, $title=null)
Render the date and time of a revision in the current user language based on whether the user is able...
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, $useParentheses=true)
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 getQueryInfo( $options=[])
Return the tables, fields, and join conditions to be selected to create a new revision object.
static getParentLengths( $db, array $revIds)
Do a batched query to get the parent revision lengths.
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
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
this hook is for auditing only 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 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
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error messages
returning false will NOT prevent logging $e
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Interface for objects which can provide a MediaWiki context on request.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
if(!isset( $args[0])) $lang