35 parent::__construct(
'Contributions' );
42 $out->addModuleStyles( [
44 'mediawiki.special.changeslist',
45 'mediawiki.widgets.DateInputWidget.styles',
47 $out->addModules(
'mediawiki.special.contributions' );
54 if ( $par !==
null ) {
57 $target =
$request->getVal(
'target' );
60 if (
$request->getVal(
'contribs' ) ==
'newbie' || $par ===
'newbies' ) {
62 $this->opts[
'contribs'] =
'newbie';
64 $this->opts[
'contribs'] =
'user';
67 $this->opts[
'deletedOnly'] =
$request->getBool(
'deletedOnly' );
69 if ( !strlen( $target ) ) {
79 $this->opts[
'limit'] =
$request->getInt(
'limit', $user->getOption(
'rclimit' ) );
80 $this->opts[
'target'] = $target;
81 $this->opts[
'topOnly'] =
$request->getBool(
'topOnly' );
82 $this->opts[
'newOnly'] =
$request->getBool(
'newOnly' );
83 $this->opts[
'hideMinor'] =
$request->getBool(
'hideMinor' );
85 $nt = Title::makeTitleSafe( NS_USER, $target );
91 $userObj = User::newFromName( $nt->getText(),
false );
97 $id = $userObj->getId();
99 if ( $this->opts[
'contribs'] !=
'newbie' ) {
100 $target = $nt->getText();
102 $out->setHTMLTitle( $this->
msg(
104 $this->
msg(
'contributions-title', $target )->
plain()
105 )->inContentLanguage() );
107 # For IP ranges, we want the contributionsSub, but not the skin-dependent
108 # links under 'Tools', which may include irrelevant links like 'Logs'.
109 if ( !IP::isValidRange( $target ) ) {
110 $this->
getSkin()->setRelevantUser( $userObj );
113 $out->addSubtitle( $this->
msg(
'sp-contributions-newbies-sub' ) );
114 $out->setHTMLTitle( $this->
msg(
116 $this->
msg(
'sp-contributions-newbies-title' )->
plain()
117 )->inContentLanguage() );
120 $ns =
$request->getVal(
'namespace',
null );
121 if ( $ns !==
null && $ns !==
'' ) {
122 $this->opts[
'namespace'] = intval( $ns );
124 $this->opts[
'namespace'] =
'';
127 $this->opts[
'associated'] =
$request->getBool(
'associated' );
128 $this->opts[
'nsInvert'] = (bool)
$request->getVal(
'nsInvert' );
129 $this->opts[
'tagfilter'] = (
string)
$request->getVal(
'tagfilter' );
133 if ( $user->isAllowed(
'markbotedits' ) &&
$request->getBool(
'bot' ) ) {
134 $this->opts[
'bot'] =
'1';
137 $skip =
$request->getText(
'offset' ) ||
$request->getText(
'dir' ) ==
'prev';
138 # Offset overrides year/month selection
140 $this->opts[
'year'] =
$request->getVal(
'year' );
141 $this->opts[
'month'] =
$request->getVal(
'month' );
143 $this->opts[
'start'] =
$request->getVal(
'start' );
144 $this->opts[
'end'] =
$request->getVal(
'end' );
148 $feedType =
$request->getVal(
'feed' );
151 'action' =>
'feedcontributions',
154 if ( $this->opts[
'topOnly'] ) {
155 $feedParams[
'toponly'] =
true;
157 if ( $this->opts[
'newOnly'] ) {
158 $feedParams[
'newonly'] =
true;
160 if ( $this->opts[
'hideMinor'] ) {
161 $feedParams[
'hideminor'] =
true;
163 if ( $this->opts[
'deletedOnly'] ) {
164 $feedParams[
'deletedonly'] =
true;
166 if ( $this->opts[
'tagfilter'] !==
'' ) {
167 $feedParams[
'tagfilter'] = $this->opts[
'tagfilter'];
169 if ( $this->opts[
'namespace'] !==
'' ) {
170 $feedParams[
'namespace'] = $this->opts[
'namespace'];
174 if ( $feedType && $this->opts[
'year'] !==
null ) {
175 $feedParams[
'year'] = $this->opts[
'year'];
177 if ( $feedType && $this->opts[
'month'] !==
null ) {
178 $feedParams[
'month'] = $this->opts[
'month'];
184 $feedParams[
'feedformat'] = $feedType;
187 $out->redirect( $url,
'301' );
195 if ( Hooks::run(
'SpecialContributionsBeforeMainOutput', [ $id, $userObj, $this ] ) ) {
201 'contribs' => $this->opts[
'contribs'],
202 'namespace' => $this->opts[
'namespace'],
203 'tagfilter' => $this->opts[
'tagfilter'],
204 'start' => $this->opts[
'start'],
205 'end' => $this->opts[
'end'],
206 'deletedOnly' => $this->opts[
'deletedOnly'],
207 'topOnly' => $this->opts[
'topOnly'],
208 'newOnly' => $this->opts[
'newOnly'],
209 'hideMinor' => $this->opts[
'hideMinor'],
210 'nsInvert' => $this->opts[
'nsInvert'],
211 'associated' => $this->opts[
'associated'],
214 if ( IP::isValidRange( $target ) && !$pager->isQueryableRange( $target ) ) {
216 $limits = $this->
getConfig()->get(
'RangeContributionsCIDRLimit' );
217 $limit = $limits[ IP::isIPv4( $target ) ?
'IPv4' :
'IPv6' ];
218 $out->addWikiMsg(
'sp-contributions-outofrange', $limit );
219 } elseif ( !$pager->getNumRows() ) {
220 $out->addWikiMsg(
'nocontribs', $target );
222 # Show a message about replica DB lag, if applicable
223 $lag =
wfGetLB()->safeGetLag( $pager->getDatabase() );
225 $out->showLagWarning( $lag );
230 $output =
'<p>' . $pager->getNavigationBar() .
'</p>' .
232 '<p>' . $pager->getNavigationBar() .
'</p>';
237 $out->preventClickjacking( $pager->getPreventClickjacking() );
239 # Show the appropriate "footer" message - WHOIS tools, etc.
240 if ( $this->opts[
'contribs'] ==
'newbie' ) {
241 $message =
'sp-contributions-footer-newbies';
242 } elseif ( IP::isValidRange( $target ) ) {
243 $message =
'sp-contributions-footer-anon-range';
244 } elseif ( IP::isIPAddress( $target ) ) {
245 $message =
'sp-contributions-footer-anon';
246 } elseif ( $userObj->isAnon() ) {
250 $message =
'sp-contributions-footer';
255 if ( !$this->
msg( $message, $target )->isDisabled() ) {
257 "<div class='mw-contributions-footer'>\n$1\n</div>",
258 [ $message, $target ] );
273 if ( $userObj->isAnon() ) {
278 if ( !User::isIP( $userObj->getName() ) && !$userObj->isIPRange() ) {
280 "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
282 'contributions-userdoesnotexist',
287 $this->
getOutput()->setStatusCode( 404 );
290 $user = htmlspecialchars( $userObj->getName() );
292 $user = $this->
getLinkRenderer()->makeLink( $userObj->getUserPage(), $userObj->getName() );
294 $nt = $userObj->getUserPage();
295 $talk = $userObj->getTalkPage();
306 if ( $userObj->isIPRange() ) {
314 $nt = MWNamespace::getCanonicalName( NS_USER ) .
':' . $block->getTarget();
325 'showIfEmpty' =>
false,
328 'sp-contributions-blocked-notice-anon' :
329 'sp-contributions-blocked-notice',
330 $userObj->getName() # Support GENDER in
'sp-contributions-blocked-notice'
332 'offset' =>
'' # don
't use WebRequest parameter offset
339 return $this->msg( 'contribsub2
' )->rawParams( $user, $links )->params( $userObj->getName() );
350 public static function getUserLinks( SpecialPage $sp, User $target ) {
351 $id = $target->getId();
352 $username = $target->getName();
353 $userpage = $target->getUserPage();
354 $talkpage = $target->getTalkPage();
356 $linkRenderer = $sp->getLinkRenderer();
358 # No talk pages for IP ranges.
359 if ( !IP::isValidRange( $username ) ) {
360 $tools['user-talk
'] = $linkRenderer->makeLink(
362 $sp->msg( 'sp-contributions-talk
' )->text()
366 if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $username ) ) ) {
367 if ( $sp->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
368 if ( $target->isBlocked() && $target->getBlock()->getType() != Block::TYPE_AUTO ) {
369 $tools['block'] = $linkRenderer->makeKnownLink( # Change block link
370 SpecialPage::getTitleFor( 'Block', $username ),
371 $sp->msg( 'change-blocklink
' )->text()
373 $tools['unblock
'] = $linkRenderer->makeKnownLink( # Unblock link
374 SpecialPage::getTitleFor( 'Unblock
', $username ),
375 $sp->msg( 'unblocklink
' )->text()
377 } else { # User is not blocked
378 $tools['block'] = $linkRenderer->makeKnownLink( # Block link
379 SpecialPage::getTitleFor( 'Block', $username ),
380 $sp->msg( 'blocklink
' )->text()
386 $tools['log-
block'] = $linkRenderer->makeKnownLink(
387 SpecialPage::getTitleFor( 'Log
', 'block' ),
388 $sp->msg( 'sp-contributions-blocklog
' )->text(),
390 [ 'page
' => $userpage->getPrefixedText() ]
393 # Suppression log link (T61120)
394 if ( $sp->getUser()->isAllowed( 'suppressionlog
' ) ) {
395 $tools['log-suppression
'] = $linkRenderer->makeKnownLink(
396 SpecialPage::getTitleFor( 'Log
', 'suppress
' ),
397 $sp->msg( 'sp-contributions-suppresslog
', $username )->text(),
399 [ 'offender
' => $username ]
409 $sp->msg(
'sp-contributions-uploads' )->text()
415 $sp->msg(
'sp-contributions-logs' )->text()
418 # Add link to deleted user contributions for priviledged users
419 if ( $sp->getUser()->isAllowed(
'deletedhistory' ) ) {
422 $sp->msg(
'sp-contributions-deleted',
$username )->text()
427 # Add a link to change user rights for privileged users
429 $userrightsPage->setContext( $sp->getContext() );
430 if ( $userrightsPage->userCanChangeRights( $target ) ) {
433 $sp->msg(
'sp-contributions-userrights',
$username )->text()
437 Hooks::run(
'ContributionsToolLinks', [ $id, $userpage, &$tools, $sp ] );
447 $this->opts[
'title'] = $this->
getPageTitle()->getPrefixedText();
448 if ( !isset( $this->opts[
'target'] ) ) {
449 $this->opts[
'target'] =
'';
451 $this->opts[
'target'] = str_replace(
'_',
' ', $this->opts[
'target'] );
454 if ( !isset( $this->opts[
'namespace'] ) ) {
455 $this->opts[
'namespace'] =
'';
458 if ( !isset( $this->opts[
'nsInvert'] ) ) {
459 $this->opts[
'nsInvert'] =
'';
462 if ( !isset( $this->opts[
'associated'] ) ) {
463 $this->opts[
'associated'] =
false;
466 if ( !isset( $this->opts[
'contribs'] ) ) {
467 $this->opts[
'contribs'] =
'user';
470 if ( !isset( $this->opts[
'start'] ) ) {
471 $this->opts[
'start'] =
'';
474 if ( !isset( $this->opts[
'end'] ) ) {
475 $this->opts[
'end'] =
'';
478 if ( $this->opts[
'contribs'] ==
'newbie' ) {
479 $this->opts[
'target'] =
'';
482 if ( !isset( $this->opts[
'tagfilter'] ) ) {
483 $this->opts[
'tagfilter'] =
'';
486 if ( !isset( $this->opts[
'topOnly'] ) ) {
487 $this->opts[
'topOnly'] =
false;
490 if ( !isset( $this->opts[
'newOnly'] ) ) {
491 $this->opts[
'newOnly'] =
false;
494 if ( !isset( $this->opts[
'hideMinor'] ) ) {
495 $this->opts[
'hideMinor'] =
false;
498 $form = Html::openElement(
503 'class' =>
'mw-contributions-form'
507 # Add hidden params for tracking except for parameters in $skipParameters
525 foreach ( $this->opts as $name =>
$value ) {
526 if ( in_array( $name, $skipParameters ) ) {
529 $form .=
"\t" . Html::hidden( $name,
$value ) .
"\n";
533 $this->opts[
'tagfilter'],
false, $this->
getContext() );
536 $filterSelection = Html::rawElement(
539 implode(
' ', $tagFilter )
542 $filterSelection = Html::rawElement(
'div', [],
'' );
545 $this->
getOutput()->addModules(
'mediawiki.userSuggest' );
547 $labelNewbies = Xml::radioLabel(
548 $this->
msg(
'sp-contributions-newbies' )->
text(),
552 $this->opts[
'contribs'] ==
'newbie',
553 [
'class' =>
'mw-input' ]
555 $labelUsername = Xml::radioLabel(
556 $this->
msg(
'sp-contributions-username' )->
text(),
560 $this->opts[
'contribs'] ==
'user',
561 [
'class' =>
'mw-input' ]
565 $this->opts[
'target'],
571 'mw-ui-input-inline',
572 'mw-autocomplete-user',
576 ( $this->opts[
'contribs'] ===
'newbie' || $this->opts[
'target'] )
577 ? [] : [
'autofocus' =>
true ]
581 $targetSelection = Html::rawElement(
584 $labelNewbies .
'<br>' . $labelUsername .
' ' .
$input .
' '
587 $namespaceSelection = Xml::tags(
591 $this->
msg(
'namespace' )->
text(),
595 Html::namespaceSelector(
596 [
'selected' => $this->opts[
'namespace'],
'all' =>
'' ],
598 'name' =>
'namespace',
600 'class' =>
'namespaceselector',
605 [
'class' =>
'mw-input-with-label' ],
607 $this->
msg(
'invert' )->
text(),
610 $this->opts[
'nsInvert'],
612 'title' => $this->
msg(
'tooltip-invert' )->
text(),
613 'class' =>
'mw-input'
617 Html::rawElement(
'span', [
'class' =>
'mw-input-with-label' ],
619 $this->
msg(
'namespace_association' )->
text(),
622 $this->opts[
'associated'],
624 'title' => $this->
msg(
'tooltip-namespace_association' )->
text(),
625 'class' =>
'mw-input'
633 if ( $this->
getUser()->isAllowed(
'deletedhistory' ) ) {
634 $filters[] = Html::rawElement(
636 [
'class' =>
'mw-input-with-label' ],
638 $this->
msg(
'history-show-deleted' )->
text(),
640 'mw-show-deleted-only',
641 $this->opts[
'deletedOnly'],
642 [
'class' =>
'mw-input' ]
647 $filters[] = Html::rawElement(
649 [
'class' =>
'mw-input-with-label' ],
651 $this->
msg(
'sp-contributions-toponly' )->
text(),
654 $this->opts[
'topOnly'],
655 [
'class' =>
'mw-input' ]
658 $filters[] = Html::rawElement(
660 [
'class' =>
'mw-input-with-label' ],
662 $this->
msg(
'sp-contributions-newonly' )->
text(),
665 $this->opts[
'newOnly'],
666 [
'class' =>
'mw-input' ]
669 $filters[] = Html::rawElement(
671 [
'class' =>
'mw-input-with-label' ],
673 $this->
msg(
'sp-contributions-hideminor' )->
text(),
675 'mw-hide-minor-edits',
676 $this->opts[
'hideMinor'],
677 [
'class' =>
'mw-input' ]
682 'SpecialContributions::getForm::filters',
686 $extraOptions = Html::rawElement(
689 implode(
'', $filters )
692 $dateRangeSelection = Html::rawElement(
695 Xml::label(
wfMessage(
'date-range-from' )->
text(),
'mw-date-start' ) .
' ' .
698 'id' =>
'mw-date-start',
700 'value' => $this->opts[
'start'],
701 'longDisplayFormat' =>
true,
703 Xml::label(
wfMessage(
'date-range-to' )->
text(),
'mw-date-end' ) .
' ' .
706 'id' =>
'mw-date-end',
708 'value' => $this->opts[
'end'],
709 'longDisplayFormat' =>
true,
713 $submit = Xml::tags(
'div', [],
715 $this->
msg(
'sp-contributions-submit' )->
text(),
716 [
'class' =>
'mw-submit' ], [
'mw-ui-progressive' ]
720 $form .= Xml::fieldset(
721 $this->
msg(
'sp-contributions-search' )->
text(),
723 $namespaceSelection .
726 $dateRangeSelection .
728 [
'class' =>
'mw-contributions-table' ]
731 $explain = $this->
msg(
'sp-contributions-explain' );
732 if ( !$explain->isBlank() ) {
733 $form .=
"<p id='mw-sp-contributions-explain'>{$explain->parse()}</p>";
736 $form .= Xml::closeElement(
'form' );
750 $user = User::newFromName( $search );
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
wfGetLB( $wiki=false)
Get a load balancer object.
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 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.
Special page to allow managing user group membership.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
I won t presume to tell you how to I m just describing the methods I chose to use for myself If you do choose to follow these it will probably be easier for you to collaborate with others on the but if you want to contribute without by all means do which work well I also use K &R brace matching style I know that s a religious issue for some
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
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
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
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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
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.