Collapse some nested if statements
[lhc/web/wiklou.git] / includes / specials / SpecialContributions.php
1 <?php
2 /**
3 * Implements Special:Contributions
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 use MediaWiki\Widget\DateInputWidget;
25
26 /**
27 * Special:Contributions, show user contributions in a paged list
28 *
29 * @ingroup SpecialPage
30 */
31 class SpecialContributions extends IncludableSpecialPage {
32 protected $opts;
33
34 public function __construct() {
35 parent::__construct( 'Contributions' );
36 }
37
38 public function execute( $par ) {
39 $this->setHeaders();
40 $this->outputHeader();
41 $out = $this->getOutput();
42 // Modules required for viewing the list of contributions (also when included on other pages)
43 $out->addModuleStyles( [
44 'mediawiki.interface.helpers.styles',
45 'mediawiki.special',
46 'mediawiki.special.changeslist',
47 ] );
48 $out->addModules( 'mediawiki.special.recentchanges' );
49 $this->addHelpLink( 'Help:User contributions' );
50
51 $this->opts = [];
52 $request = $this->getRequest();
53
54 $target = $par ?? $request->getVal( 'target' );
55
56 if ( $request->getVal( 'contribs' ) == 'newbie' || $par === 'newbies' ) {
57 $target = 'newbies';
58 $this->opts['contribs'] = 'newbie';
59 } else {
60 $this->opts['contribs'] = 'user';
61 }
62
63 $this->opts['deletedOnly'] = $request->getBool( 'deletedOnly' );
64
65 if ( !strlen( $target ) ) {
66 if ( !$this->including() ) {
67 $out->addHTML( $this->getForm() );
68 }
69
70 return;
71 }
72
73 $user = $this->getUser();
74
75 $this->opts['limit'] = $request->getInt( 'limit', $user->getOption( 'rclimit' ) );
76 $this->opts['target'] = $target;
77 $this->opts['topOnly'] = $request->getBool( 'topOnly' );
78 $this->opts['newOnly'] = $request->getBool( 'newOnly' );
79 $this->opts['hideMinor'] = $request->getBool( 'hideMinor' );
80
81 $id = 0;
82 if ( $this->opts['contribs'] === 'newbie' ) {
83 $userObj = User::newFromName( $target ); // hysterical raisins
84 $out->addSubtitle( $this->msg( 'sp-contributions-newbies-sub' ) );
85 $out->setHTMLTitle( $this->msg(
86 'pagetitle',
87 $this->msg( 'sp-contributions-newbies-title' )->plain()
88 )->inContentLanguage() );
89 } elseif ( ExternalUserNames::isExternal( $target ) ) {
90 $userObj = User::newFromName( $target, false );
91 if ( !$userObj ) {
92 $out->addHTML( $this->getForm() );
93 return;
94 }
95
96 $out->addSubtitle( $this->contributionsSub( $userObj ) );
97 $out->setHTMLTitle( $this->msg(
98 'pagetitle',
99 $this->msg( 'contributions-title', $target )->plain()
100 )->inContentLanguage() );
101 } else {
102 $nt = Title::makeTitleSafe( NS_USER, $target );
103 if ( !$nt ) {
104 $out->addHTML( $this->getForm() );
105 return;
106 }
107 $userObj = User::newFromName( $nt->getText(), false );
108 if ( !$userObj ) {
109 $out->addHTML( $this->getForm() );
110 return;
111 }
112 $id = $userObj->getId();
113
114 $target = $nt->getText();
115 $out->addSubtitle( $this->contributionsSub( $userObj ) );
116 $out->setHTMLTitle( $this->msg(
117 'pagetitle',
118 $this->msg( 'contributions-title', $target )->plain()
119 )->inContentLanguage() );
120
121 # For IP ranges, we want the contributionsSub, but not the skin-dependent
122 # links under 'Tools', which may include irrelevant links like 'Logs'.
123 if ( !IP::isValidRange( $target ) ) {
124 $this->getSkin()->setRelevantUser( $userObj );
125 }
126 }
127
128 $ns = $request->getVal( 'namespace', null );
129 if ( $ns !== null && $ns !== '' ) {
130 $this->opts['namespace'] = intval( $ns );
131 } else {
132 $this->opts['namespace'] = '';
133 }
134
135 $this->opts['associated'] = $request->getBool( 'associated' );
136 $this->opts['nsInvert'] = (bool)$request->getVal( 'nsInvert' );
137 $this->opts['tagfilter'] = (string)$request->getVal( 'tagfilter' );
138
139 // Allows reverts to have the bot flag in recent changes. It is just here to
140 // be passed in the form at the top of the page
141 if ( $user->isAllowed( 'markbotedits' ) && $request->getBool( 'bot' ) ) {
142 $this->opts['bot'] = '1';
143 }
144
145 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
146 # Offset overrides year/month selection
147 if ( !$skip ) {
148 $this->opts['year'] = $request->getVal( 'year' );
149 $this->opts['month'] = $request->getVal( 'month' );
150
151 $this->opts['start'] = $request->getVal( 'start' );
152 $this->opts['end'] = $request->getVal( 'end' );
153 }
154 $this->opts = ContribsPager::processDateFilter( $this->opts );
155
156 if ( $this->opts['namespace'] < NS_MAIN ) {
157 $this->getOutput()->wrapWikiMsg(
158 "<div class=\"mw-negative-namespace-not-supported error\">\n\$1\n</div>",
159 [ 'negative-namespace-not-supported' ]
160 );
161 $out->addHTML( $this->getForm() );
162 return;
163 }
164
165 $feedType = $request->getVal( 'feed' );
166
167 $feedParams = [
168 'action' => 'feedcontributions',
169 'user' => $target,
170 ];
171 if ( $this->opts['topOnly'] ) {
172 $feedParams['toponly'] = true;
173 }
174 if ( $this->opts['newOnly'] ) {
175 $feedParams['newonly'] = true;
176 }
177 if ( $this->opts['hideMinor'] ) {
178 $feedParams['hideminor'] = true;
179 }
180 if ( $this->opts['deletedOnly'] ) {
181 $feedParams['deletedonly'] = true;
182 }
183 if ( $this->opts['tagfilter'] !== '' ) {
184 $feedParams['tagfilter'] = $this->opts['tagfilter'];
185 }
186 if ( $this->opts['namespace'] !== '' ) {
187 $feedParams['namespace'] = $this->opts['namespace'];
188 }
189 // Don't use year and month for the feed URL, but pass them on if
190 // we redirect to API (if $feedType is specified)
191 if ( $feedType && $this->opts['year'] !== null ) {
192 $feedParams['year'] = $this->opts['year'];
193 }
194 if ( $feedType && $this->opts['month'] !== null ) {
195 $feedParams['month'] = $this->opts['month'];
196 }
197
198 if ( $feedType ) {
199 // Maintain some level of backwards compatibility
200 // If people request feeds using the old parameters, redirect to API
201 $feedParams['feedformat'] = $feedType;
202 $url = wfAppendQuery( wfScript( 'api' ), $feedParams );
203
204 $out->redirect( $url, '301' );
205
206 return;
207 }
208
209 // Add RSS/atom links
210 $this->addFeedLinks( $feedParams );
211
212 if ( Hooks::run( 'SpecialContributionsBeforeMainOutput', [ $id, $userObj, $this ] ) ) {
213 if ( !$this->including() ) {
214 $out->addHTML( $this->getForm() );
215 }
216 $pager = new ContribsPager( $this->getContext(), [
217 'target' => $target,
218 'contribs' => $this->opts['contribs'],
219 'namespace' => $this->opts['namespace'],
220 'tagfilter' => $this->opts['tagfilter'],
221 'start' => $this->opts['start'],
222 'end' => $this->opts['end'],
223 'deletedOnly' => $this->opts['deletedOnly'],
224 'topOnly' => $this->opts['topOnly'],
225 'newOnly' => $this->opts['newOnly'],
226 'hideMinor' => $this->opts['hideMinor'],
227 'nsInvert' => $this->opts['nsInvert'],
228 'associated' => $this->opts['associated'],
229 ] );
230
231 if ( IP::isValidRange( $target ) && !$pager->isQueryableRange( $target ) ) {
232 // Valid range, but outside CIDR limit.
233 $limits = $this->getConfig()->get( 'RangeContributionsCIDRLimit' );
234 $limit = $limits[ IP::isIPv4( $target ) ? 'IPv4' : 'IPv6' ];
235 $out->addWikiMsg( 'sp-contributions-outofrange', $limit );
236 } elseif ( !$pager->getNumRows() ) {
237 $out->addWikiMsg( 'nocontribs', $target );
238 } else {
239 # Show a message about replica DB lag, if applicable
240 $lag = $pager->getDatabase()->getSessionLagStatus()['lag'];
241 if ( $lag > 0 ) {
242 $out->showLagWarning( $lag );
243 }
244
245 $output = $pager->getBody();
246 if ( !$this->including() ) {
247 $output = $pager->getNavigationBar() .
248 $output .
249 $pager->getNavigationBar();
250 }
251 $out->addHTML( $output );
252 }
253
254 $out->preventClickjacking( $pager->getPreventClickjacking() );
255
256 # Show the appropriate "footer" message - WHOIS tools, etc.
257 if ( $this->opts['contribs'] == 'newbie' ) {
258 $message = 'sp-contributions-footer-newbies';
259 } elseif ( IP::isValidRange( $target ) ) {
260 $message = 'sp-contributions-footer-anon-range';
261 } elseif ( IP::isIPAddress( $target ) ) {
262 $message = 'sp-contributions-footer-anon';
263 } elseif ( $userObj->isAnon() ) {
264 // No message for non-existing users
265 $message = '';
266 } else {
267 $message = 'sp-contributions-footer';
268 }
269
270 if ( $message && !$this->including() && !$this->msg( $message, $target )->isDisabled() ) {
271 $out->wrapWikiMsg(
272 "<div class='mw-contributions-footer'>\n$1\n</div>",
273 [ $message, $target ] );
274 }
275 }
276 }
277
278 /**
279 * Generates the subheading with links
280 * @param User $userObj User object for the target
281 * @return string Appropriately-escaped HTML to be output literally
282 * @todo FIXME: Almost the same as getSubTitle in SpecialDeletedContributions.php.
283 * Could be combined.
284 */
285 protected function contributionsSub( $userObj ) {
286 if ( $userObj->isAnon() ) {
287 // Show a warning message that the user being searched for doesn't exists.
288 // User::isIP returns true for IP address and usemod IPs like '123.123.123.xxx',
289 // but returns false for IP ranges. We don't want to suggest either of these are
290 // valid usernames which we would with the 'contributions-userdoesnotexist' message.
291 if ( !User::isIP( $userObj->getName() ) && !$userObj->isIPRange() ) {
292 $this->getOutput()->wrapWikiMsg(
293 "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
294 [
295 'contributions-userdoesnotexist',
296 wfEscapeWikiText( $userObj->getName() ),
297 ]
298 );
299 if ( !$this->including() ) {
300 $this->getOutput()->setStatusCode( 404 );
301 }
302 }
303 $user = htmlspecialchars( $userObj->getName() );
304 } else {
305 $user = $this->getLinkRenderer()->makeLink( $userObj->getUserPage(), $userObj->getName() );
306 }
307 $nt = $userObj->getUserPage();
308 $talk = $userObj->getTalkPage();
309 $links = '';
310 if ( $talk ) {
311 $tools = self::getUserLinks( $this, $userObj );
312 $links = Html::openElement( 'span', [ 'class' => 'mw-changeslist-links' ] );
313 foreach ( $tools as $tool ) {
314 $links .= Html::rawElement( 'span', [], $tool ) . ' ';
315 }
316 $links = trim( $links ) . Html::closeElement( 'span' );
317
318 // Show a note if the user is blocked and display the last block log entry.
319 // Do not expose the autoblocks, since that may lead to a leak of accounts' IPs,
320 // and also this will display a totally irrelevant log entry as a current block.
321 if ( !$this->including() ) {
322 // For IP ranges you must give Block::newFromTarget the CIDR string and not a user object.
323 if ( $userObj->isIPRange() ) {
324 $block = Block::newFromTarget( $userObj->getName(), $userObj->getName() );
325 } else {
326 $block = Block::newFromTarget( $userObj, $userObj );
327 }
328
329 if ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
330 if ( $block->getType() == Block::TYPE_RANGE ) {
331 $nt = MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget();
332 }
333
334 $out = $this->getOutput(); // showLogExtract() wants first parameter by reference
335 LogEventsList::showLogExtract(
336 $out,
337 'block',
338 $nt,
339 '',
340 [
341 'lim' => 1,
342 'showIfEmpty' => false,
343 'msgKey' => [
344 $userObj->isAnon() ?
345 'sp-contributions-blocked-notice-anon' :
346 'sp-contributions-blocked-notice',
347 $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
348 ],
349 'offset' => '' # don't use WebRequest parameter offset
350 ]
351 );
352 }
353 }
354 }
355
356 return Html::rawElement( 'div', [ 'class' => 'mw-contributions-user-tools' ],
357 $this->msg( 'contributions-subtitle' )->rawParams( $user )->params( $userObj->getName() )
358 . ' ' . $links
359 );
360 }
361
362 /**
363 * Links to different places.
364 *
365 * @note This function is also called in DeletedContributionsPage
366 * @param SpecialPage $sp SpecialPage instance, for context
367 * @param User $target Target user object
368 * @return array
369 */
370 public static function getUserLinks( SpecialPage $sp, User $target ) {
371 $id = $target->getId();
372 $username = $target->getName();
373 $userpage = $target->getUserPage();
374 $talkpage = $target->getTalkPage();
375
376 $linkRenderer = $sp->getLinkRenderer();
377
378 # No talk pages for IP ranges.
379 if ( !IP::isValidRange( $username ) ) {
380 $tools['user-talk'] = $linkRenderer->makeLink(
381 $talkpage,
382 $sp->msg( 'sp-contributions-talk' )->text()
383 );
384 }
385
386 if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $username ) ) ) {
387 if ( $sp->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
388 if ( $target->isBlocked() && $target->getBlock()->getType() != Block::TYPE_AUTO ) {
389 $tools['block'] = $linkRenderer->makeKnownLink( # Change block link
390 SpecialPage::getTitleFor( 'Block', $username ),
391 $sp->msg( 'change-blocklink' )->text()
392 );
393 $tools['unblock'] = $linkRenderer->makeKnownLink( # Unblock link
394 SpecialPage::getTitleFor( 'Unblock', $username ),
395 $sp->msg( 'unblocklink' )->text()
396 );
397 } else { # User is not blocked
398 $tools['block'] = $linkRenderer->makeKnownLink( # Block link
399 SpecialPage::getTitleFor( 'Block', $username ),
400 $sp->msg( 'blocklink' )->text()
401 );
402 }
403 }
404
405 # Block log link
406 $tools['log-block'] = $linkRenderer->makeKnownLink(
407 SpecialPage::getTitleFor( 'Log', 'block' ),
408 $sp->msg( 'sp-contributions-blocklog' )->text(),
409 [],
410 [ 'page' => $userpage->getPrefixedText() ]
411 );
412
413 # Suppression log link (T61120)
414 if ( $sp->getUser()->isAllowed( 'suppressionlog' ) ) {
415 $tools['log-suppression'] = $linkRenderer->makeKnownLink(
416 SpecialPage::getTitleFor( 'Log', 'suppress' ),
417 $sp->msg( 'sp-contributions-suppresslog', $username )->text(),
418 [],
419 [ 'offender' => $username ]
420 );
421 }
422 }
423
424 # Don't show some links for IP ranges
425 if ( !IP::isValidRange( $username ) ) {
426 # Uploads
427 $tools['uploads'] = $linkRenderer->makeKnownLink(
428 SpecialPage::getTitleFor( 'Listfiles', $username ),
429 $sp->msg( 'sp-contributions-uploads' )->text()
430 );
431
432 # Other logs link
433 $tools['logs'] = $linkRenderer->makeKnownLink(
434 SpecialPage::getTitleFor( 'Log', $username ),
435 $sp->msg( 'sp-contributions-logs' )->text()
436 );
437
438 # Add link to deleted user contributions for priviledged users
439 if ( $sp->getUser()->isAllowed( 'deletedhistory' ) ) {
440 $tools['deletedcontribs'] = $linkRenderer->makeKnownLink(
441 SpecialPage::getTitleFor( 'DeletedContributions', $username ),
442 $sp->msg( 'sp-contributions-deleted', $username )->text()
443 );
444 }
445 }
446
447 # Add a link to change user rights for privileged users
448 $userrightsPage = new UserrightsPage();
449 $userrightsPage->setContext( $sp->getContext() );
450 if ( $userrightsPage->userCanChangeRights( $target ) ) {
451 $tools['userrights'] = $linkRenderer->makeKnownLink(
452 SpecialPage::getTitleFor( 'Userrights', $username ),
453 $sp->msg( 'sp-contributions-userrights', $username )->text()
454 );
455 }
456
457 Hooks::run( 'ContributionsToolLinks', [ $id, $userpage, &$tools, $sp ] );
458
459 return $tools;
460 }
461
462 /**
463 * Generates the namespace selector form with hidden attributes.
464 * @return string HTML fragment
465 */
466 protected function getForm() {
467 $this->opts['title'] = $this->getPageTitle()->getPrefixedText();
468 if ( !isset( $this->opts['target'] ) ) {
469 $this->opts['target'] = '';
470 } else {
471 $this->opts['target'] = str_replace( '_', ' ', $this->opts['target'] );
472 }
473
474 if ( !isset( $this->opts['namespace'] ) ) {
475 $this->opts['namespace'] = '';
476 }
477
478 if ( !isset( $this->opts['nsInvert'] ) ) {
479 $this->opts['nsInvert'] = '';
480 }
481
482 if ( !isset( $this->opts['associated'] ) ) {
483 $this->opts['associated'] = false;
484 }
485
486 if ( !isset( $this->opts['contribs'] ) ) {
487 $this->opts['contribs'] = 'user';
488 }
489
490 if ( !isset( $this->opts['start'] ) ) {
491 $this->opts['start'] = '';
492 }
493
494 if ( !isset( $this->opts['end'] ) ) {
495 $this->opts['end'] = '';
496 }
497
498 if ( $this->opts['contribs'] == 'newbie' ) {
499 $this->opts['target'] = '';
500 }
501
502 if ( !isset( $this->opts['tagfilter'] ) ) {
503 $this->opts['tagfilter'] = '';
504 }
505
506 if ( !isset( $this->opts['topOnly'] ) ) {
507 $this->opts['topOnly'] = false;
508 }
509
510 if ( !isset( $this->opts['newOnly'] ) ) {
511 $this->opts['newOnly'] = false;
512 }
513
514 if ( !isset( $this->opts['hideMinor'] ) ) {
515 $this->opts['hideMinor'] = false;
516 }
517
518 // Modules required only for the form
519 $this->getOutput()->addModules( [
520 'mediawiki.userSuggest',
521 'mediawiki.special.contributions',
522 ] );
523 $this->getOutput()->addModuleStyles( 'mediawiki.widgets.DateInputWidget.styles' );
524 $this->getOutput()->enableOOUI();
525
526 $form = Html::openElement(
527 'form',
528 [
529 'method' => 'get',
530 'action' => wfScript(),
531 'class' => 'mw-contributions-form'
532 ]
533 );
534
535 # Add hidden params for tracking except for parameters in $skipParameters
536 $skipParameters = [
537 'namespace',
538 'nsInvert',
539 'deletedOnly',
540 'target',
541 'contribs',
542 'year',
543 'month',
544 'start',
545 'end',
546 'topOnly',
547 'newOnly',
548 'hideMinor',
549 'associated',
550 'tagfilter'
551 ];
552
553 foreach ( $this->opts as $name => $value ) {
554 if ( in_array( $name, $skipParameters ) ) {
555 continue;
556 }
557 $form .= "\t" . Html::hidden( $name, $value ) . "\n";
558 }
559
560 $tagFilter = ChangeTags::buildTagFilterSelector(
561 $this->opts['tagfilter'], false, $this->getContext() );
562
563 if ( $tagFilter ) {
564 $filterSelection = Html::rawElement(
565 'div',
566 [],
567 implode( "\u{00A0}", $tagFilter )
568 );
569 } else {
570 $filterSelection = Html::rawElement( 'div', [], '' );
571 }
572
573 $labelNewbies = Xml::radioLabel(
574 $this->msg( 'sp-contributions-newbies' )->text(),
575 'contribs',
576 'newbie',
577 'newbie',
578 $this->opts['contribs'] == 'newbie',
579 [ 'class' => 'mw-input' ]
580 );
581 $labelUsername = Xml::radioLabel(
582 $this->msg( 'sp-contributions-username' )->text(),
583 'contribs',
584 'user',
585 'user',
586 $this->opts['contribs'] == 'user',
587 [ 'class' => 'mw-input' ]
588 );
589 $input = Html::input(
590 'target',
591 $this->opts['target'],
592 'text',
593 [
594 'id' => 'mw-target-user-or-ip',
595 'size' => '40',
596 'class' => [
597 'mw-input',
598 'mw-ui-input-inline',
599 'mw-autocomplete-user', // used by mediawiki.userSuggest
600 ],
601 ] + (
602 // Only autofocus if target hasn't been specified or in non-newbies mode
603 ( $this->opts['contribs'] === 'newbie' || $this->opts['target'] )
604 ? [] : [ 'autofocus' => true ]
605 )
606 );
607
608 $targetSelection = Html::rawElement(
609 'div',
610 [],
611 $labelNewbies . '<br>' . $labelUsername . ' ' . $input . ' '
612 );
613
614 $hidden = $this->opts['namespace'] === '' ? ' mw-input-hidden' : '';
615 $namespaceSelection = Xml::tags(
616 'div',
617 [],
618 Xml::label(
619 $this->msg( 'namespace' )->text(),
620 'namespace',
621 ''
622 ) . "\u{00A0}" .
623 Html::namespaceSelector(
624 [ 'selected' => $this->opts['namespace'], 'all' => '', 'in-user-lang' => true ],
625 [
626 'name' => 'namespace',
627 'id' => 'namespace',
628 'class' => 'namespaceselector',
629 ]
630 ) . "\u{00A0}" .
631 Html::rawElement(
632 'span',
633 [ 'class' => 'mw-input-with-label' . $hidden ],
634 Xml::checkLabel(
635 $this->msg( 'invert' )->text(),
636 'nsInvert',
637 'nsinvert',
638 $this->opts['nsInvert'],
639 [
640 'title' => $this->msg( 'tooltip-invert' )->text(),
641 'class' => 'mw-input'
642 ]
643 ) . "\u{00A0}"
644 ) .
645 Html::rawElement( 'span', [ 'class' => 'mw-input-with-label' . $hidden ],
646 Xml::checkLabel(
647 $this->msg( 'namespace_association' )->text(),
648 'associated',
649 'nsassociated',
650 $this->opts['associated'],
651 [
652 'title' => $this->msg( 'tooltip-namespace_association' )->text(),
653 'class' => 'mw-input'
654 ]
655 ) . "\u{00A0}"
656 )
657 );
658
659 $filters = [];
660
661 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
662 $filters[] = Html::rawElement(
663 'span',
664 [ 'class' => 'mw-input-with-label' ],
665 Xml::checkLabel(
666 $this->msg( 'history-show-deleted' )->text(),
667 'deletedOnly',
668 'mw-show-deleted-only',
669 $this->opts['deletedOnly'],
670 [ 'class' => 'mw-input' ]
671 )
672 );
673 }
674
675 $filters[] = Html::rawElement(
676 'span',
677 [ 'class' => 'mw-input-with-label' ],
678 Xml::checkLabel(
679 $this->msg( 'sp-contributions-toponly' )->text(),
680 'topOnly',
681 'mw-show-top-only',
682 $this->opts['topOnly'],
683 [ 'class' => 'mw-input' ]
684 )
685 );
686 $filters[] = Html::rawElement(
687 'span',
688 [ 'class' => 'mw-input-with-label' ],
689 Xml::checkLabel(
690 $this->msg( 'sp-contributions-newonly' )->text(),
691 'newOnly',
692 'mw-show-new-only',
693 $this->opts['newOnly'],
694 [ 'class' => 'mw-input' ]
695 )
696 );
697 $filters[] = Html::rawElement(
698 'span',
699 [ 'class' => 'mw-input-with-label' ],
700 Xml::checkLabel(
701 $this->msg( 'sp-contributions-hideminor' )->text(),
702 'hideMinor',
703 'mw-hide-minor-edits',
704 $this->opts['hideMinor'],
705 [ 'class' => 'mw-input' ]
706 )
707 );
708
709 Hooks::run(
710 'SpecialContributions::getForm::filters',
711 [ $this, &$filters ]
712 );
713
714 $extraOptions = Html::rawElement(
715 'div',
716 [],
717 implode( '', $filters )
718 );
719
720 $dateRangeSelection = Html::rawElement(
721 'div',
722 [],
723 Xml::label( $this->msg( 'date-range-from' )->text(), 'mw-date-start' ) . ' ' .
724 new DateInputWidget( [
725 'infusable' => true,
726 'id' => 'mw-date-start',
727 'name' => 'start',
728 'value' => $this->opts['start'],
729 'longDisplayFormat' => true,
730 ] ) . '<br>' .
731 Xml::label( $this->msg( 'date-range-to' )->text(), 'mw-date-end' ) . ' ' .
732 new DateInputWidget( [
733 'infusable' => true,
734 'id' => 'mw-date-end',
735 'name' => 'end',
736 'value' => $this->opts['end'],
737 'longDisplayFormat' => true,
738 ] )
739 );
740
741 $submit = Xml::tags( 'div', [],
742 Html::submitButton(
743 $this->msg( 'sp-contributions-submit' )->text(),
744 [ 'class' => 'mw-submit' ], [ 'mw-ui-progressive' ]
745 )
746 );
747
748 $form .= Xml::fieldset(
749 $this->msg( 'sp-contributions-search' )->text(),
750 $targetSelection .
751 $namespaceSelection .
752 $filterSelection .
753 $extraOptions .
754 $dateRangeSelection .
755 $submit,
756 [ 'class' => 'mw-contributions-table' ]
757 );
758
759 $explain = $this->msg( 'sp-contributions-explain' );
760 if ( !$explain->isBlank() ) {
761 $form .= Html::rawElement(
762 'p', [ 'id' => 'mw-sp-contributions-explain' ], $explain->parse()
763 );
764 }
765
766 $form .= Xml::closeElement( 'form' );
767
768 return $form;
769 }
770
771 /**
772 * Return an array of subpages beginning with $search that this special page will accept.
773 *
774 * @param string $search Prefix to search for
775 * @param int $limit Maximum number of results to return (usually 10)
776 * @param int $offset Number of results to skip (usually 0)
777 * @return string[] Matching subpages
778 */
779 public function prefixSearchSubpages( $search, $limit, $offset ) {
780 $user = User::newFromName( $search );
781 if ( !$user ) {
782 // No prefix suggestion for invalid user
783 return [];
784 }
785 // Autocomplete subpage as user list - public to allow caching
786 return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
787 }
788
789 protected function getGroupName() {
790 return 'users';
791 }
792 }