Go to the documentation of this file.
63 foreach ( $msgs
as $msg ) {
64 $this->
messages[$msg] = $this->
msg( $msg )->escaped();
67 $this->target =
$options[
'target'] ??
'';
68 $this->contribs =
$options[
'contribs'] ??
'users';
69 $this->
namespace = $options['namespace'] ?? '';
70 $this->tagFilter =
$options[
'tagfilter'] ??
false;
71 $this->nsInvert =
$options[
'nsInvert'] ??
false;
72 $this->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'] );
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 ]
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;
222 $queryInfo[
'conds'][] = $conds[
'conds'];
224 if ( isset( $conds[
'orconds'][
'actor'] ) ) {
226 $queryInfo[
'options'][
'USE INDEX'][
'temp_rev_user'] =
'actor_timestamp';
228 $queryInfo[
'options'][
'USE INDEX'][
'revision'] =
229 isset( $conds[
'orconds'][
'userid'] ) ?
'user_timestamp' :
'usertext_timestamp';
234 if ( $this->deletedOnly ) {
235 $queryInfo[
'conds'][] =
'rev_deleted != 0';
238 if ( $this->topOnly ) {
239 $queryInfo[
'conds'][] =
'rev_id = page_latest';
242 if ( $this->newOnly ) {
243 $queryInfo[
'conds'][] =
'rev_parent_id = 0';
246 if ( $this->hideMinor ) {
247 $queryInfo[
'conds'][] =
'rev_minor_edit = 0';
250 $user = $this->getUser();
251 $queryInfo[
'conds'] = array_merge( $queryInfo[
'conds'], $this->getNamespaceCond() );
254 if ( !
$user->isAllowed(
'deletedhistory' ) ) {
256 } elseif ( !
$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
263 if ( self::isQueryableRange( $this->target ) ) {
264 $queryInfo[
'fields'][] =
'ipc_rev_timestamp';
268 $queryInfo[
'tables'],
269 $queryInfo[
'fields'],
271 $queryInfo[
'join_conds'],
272 $queryInfo[
'options'],
278 Hooks::run(
'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
284 if ( $this->
namespace !==
'' ) {
285 $selectedNS = $this->mDb->addQuotes( $this->
namespace );
286 $eq_op = $this->nsInvert ?
'!=' :
'=';
287 $bool_op = $this->nsInvert ?
'AND' :
'OR';
289 if ( !$this->associated ) {
290 return [
"page_namespace $eq_op $selectedNS" ];
293 $associatedNS = $this->mDb->addQuotes(
298 "page_namespace $eq_op $selectedNS " .
300 " page_namespace $eq_op $associatedNS"
315 if ( !$this->isQueryableRange( $ip ) ) {
321 return 'ipc_hex BETWEEN ' . $db->addQuotes( $start ) .
' AND ' . $db->addQuotes( $end );
332 $limits = $this->getConfig()->get(
'RangeContributionsCIDRLimit' );
336 ( $bits ===
false ) ||
337 (
IP::isIPv4( $ipRange ) && $bits < $limits[
'IPv4'] ) ||
338 (
IP::isIPv6( $ipRange ) && $bits < $limits[
'IPv6'] )
353 if ( $this->isQueryableRange( $this->target ) ) {
354 return 'ipc_rev_timestamp';
356 return 'rev_timestamp';
361 # Do a link batch query
362 $this->mResult->seek( 0 );
364 $this->mParentLens = [];
366 $isIpRange = $this->isQueryableRange( $this->target );
367 # Give some pointers to make (last) links
368 foreach ( $this->mResult
as $row ) {
369 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
370 $parentRevIds[] = $row->rev_parent_id;
372 if ( isset( $row->rev_id ) ) {
373 $this->mParentLens[$row->rev_id] = $row->rev_len;
374 if ( $this->contribs ===
'newbie' ) {
377 } elseif ( $isIpRange ) {
381 $batch->add( $row->page_namespace, $row->page_title );
384 # Fetch rev_len for revisions not already scanned above
387 array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
390 $this->mResult->seek( 0 );
397 return "<ul class=\"mw-contributions-list\">\n";
422 Wikimedia\suppressWarnings();
425 $validRevision = (bool)
$rev->getId();
426 }
catch ( Exception
$e ) {
427 $validRevision =
false;
429 Wikimedia\restoreWarnings();
430 return $validRevision ?
$rev :
null;
450 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
452 $rev = $this->tryToCreateValidRevision( $row );
459 $page->getPrefixedText(),
460 [
'class' =>
'mw-contributions-title' ],
461 $page->isRedirect() ? [
'redirect' =>
'no' ] : []
463 # Mark current revisions
465 $user = $this->getUser();
467 if ( $row->rev_id === $row->page_latest ) {
468 $topmarktext .=
'<span class="mw-uctop">' . $this->
messages[
'uctop'] .
'</span>';
469 $classes[] =
'mw-contributions-current';
471 if ( !$row->page_is_new && $page->quickUserCan(
'rollback',
$user )
472 && $page->quickUserCan(
'edit',
$user )
474 $this->preventClickjacking();
478 # Is there a visible previous revision?
483 [
'class' =>
'mw-changeslist-diff' ],
486 'oldid' => $row->rev_id
490 $difftext = $this->
messages[
'diff'];
495 [
'class' =>
'mw-changeslist-history' ],
496 [
'action' =>
'history' ]
499 if ( $row->rev_parent_id ===
null ) {
503 $chardiff =
' <span class="mw-changeslist-separator"></span> ';
505 $chardiff .=
' <span class="mw-changeslist-separator"></span> ';
508 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
509 $parentLen = $this->mParentLens[$row->rev_parent_id];
512 $chardiff =
' <span class="mw-changeslist-separator"></span> ';
518 $chardiff .=
' <span class="mw-changeslist-separator"></span> ';
521 $lang = $this->getLanguage();
523 $date =
$lang->userTimeAndDate( $row->rev_timestamp,
$user );
528 [
'class' =>
'mw-changeslist-date' ],
529 [
'oldid' => intval( $row->rev_id ) ]
532 $d = htmlspecialchars( $date );
535 $d =
'<span class="history-deleted">' . $d .
'</span>';
538 # Show user names for /newbies as there may be different users.
539 # Note that only unprivileged users have rows with hidden user names excluded.
540 # When querying for an IP range, we want to always show user and user talk links.
543 || $this->isQueryableRange( $this->target ) ) {
544 $userlink =
' <span class="mw-changeslist-separator"></span> '
545 .
$lang->getDirMark()
547 $userlink .=
' ' . $this->msg(
'parentheses' )->rawParams(
552 if (
$rev->getParentId() === 0 ) {
556 if (
$rev->isMinor() ) {
565 $diffHistLinks = $this->msg(
'parentheses' )
566 ->rawParams( $difftext . $this->
messages[
'pipe-separator'] . $histlink )
575 $classes = array_merge( $classes, $newClasses );
582 'diffHistLinks' => $diffHistLinks,
583 'charDifference' => $chardiff,
585 'articleLink' =>
$link,
586 'userlink' => $userlink,
587 'logText' => $comment,
588 'topmarktext' => $topmarktext,
589 'tagSummary' => $tagSummary,
592 # Denote if username is redacted for this edit
594 $templateParams[
'rev-deleted-user-contribs'] =
595 $this->msg(
'rev-deleted-user-contribs' )->escaped();
598 $ret = $this->templateParser->processTemplate(
599 'SpecialContributionsLine',
614 if ( $classes === [] &&
$attribs === [] &&
$ret ===
'' ) {
615 wfDebug(
"Dropping Special:Contribution row that could not be formatted\n" );
616 return "<!-- Could not format Special:Contribution row. -->\n";
630 if ( $this->
namespace || $this->deletedOnly ) {
632 return 'contributions page filtered for namespace or RevisionDeleted edits';
634 return 'contributions page unfiltered';
639 $this->preventClickjacking =
true;
646 return $this->preventClickjacking;
656 $start = $opts[
'start'] ??
'';
657 $end = $opts[
'end'] ??
'';
658 $year = $opts[
'year'] ??
'';
659 $month = $opts[
'month'] ??
'';
661 if ( $start !==
'' && $end !==
'' && $start > $end ) {
668 if ( $year !==
'' || $month !==
'' ) {
673 $legacyDateTime =
new DateTime( $legacyTimestamp->getTimestamp( TS_ISO_8601 ) );
674 $legacyDateTime = $legacyDateTime->modify(
'-1 day' );
679 $end = $legacyDateTime->format(
'Y-m-d' );
682 $opts[
'start'] = $start;
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Marks HTML that shouldn't be escaped.
static userTalkLink( $userId, $userText)
Class representing a list of titles The execute() method checks them all for existence and adds them ...
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
if(!isset( $args[0])) $lang
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
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
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static isIPv6( $ip)
Given a string, determine if it as valid IP in IPv6 only.
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
static newMigration()
Static constructor.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
null for the 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
static getQueryInfo( $options=[])
Return the tables, fields, and join conditions to be selected to create a new revision object.
static generateRollback( $rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
static newFromRow( $row)
Make a Title object from a DB row.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
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
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static flag( $flag, IContextSource $context=null)
Make an "<abbr>" element for a given change flag.
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))
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
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.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
static getParentLengths( $db, array $revIds)
Do a batched query to get the parent revision lengths.
static parseRange( $range)
Given a string range in a number of formats, return the start and end of the range in hexadecimal.
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 formatRevisionSize( $size)
static showCharacterDifference( $old, $new, IContextSource $context=null)
Show formatted char difference.
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
static isIPv4( $ip)
Given a string, determine if it as valid IP in IPv4 only.
Interface for objects which can provide a MediaWiki context on request.
static parseCIDR( $range)
Convert a network specification in CIDR notation to an integer network and a number of bits.
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
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
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error messages
usually copyright or history_copyright This message must be in HTML not wikitext & $link
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static getAssociated( $index)
Get the associated namespace.
static getGroupsWithPermission( $role)
Get all the groups who have a given permission.