36 parent::__construct(
'Contributions' );
44 $out->addModuleStyles( [
46 'mediawiki.special.changeslist',
53 $target = $par ??
$request->getVal(
'target' );
55 if (
$request->getVal(
'contribs' ) ==
'newbie' || $par ===
'newbies' ) {
57 $this->opts[
'contribs'] =
'newbie';
59 $this->opts[
'contribs'] =
'user';
62 $this->opts[
'deletedOnly'] =
$request->getBool(
'deletedOnly' );
64 if ( !strlen( $target ) ) {
74 $this->opts[
'limit'] =
$request->getInt(
'limit', $user->getOption(
'rclimit' ) );
75 $this->opts[
'target'] = $target;
76 $this->opts[
'topOnly'] =
$request->getBool(
'topOnly' );
77 $this->opts[
'newOnly'] =
$request->getBool(
'newOnly' );
78 $this->opts[
'hideMinor'] =
$request->getBool(
'hideMinor' );
81 if ( $this->opts[
'contribs'] ===
'newbie' ) {
83 $out->addSubtitle( $this->
msg(
'sp-contributions-newbies-sub' ) );
86 $this->
msg(
'sp-contributions-newbies-title' )->
plain()
87 )->inContentLanguage() );
98 $this->
msg(
'contributions-title', $target )->
plain()
99 )->inContentLanguage() );
101 $nt = Title::makeTitleSafe( NS_USER, $target );
111 $id = $userObj->getId();
113 $target = $nt->getText();
115 $out->setHTMLTitle( $this->
msg(
117 $this->
msg(
'contributions-title', $target )->
plain()
118 )->inContentLanguage() );
120 # For IP ranges, we want the contributionsSub, but not the skin-dependent
121 # links under 'Tools', which may include irrelevant links like 'Logs'.
122 if ( !IP::isValidRange( $target ) ) {
123 $this->
getSkin()->setRelevantUser( $userObj );
127 $ns =
$request->getVal(
'namespace',
null );
128 if ( $ns !==
null && $ns !==
'' ) {
129 $this->opts[
'namespace'] = intval( $ns );
131 $this->opts[
'namespace'] =
'';
134 $this->opts[
'associated'] =
$request->getBool(
'associated' );
135 $this->opts[
'nsInvert'] = (bool)
$request->getVal(
'nsInvert' );
136 $this->opts[
'tagfilter'] = (
string)
$request->getVal(
'tagfilter' );
140 if ( $user->isAllowed(
'markbotedits' ) &&
$request->getBool(
'bot' ) ) {
141 $this->opts[
'bot'] =
'1';
144 $skip =
$request->getText(
'offset' ) ||
$request->getText(
'dir' ) ==
'prev';
145 # Offset overrides year/month selection
147 $this->opts[
'year'] =
$request->getVal(
'year' );
148 $this->opts[
'month'] =
$request->getVal(
'month' );
150 $this->opts[
'start'] =
$request->getVal(
'start' );
151 $this->opts[
'end'] =
$request->getVal(
'end' );
155 $feedType =
$request->getVal(
'feed' );
158 'action' =>
'feedcontributions',
161 if ( $this->opts[
'topOnly'] ) {
162 $feedParams[
'toponly'] =
true;
164 if ( $this->opts[
'newOnly'] ) {
165 $feedParams[
'newonly'] =
true;
167 if ( $this->opts[
'hideMinor'] ) {
168 $feedParams[
'hideminor'] =
true;
170 if ( $this->opts[
'deletedOnly'] ) {
171 $feedParams[
'deletedonly'] =
true;
173 if ( $this->opts[
'tagfilter'] !==
'' ) {
174 $feedParams[
'tagfilter'] = $this->opts[
'tagfilter'];
176 if ( $this->opts[
'namespace'] !==
'' ) {
177 $feedParams[
'namespace'] = $this->opts[
'namespace'];
181 if ( $feedType && $this->opts[
'year'] !==
null ) {
182 $feedParams[
'year'] = $this->opts[
'year'];
184 if ( $feedType && $this->opts[
'month'] !==
null ) {
185 $feedParams[
'month'] = $this->opts[
'month'];
191 $feedParams[
'feedformat'] = $feedType;
194 $out->redirect( $url,
'301' );
202 if ( Hooks::run(
'SpecialContributionsBeforeMainOutput', [ $id, $userObj, $this ] ) ) {
208 'contribs' => $this->opts[
'contribs'],
209 'namespace' => $this->opts[
'namespace'],
210 'tagfilter' => $this->opts[
'tagfilter'],
211 'start' => $this->opts[
'start'],
212 'end' => $this->opts[
'end'],
213 'deletedOnly' => $this->opts[
'deletedOnly'],
214 'topOnly' => $this->opts[
'topOnly'],
215 'newOnly' => $this->opts[
'newOnly'],
216 'hideMinor' => $this->opts[
'hideMinor'],
217 'nsInvert' => $this->opts[
'nsInvert'],
218 'associated' => $this->opts[
'associated'],
221 if ( IP::isValidRange( $target ) && !$pager->isQueryableRange( $target ) ) {
223 $limits = $this->
getConfig()->get(
'RangeContributionsCIDRLimit' );
224 $limit = $limits[ IP::isIPv4( $target ) ?
'IPv4' :
'IPv6' ];
225 $out->addWikiMsg(
'sp-contributions-outofrange', $limit );
226 } elseif ( !$pager->getNumRows() ) {
227 $out->addWikiMsg(
'nocontribs', $target );
229 # Show a message about replica DB lag, if applicable
230 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
231 $lag = $lb->safeGetLag( $pager->getDatabase() );
233 $out->showLagWarning( $lag );
238 $output =
'<p>' . $pager->getNavigationBar() .
'</p>' .
240 '<p>' . $pager->getNavigationBar() .
'</p>';
245 $out->preventClickjacking( $pager->getPreventClickjacking() );
247 # Show the appropriate "footer" message - WHOIS tools, etc.
248 if ( $this->opts[
'contribs'] ==
'newbie' ) {
249 $message =
'sp-contributions-footer-newbies';
250 } elseif ( IP::isValidRange( $target ) ) {
251 $message =
'sp-contributions-footer-anon-range';
252 } elseif ( IP::isIPAddress( $target ) ) {
253 $message =
'sp-contributions-footer-anon';
254 } elseif ( $userObj->isAnon() ) {
258 $message =
'sp-contributions-footer';
263 if ( !$this->
msg( $message, $target )->isDisabled() ) {
265 "<div class='mw-contributions-footer'>\n$1\n</div>",
266 [ $message, $target ] );
281 if ( $userObj->isAnon() ) {
286 if ( !
User::isIP( $userObj->getName() ) && !$userObj->isIPRange() ) {
288 "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
290 'contributions-userdoesnotexist',
295 $this->
getOutput()->setStatusCode( 404 );
298 $user = htmlspecialchars( $userObj->getName() );
300 $user = $this->
getLinkRenderer()->makeLink( $userObj->getUserPage(), $userObj->getName() );
302 $nt = $userObj->getUserPage();
303 $talk = $userObj->getTalkPage();
314 if ( $userObj->isIPRange() ) {
322 $nt = MWNamespace::getCanonicalName( NS_USER ) .
':' . $block->getTarget();
333 'showIfEmpty' =>
false,
336 'sp-contributions-blocked-notice-anon' :
337 'sp-contributions-blocked-notice',
338 $userObj->getName() # Support GENDER in
'sp-contributions-blocked-notice'
340 'offset' =>
'' # don
't use WebRequest parameter offset
347 return $this->msg( 'contribsub2
' )->rawParams( $user, $links )->params( $userObj->getName() );
358 public static function getUserLinks( SpecialPage $sp, User $target ) {
359 $id = $target->getId();
360 $username = $target->getName();
361 $userpage = $target->getUserPage();
362 $talkpage = $target->getTalkPage();
364 $linkRenderer = $sp->getLinkRenderer();
366 # No talk pages for IP ranges.
367 if ( !IP::isValidRange( $username ) ) {
368 $tools['user-talk
'] = $linkRenderer->makeLink(
370 $sp->msg( 'sp-contributions-talk
' )->text()
374 if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $username ) ) ) {
375 if ( $sp->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
376 if ( $target->isBlocked() && $target->getBlock()->getType() != Block::TYPE_AUTO ) {
377 $tools['block'] = $linkRenderer->makeKnownLink( # Change block link
378 SpecialPage::getTitleFor( 'Block', $username ),
379 $sp->msg( 'change-blocklink
' )->text()
381 $tools['unblock
'] = $linkRenderer->makeKnownLink( # Unblock link
382 SpecialPage::getTitleFor( 'Unblock
', $username ),
383 $sp->msg( 'unblocklink
' )->text()
385 } else { # User is not blocked
386 $tools['block'] = $linkRenderer->makeKnownLink( # Block link
387 SpecialPage::getTitleFor( 'Block', $username ),
388 $sp->msg( 'blocklink
' )->text()
394 $tools['log-
block'] = $linkRenderer->makeKnownLink(
395 SpecialPage::getTitleFor( 'Log
', 'block' ),
396 $sp->msg( 'sp-contributions-blocklog
' )->text(),
398 [ 'page
' => $userpage->getPrefixedText() ]
401 # Suppression log link (T61120)
402 if ( $sp->getUser()->isAllowed( 'suppressionlog
' ) ) {
403 $tools['log-suppression
'] = $linkRenderer->makeKnownLink(
404 SpecialPage::getTitleFor( 'Log
', 'suppress
' ),
405 $sp->msg( 'sp-contributions-suppresslog
', $username )->text(),
407 [ 'offender
' => $username ]
412 # Don't show some
links for IP ranges
417 $sp->msg(
'sp-contributions-uploads' )->text()
423 $sp->msg(
'sp-contributions-logs' )->text()
426 # Add link to deleted user contributions for priviledged users
427 if ( $sp->getUser()->isAllowed(
'deletedhistory' ) ) {
430 $sp->msg(
'sp-contributions-deleted',
$username )->text()
435 # Add a link to change user rights for privileged users
437 $userrightsPage->setContext( $sp->getContext() );
438 if ( $userrightsPage->userCanChangeRights( $target ) ) {
440 SpecialPage::getTitleFor(
'Userrights',
$username ),
441 $sp->msg(
'sp-contributions-userrights',
$username )->text()
445 Hooks::run(
'ContributionsToolLinks', [ $id, $userpage, &$tools, $sp ] );
455 $this->opts[
'title'] = $this->
getPageTitle()->getPrefixedText();
456 if ( !isset( $this->opts[
'target'] ) ) {
457 $this->opts[
'target'] =
'';
459 $this->opts[
'target'] = str_replace(
'_',
' ', $this->opts[
'target'] );
462 if ( !isset( $this->opts[
'namespace'] ) ) {
463 $this->opts[
'namespace'] =
'';
466 if ( !isset( $this->opts[
'nsInvert'] ) ) {
467 $this->opts[
'nsInvert'] =
'';
470 if ( !isset( $this->opts[
'associated'] ) ) {
471 $this->opts[
'associated'] =
false;
474 if ( !isset( $this->opts[
'contribs'] ) ) {
475 $this->opts[
'contribs'] =
'user';
478 if ( !isset( $this->opts[
'start'] ) ) {
479 $this->opts[
'start'] =
'';
482 if ( !isset( $this->opts[
'end'] ) ) {
483 $this->opts[
'end'] =
'';
486 if ( $this->opts[
'contribs'] ==
'newbie' ) {
487 $this->opts[
'target'] =
'';
490 if ( !isset( $this->opts[
'tagfilter'] ) ) {
491 $this->opts[
'tagfilter'] =
'';
494 if ( !isset( $this->opts[
'topOnly'] ) ) {
495 $this->opts[
'topOnly'] =
false;
498 if ( !isset( $this->opts[
'newOnly'] ) ) {
499 $this->opts[
'newOnly'] =
false;
502 if ( !isset( $this->opts[
'hideMinor'] ) ) {
503 $this->opts[
'hideMinor'] =
false;
508 'mediawiki.userSuggest',
509 'mediawiki.special.contributions',
511 $this->
getOutput()->addModuleStyles(
'mediawiki.widgets.DateInputWidget.styles' );
514 $form = Html::openElement(
519 'class' =>
'mw-contributions-form'
523 # Add hidden params for tracking except for parameters in $skipParameters
541 foreach ( $this->opts as $name =>
$value ) {
542 if ( in_array( $name, $skipParameters ) ) {
545 $form .=
"\t" . Html::hidden( $name,
$value ) .
"\n";
548 $tagFilter = ChangeTags::buildTagFilterSelector(
549 $this->opts[
'tagfilter'],
false, $this->
getContext() );
552 $filterSelection = Html::rawElement(
555 implode(
"\u{00A0}", $tagFilter )
558 $filterSelection = Html::rawElement(
'div', [],
'' );
561 $labelNewbies = Xml::radioLabel(
562 $this->
msg(
'sp-contributions-newbies' )->
text(),
566 $this->opts[
'contribs'] ==
'newbie',
567 [
'class' =>
'mw-input' ]
569 $labelUsername = Xml::radioLabel(
570 $this->
msg(
'sp-contributions-username' )->
text(),
574 $this->opts[
'contribs'] ==
'user',
575 [
'class' =>
'mw-input' ]
579 $this->opts[
'target'],
585 'mw-ui-input-inline',
586 'mw-autocomplete-user',
590 ( $this->opts[
'contribs'] ===
'newbie' || $this->opts[
'target'] )
591 ? [] : [
'autofocus' =>
true ]
595 $targetSelection = Html::rawElement(
598 $labelNewbies .
'<br>' . $labelUsername .
' ' .
$input .
' '
601 $namespaceSelection = Xml::tags(
605 $this->
msg(
'namespace' )->
text(),
609 Html::namespaceSelector(
610 [
'selected' => $this->opts[
'namespace'],
'all' =>
'' ],
612 'name' =>
'namespace',
614 'class' =>
'namespaceselector',
619 [
'class' =>
'mw-input-with-label' ],
621 $this->
msg(
'invert' )->
text(),
624 $this->opts[
'nsInvert'],
626 'title' => $this->
msg(
'tooltip-invert' )->
text(),
627 'class' =>
'mw-input'
631 Html::rawElement(
'span', [
'class' =>
'mw-input-with-label' ],
633 $this->
msg(
'namespace_association' )->
text(),
636 $this->opts[
'associated'],
638 'title' => $this->
msg(
'tooltip-namespace_association' )->
text(),
639 'class' =>
'mw-input'
647 if ( $this->
getUser()->isAllowed(
'deletedhistory' ) ) {
648 $filters[] = Html::rawElement(
650 [
'class' =>
'mw-input-with-label' ],
652 $this->
msg(
'history-show-deleted' )->
text(),
654 'mw-show-deleted-only',
655 $this->opts[
'deletedOnly'],
656 [
'class' =>
'mw-input' ]
661 $filters[] = Html::rawElement(
663 [
'class' =>
'mw-input-with-label' ],
665 $this->
msg(
'sp-contributions-toponly' )->
text(),
668 $this->opts[
'topOnly'],
669 [
'class' =>
'mw-input' ]
672 $filters[] = Html::rawElement(
674 [
'class' =>
'mw-input-with-label' ],
676 $this->
msg(
'sp-contributions-newonly' )->
text(),
679 $this->opts[
'newOnly'],
680 [
'class' =>
'mw-input' ]
683 $filters[] = Html::rawElement(
685 [
'class' =>
'mw-input-with-label' ],
687 $this->
msg(
'sp-contributions-hideminor' )->
text(),
689 'mw-hide-minor-edits',
690 $this->opts[
'hideMinor'],
691 [
'class' =>
'mw-input' ]
696 'SpecialContributions::getForm::filters',
700 $extraOptions = Html::rawElement(
703 implode(
'', $filters )
706 $dateRangeSelection = Html::rawElement(
709 Xml::label( $this->
msg(
'date-range-from' )->
text(),
'mw-date-start' ) .
' ' .
712 'id' =>
'mw-date-start',
714 'value' => $this->opts[
'start'],
715 'longDisplayFormat' =>
true,
717 Xml::label( $this->
msg(
'date-range-to' )->
text(),
'mw-date-end' ) .
' ' .
720 'id' =>
'mw-date-end',
722 'value' => $this->opts[
'end'],
723 'longDisplayFormat' =>
true,
727 $submit = Xml::tags(
'div', [],
729 $this->
msg(
'sp-contributions-submit' )->
text(),
730 [
'class' =>
'mw-submit' ], [
'mw-ui-progressive' ]
734 $form .= Xml::fieldset(
735 $this->
msg(
'sp-contributions-search' )->
text(),
737 $namespaceSelection .
740 $dateRangeSelection .
742 [
'class' =>
'mw-contributions-table' ]
745 $explain = $this->
msg(
'sp-contributions-explain' );
746 if ( !$explain->isBlank() ) {
747 $form .=
"<p id='mw-sp-contributions-explain'>{$explain->parse()}</p>";
750 $form .= Xml::closeElement(
'form' );
within a display generated by the Derivative if and wherever such third party notices normally appear The contents of the NOTICE file are for informational purposes only and do not modify the License You may add Your own attribution notices within Derivative Works that You alongside or as an addendum to the NOTICE text from the provided that such additional attribution notices cannot be construed as modifying the License You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for or distribution of Your or for any such Derivative Works as a provided Your and distribution of the Work otherwise complies with the conditions stated in this License Submission of Contributions Unless You explicitly state any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this without any additional terms or conditions Notwithstanding the nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions Trademarks This License does not grant permission to use the trade service or product names of the except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file Disclaimer of Warranty Unless required by applicable law or agreed to in Licensor provides the WITHOUT WARRANTIES OR CONDITIONS OF ANY either express or including
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
static newFromTarget( $specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
static isExternal( $username)
Tells whether the username is external or not.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
A collection of public static functions to play with IP address and IP ranges.
Shortcut to construct an includable special page.
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Special:Contributions, show user contributions in a paged list.
static getUserLinks(SpecialPage $sp, User $target)
Links to different places.
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
getForm()
Generates the namespace selector form with hidden attributes.
execute( $par)
Default execute method Checks user permissions.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
contributionsSub( $userObj)
Generates the subheading with links.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getSkin()
Shortcut to get the skin being used for this instance.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
addFeedLinks( $params)
Adds RSS/atom links.
getContext()
Gets the context this SpecialPage is executed in.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
getLanguage()
Shortcut to get user's language.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
MediaWiki Linker LinkRenderer null $linkRenderer
static search( $audience, $search, $limit, $offset=0)
Do a prefix search of user names and return a list of matching user names.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static isIP( $name)
Does the string match an anonymous IP address?
Special page to allow managing user group membership.
returning false will NOT prevent logging a wrapping ErrorException instead of letting the login form give the generic error message that the account does not exist For when the account has been renamed or deleted or an array to pass a message key and parameters block
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 $request
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
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 true
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
this hook is for auditing only or null if authentication failed before getting that far $username
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
if(is_array($mode)) switch( $mode) $input
This document describes the XML format used to represent information about external sites known to a MediaWiki installation This information about external sites is used to allow inter wiki links
in the order they appear.