3 * Implements Special:Contributions
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * Special:Contributions, show user contributions in a paged list
27 * @ingroup SpecialPage
29 class SpecialContributions
extends IncludableSpecialPage
{
32 public function __construct() {
33 parent
::__construct( 'Contributions' );
36 public function execute( $par ) {
38 $this->outputHeader();
39 $out = $this->getOutput();
40 $out->addModuleStyles( [
42 'mediawiki.special.changeslist',
44 $this->addHelpLink( 'Help:User contributions' );
47 $request = $this->getRequest();
49 if ( $par !== null ) {
52 $target = $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 ) ) {
65 if ( !$this->including() ) {
66 $out->addHTML( $this->getForm() );
72 $user = $this->getUser();
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' );
80 $nt = Title
::makeTitleSafe( NS_USER
, $target );
82 $out->addHTML( $this->getForm() );
86 $userObj = User
::newFromName( $nt->getText(), false );
88 $out->addHTML( $this->getForm() );
92 $id = $userObj->getId();
94 if ( $this->opts
['contribs'] != 'newbie' ) {
95 $target = $nt->getText();
96 $out->addSubtitle( $this->contributionsSub( $userObj ) );
97 $out->setHTMLTitle( $this->msg(
99 $this->msg( 'contributions-title', $target )->plain()
100 )->inContentLanguage() );
101 $this->getSkin()->setRelevantUser( $userObj );
103 $out->addSubtitle( $this->msg( 'sp-contributions-newbies-sub' ) );
104 $out->setHTMLTitle( $this->msg(
106 $this->msg( 'sp-contributions-newbies-title' )->plain()
107 )->inContentLanguage() );
110 $ns = $request->getVal( 'namespace', null );
111 if ( $ns !== null && $ns !== '' ) {
112 $this->opts
['namespace'] = intval( $ns );
114 $this->opts
['namespace'] = '';
117 $this->opts
['associated'] = $request->getBool( 'associated' );
118 $this->opts
['nsInvert'] = (bool)$request->getVal( 'nsInvert' );
119 $this->opts
['tagfilter'] = (string)$request->getVal( 'tagfilter' );
121 // Allows reverts to have the bot flag in recent changes. It is just here to
122 // be passed in the form at the top of the page
123 if ( $user->isAllowed( 'markbotedits' ) && $request->getBool( 'bot' ) ) {
124 $this->opts
['bot'] = '1';
127 $skip = $request->getText( 'offset' ) ||
$request->getText( 'dir' ) == 'prev';
128 # Offset overrides year/month selection
130 $this->opts
['year'] = '';
131 $this->opts
['month'] = '';
133 $this->opts
['year'] = $request->getIntOrNull( 'year' );
134 $this->opts
['month'] = $request->getIntOrNull( 'month' );
137 $feedType = $request->getVal( 'feed' );
140 'action' => 'feedcontributions',
143 if ( $this->opts
['topOnly'] ) {
144 $feedParams['toponly'] = true;
146 if ( $this->opts
['newOnly'] ) {
147 $feedParams['newonly'] = true;
149 if ( $this->opts
['hideMinor'] ) {
150 $feedParams['hideminor'] = true;
152 if ( $this->opts
['deletedOnly'] ) {
153 $feedParams['deletedonly'] = true;
155 if ( $this->opts
['tagfilter'] !== '' ) {
156 $feedParams['tagfilter'] = $this->opts
['tagfilter'];
158 if ( $this->opts
['namespace'] !== '' ) {
159 $feedParams['namespace'] = $this->opts
['namespace'];
161 // Don't use year and month for the feed URL, but pass them on if
162 // we redirect to API (if $feedType is specified)
163 if ( $feedType && $this->opts
['year'] !== null ) {
164 $feedParams['year'] = $this->opts
['year'];
166 if ( $feedType && $this->opts
['month'] !== null ) {
167 $feedParams['month'] = $this->opts
['month'];
171 // Maintain some level of backwards compatibility
172 // If people request feeds using the old parameters, redirect to API
173 $feedParams['feedformat'] = $feedType;
174 $url = wfAppendQuery( wfScript( 'api' ), $feedParams );
176 $out->redirect( $url, '301' );
181 // Add RSS/atom links
182 $this->addFeedLinks( $feedParams );
184 if ( Hooks
::run( 'SpecialContributionsBeforeMainOutput', [ $id, $userObj, $this ] ) ) {
185 if ( !$this->including() ) {
186 $out->addHTML( $this->getForm() );
188 $pager = new ContribsPager( $this->getContext(), [
190 'contribs' => $this->opts
['contribs'],
191 'namespace' => $this->opts
['namespace'],
192 'tagfilter' => $this->opts
['tagfilter'],
193 'year' => $this->opts
['year'],
194 'month' => $this->opts
['month'],
195 'deletedOnly' => $this->opts
['deletedOnly'],
196 'topOnly' => $this->opts
['topOnly'],
197 'newOnly' => $this->opts
['newOnly'],
198 'hideMinor' => $this->opts
['hideMinor'],
199 'nsInvert' => $this->opts
['nsInvert'],
200 'associated' => $this->opts
['associated'],
203 if ( !$pager->getNumRows() ) {
204 $out->addWikiMsg( 'nocontribs', $target );
206 # Show a message about slave lag, if applicable
207 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
209 $out->showLagWarning( $lag );
212 $output = $pager->getBody();
213 if ( !$this->including() ) {
214 $output = '<p>' . $pager->getNavigationBar() . '</p>' .
216 '<p>' . $pager->getNavigationBar() . '</p>';
218 $out->addHTML( $output );
220 $out->preventClickjacking( $pager->getPreventClickjacking() );
222 # Show the appropriate "footer" message - WHOIS tools, etc.
223 if ( $this->opts
['contribs'] == 'newbie' ) {
224 $message = 'sp-contributions-footer-newbies';
225 } elseif ( IP
::isIPAddress( $target ) ) {
226 $message = 'sp-contributions-footer-anon';
227 } elseif ( $userObj->isAnon() ) {
228 // No message for non-existing users
231 $message = 'sp-contributions-footer';
235 if ( !$this->including() ) {
236 if ( !$this->msg( $message, $target )->isDisabled() ) {
238 "<div class='mw-contributions-footer'>\n$1\n</div>",
239 [ $message, $target ] );
247 * Generates the subheading with links
248 * @param User $userObj User object for the target
249 * @return string Appropriately-escaped HTML to be output literally
250 * @todo FIXME: Almost the same as getSubTitle in SpecialDeletedContributions.php.
253 protected function contributionsSub( $userObj ) {
254 if ( $userObj->isAnon() ) {
255 // Show a warning message that the user being searched for doesn't exists
256 if ( !User
::isIP( $userObj->getName() ) ) {
257 $this->getOutput()->wrapWikiMsg(
258 "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
260 'contributions-userdoesnotexist',
261 wfEscapeWikiText( $userObj->getName() ),
264 if ( !$this->including() ) {
265 $this->getOutput()->setStatusCode( 404 );
268 $user = htmlspecialchars( $userObj->getName() );
270 $user = Linker
::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
272 $nt = $userObj->getUserPage();
273 $talk = $userObj->getTalkPage();
276 $tools = $this->getUserLinks( $nt, $talk, $userObj );
277 $links = $this->getLanguage()->pipeList( $tools );
279 // Show a note if the user is blocked and display the last block log entry.
280 // Do not expose the autoblocks, since that may lead to a leak of accounts' IPs,
281 // and also this will display a totally irrelevant log entry as a current block.
282 if ( !$this->including() ) {
283 $block = Block
::newFromTarget( $userObj, $userObj );
284 if ( !is_null( $block ) && $block->getType() != Block
::TYPE_AUTO
) {
285 if ( $block->getType() == Block
::TYPE_RANGE
) {
286 $nt = MWNamespace
::getCanonicalName( NS_USER
) . ':' . $block->getTarget();
289 $out = $this->getOutput(); // showLogExtract() wants first parameter by reference
290 LogEventsList
::showLogExtract(
297 'showIfEmpty' => false,
300 'sp-contributions-blocked-notice-anon' :
301 'sp-contributions-blocked-notice',
302 $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
304 'offset' => '' # don't use WebRequest parameter offset
311 return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
315 * Links to different places.
316 * @param Title $userpage Target user page
317 * @param Title $talkpage Talk page
318 * @param User $target Target user object
321 public function getUserLinks( Title
$userpage, Title
$talkpage, User
$target ) {
323 $id = $target->getId();
324 $username = $target->getName();
326 $tools[] = Linker
::link( $talkpage, $this->msg( 'sp-contributions-talk' )->escaped() );
328 if ( ( $id !== null ) ||
( $id === null && IP
::isIPAddress( $username ) ) ) {
329 if ( $this->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
330 if ( $target->isBlocked() && $target->getBlock()->getType() != Block
::TYPE_AUTO
) {
331 $tools[] = Linker
::linkKnown( # Change block link
332 SpecialPage
::getTitleFor( 'Block', $username ),
333 $this->msg( 'change-blocklink' )->escaped()
335 $tools[] = Linker
::linkKnown( # Unblock link
336 SpecialPage
::getTitleFor( 'Unblock', $username ),
337 $this->msg( 'unblocklink' )->escaped()
339 } else { # User is not blocked
340 $tools[] = Linker
::linkKnown( # Block link
341 SpecialPage
::getTitleFor( 'Block', $username ),
342 $this->msg( 'blocklink' )->escaped()
348 $tools[] = Linker
::linkKnown(
349 SpecialPage
::getTitleFor( 'Log', 'block' ),
350 $this->msg( 'sp-contributions-blocklog' )->escaped(),
352 [ 'page' => $userpage->getPrefixedText() ]
355 # Suppression log link (bug 59120)
356 if ( $this->getUser()->isAllowed( 'suppressionlog' ) ) {
357 $tools[] = Linker
::linkKnown(
358 SpecialPage
::getTitleFor( 'Log', 'suppress' ),
359 $this->msg( 'sp-contributions-suppresslog' )->escaped(),
361 [ 'offender' => $username ]
366 $tools[] = Linker
::linkKnown(
367 SpecialPage
::getTitleFor( 'Listfiles', $username ),
368 $this->msg( 'sp-contributions-uploads' )->escaped()
372 $tools[] = Linker
::linkKnown(
373 SpecialPage
::getTitleFor( 'Log', $username ),
374 $this->msg( 'sp-contributions-logs' )->escaped()
377 # Add link to deleted user contributions for priviledged users
378 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
379 $tools[] = Linker
::linkKnown(
380 SpecialPage
::getTitleFor( 'DeletedContributions', $username ),
381 $this->msg( 'sp-contributions-deleted' )->escaped()
385 # Add a link to change user rights for privileged users
386 $userrightsPage = new UserrightsPage();
387 $userrightsPage->setContext( $this->getContext() );
388 if ( $userrightsPage->userCanChangeRights( $target ) ) {
389 $tools[] = Linker
::linkKnown(
390 SpecialPage
::getTitleFor( 'Userrights', $username ),
391 $this->msg( 'sp-contributions-userrights' )->escaped()
395 Hooks
::run( 'ContributionsToolLinks', [ $id, $userpage, &$tools ] );
401 * Generates the namespace selector form with hidden attributes.
402 * @return string HTML fragment
404 protected function getForm() {
405 $this->opts
['title'] = $this->getPageTitle()->getPrefixedText();
406 if ( !isset( $this->opts
['target'] ) ) {
407 $this->opts
['target'] = '';
409 $this->opts
['target'] = str_replace( '_', ' ', $this->opts
['target'] );
412 if ( !isset( $this->opts
['namespace'] ) ) {
413 $this->opts
['namespace'] = '';
416 if ( !isset( $this->opts
['nsInvert'] ) ) {
417 $this->opts
['nsInvert'] = '';
420 if ( !isset( $this->opts
['associated'] ) ) {
421 $this->opts
['associated'] = false;
424 if ( !isset( $this->opts
['contribs'] ) ) {
425 $this->opts
['contribs'] = 'user';
428 if ( !isset( $this->opts
['year'] ) ) {
429 $this->opts
['year'] = '';
432 if ( !isset( $this->opts
['month'] ) ) {
433 $this->opts
['month'] = '';
436 if ( $this->opts
['contribs'] == 'newbie' ) {
437 $this->opts
['target'] = '';
440 if ( !isset( $this->opts
['tagfilter'] ) ) {
441 $this->opts
['tagfilter'] = '';
444 if ( !isset( $this->opts
['topOnly'] ) ) {
445 $this->opts
['topOnly'] = false;
448 if ( !isset( $this->opts
['newOnly'] ) ) {
449 $this->opts
['newOnly'] = false;
452 if ( !isset( $this->opts
['hideMinor'] ) ) {
453 $this->opts
['hideMinor'] = false;
456 $form = Html
::openElement(
460 'action' => wfScript(),
461 'class' => 'mw-contributions-form'
465 # Add hidden params for tracking except for parameters in $skipParameters
481 foreach ( $this->opts
as $name => $value ) {
482 if ( in_array( $name, $skipParameters ) ) {
485 $form .= "\t" . Html
::hidden( $name, $value ) . "\n";
488 $tagFilter = ChangeTags
::buildTagFilterSelector( $this->opts
['tagfilter'] );
491 $filterSelection = Html
::rawElement(
494 implode( ' ', $tagFilter )
497 $filterSelection = Html
::rawElement( 'td', [ 'colspan' => 2 ], '' );
500 $this->getOutput()->addModules( 'mediawiki.userSuggest' );
502 $labelNewbies = Xml
::radioLabel(
503 $this->msg( 'sp-contributions-newbies' )->text(),
507 $this->opts
['contribs'] == 'newbie',
508 [ 'class' => 'mw-input' ]
510 $labelUsername = Xml
::radioLabel(
511 $this->msg( 'sp-contributions-username' )->text(),
515 $this->opts
['contribs'] == 'user',
516 [ 'class' => 'mw-input' ]
518 $input = Html
::input(
520 $this->opts
['target'],
527 'mw-ui-input-inline',
528 'mw-autocomplete-user', // used by mediawiki.userSuggest
531 // Only autofocus if target hasn't been specified or in non-newbies mode
532 ( $this->opts
['contribs'] === 'newbie' ||
$this->opts
['target'] )
533 ?
[] : [ 'autofocus' => true ]
537 $targetSelection = Html
::rawElement(
540 $labelNewbies . '<br />' . $labelUsername . ' ' . $input . ' '
543 $namespaceSelection = Xml
::tags(
547 $this->msg( 'namespace' )->text(),
551 Html
::namespaceSelector(
552 [ 'selected' => $this->opts
['namespace'], 'all' => '' ],
554 'name' => 'namespace',
556 'class' => 'namespaceselector',
561 [ 'class' => 'mw-input-with-label' ],
563 $this->msg( 'invert' )->text(),
566 $this->opts
['nsInvert'],
568 'title' => $this->msg( 'tooltip-invert' )->text(),
569 'class' => 'mw-input'
573 Html
::rawElement( 'span', [ 'class' => 'mw-input-with-label' ],
575 $this->msg( 'namespace_association' )->text(),
578 $this->opts
['associated'],
580 'title' => $this->msg( 'tooltip-namespace_association' )->text(),
581 'class' => 'mw-input'
589 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
590 $filters[] = Html
::rawElement(
592 [ 'class' => 'mw-input-with-label' ],
594 $this->msg( 'history-show-deleted' )->text(),
596 'mw-show-deleted-only',
597 $this->opts
['deletedOnly'],
598 [ 'class' => 'mw-input' ]
603 $filters[] = Html
::rawElement(
605 [ 'class' => 'mw-input-with-label' ],
607 $this->msg( 'sp-contributions-toponly' )->text(),
610 $this->opts
['topOnly'],
611 [ 'class' => 'mw-input' ]
614 $filters[] = Html
::rawElement(
616 [ 'class' => 'mw-input-with-label' ],
618 $this->msg( 'sp-contributions-newonly' )->text(),
621 $this->opts
['newOnly'],
622 [ 'class' => 'mw-input' ]
625 $filters[] = Html
::rawElement(
627 [ 'class' => 'mw-input-with-label' ],
629 $this->msg( 'sp-contributions-hideminor' )->text(),
631 'mw-hide-minor-edits',
632 $this->opts
['hideMinor'],
633 [ 'class' => 'mw-input' ]
638 'SpecialContributions::getForm::filters',
642 $extraOptions = Html
::rawElement(
645 implode( '', $filters )
648 $dateSelectionAndSubmit = Xml
::tags( 'td', [ 'colspan' => 2 ],
650 $this->opts
['year'] === '' ? MWTimestamp
::getInstance()->format( 'Y' ) : $this->opts
['year'],
654 $this->msg( 'sp-contributions-submit' )->text(),
655 [ 'class' => 'mw-submit' ], [ 'mw-ui-progressive' ]
659 $form .= Xml
::fieldset( $this->msg( 'sp-contributions-search' )->text() );
660 $form .= Html
::rawElement( 'table', [ 'class' => 'mw-contributions-table' ], "\n" .
661 Html
::rawElement( 'tr', [], $targetSelection ) . "\n" .
662 Html
::rawElement( 'tr', [], $namespaceSelection ) . "\n" .
663 Html
::rawElement( 'tr', [], $filterSelection ) . "\n" .
664 Html
::rawElement( 'tr', [], $extraOptions ) . "\n" .
665 Html
::rawElement( 'tr', [], $dateSelectionAndSubmit ) . "\n"
668 $explain = $this->msg( 'sp-contributions-explain' );
669 if ( !$explain->isBlank() ) {
670 $form .= "<p id='mw-sp-contributions-explain'>{$explain->parse()}</p>";
673 $form .= Xml
::closeElement( 'fieldset' ) . Xml
::closeElement( 'form' );
679 * Return an array of subpages beginning with $search that this special page will accept.
681 * @param string $search Prefix to search for
682 * @param int $limit Maximum number of results to return (usually 10)
683 * @param int $offset Number of results to skip (usually 0)
684 * @return string[] Matching subpages
686 public function prefixSearchSubpages( $search, $limit, $offset ) {
687 $user = User
::newFromName( $search );
689 // No prefix suggestion for invalid user
692 // Autocomplete subpage as user list - public to allow caching
693 return UserNamePrefixSearch
::search( 'public', $search, $limit, $offset );
696 protected function getGroupName() {