Merge "Correct API documentation for action=parse&prop=headhtml"
[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 = '<p>' . $pager->getNavigationBar() . '</p>' .
248 $output .
249 '<p>' . $pager->getNavigationBar() . '</p>';
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 ) {
271 if ( !$this->including() ) {
272 if ( !$this->msg( $message, $target )->isDisabled() ) {
273 $out->wrapWikiMsg(
274 "<div class='mw-contributions-footer'>\n$1\n</div>",
275 [ $message, $target ] );
276 }
277 }
278 }
279 }
280 }
281
282 /**
283 * Generates the subheading with links
284 * @param User $userObj User object for the target
285 * @return string Appropriately-escaped HTML to be output literally
286 * @todo FIXME: Almost the same as getSubTitle in SpecialDeletedContributions.php.
287 * Could be combined.
288 */
289 protected function contributionsSub( $userObj ) {
290 if ( $userObj->isAnon() ) {
291 // Show a warning message that the user being searched for doesn't exists.
292 // User::isIP returns true for IP address and usemod IPs like '123.123.123.xxx',
293 // but returns false for IP ranges. We don't want to suggest either of these are
294 // valid usernames which we would with the 'contributions-userdoesnotexist' message.
295 if ( !User::isIP( $userObj->getName() ) && !$userObj->isIPRange() ) {
296 $this->getOutput()->wrapWikiMsg(
297 "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
298 [
299 'contributions-userdoesnotexist',
300 wfEscapeWikiText( $userObj->getName() ),
301 ]
302 );
303 if ( !$this->including() ) {
304 $this->getOutput()->setStatusCode( 404 );
305 }
306 }
307 $user = htmlspecialchars( $userObj->getName() );
308 } else {
309 $user = $this->getLinkRenderer()->makeLink( $userObj->getUserPage(), $userObj->getName() );
310 }
311 $nt = $userObj->getUserPage();
312 $talk = $userObj->getTalkPage();
313 $links = '';
314 if ( $talk ) {
315 $tools = self::getUserLinks( $this, $userObj );
316 $links = $this->getLanguage()->pipeList( $tools );
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 $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
357 }
358
359 /**
360 * Links to different places.
361 *
362 * @note This function is also called in DeletedContributionsPage
363 * @param SpecialPage $sp SpecialPage instance, for context
364 * @param User $target Target user object
365 * @return array
366 */
367 public static function getUserLinks( SpecialPage $sp, User $target ) {
368 $id = $target->getId();
369 $username = $target->getName();
370 $userpage = $target->getUserPage();
371 $talkpage = $target->getTalkPage();
372
373 $linkRenderer = $sp->getLinkRenderer();
374
375 # No talk pages for IP ranges.
376 if ( !IP::isValidRange( $username ) ) {
377 $tools['user-talk'] = $linkRenderer->makeLink(
378 $talkpage,
379 $sp->msg( 'sp-contributions-talk' )->text()
380 );
381 }
382
383 if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $username ) ) ) {
384 if ( $sp->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
385 if ( $target->isBlocked() && $target->getBlock()->getType() != Block::TYPE_AUTO ) {
386 $tools['block'] = $linkRenderer->makeKnownLink( # Change block link
387 SpecialPage::getTitleFor( 'Block', $username ),
388 $sp->msg( 'change-blocklink' )->text()
389 );
390 $tools['unblock'] = $linkRenderer->makeKnownLink( # Unblock link
391 SpecialPage::getTitleFor( 'Unblock', $username ),
392 $sp->msg( 'unblocklink' )->text()
393 );
394 } else { # User is not blocked
395 $tools['block'] = $linkRenderer->makeKnownLink( # Block link
396 SpecialPage::getTitleFor( 'Block', $username ),
397 $sp->msg( 'blocklink' )->text()
398 );
399 }
400 }
401
402 # Block log link
403 $tools['log-block'] = $linkRenderer->makeKnownLink(
404 SpecialPage::getTitleFor( 'Log', 'block' ),
405 $sp->msg( 'sp-contributions-blocklog' )->text(),
406 [],
407 [ 'page' => $userpage->getPrefixedText() ]
408 );
409
410 # Suppression log link (T61120)
411 if ( $sp->getUser()->isAllowed( 'suppressionlog' ) ) {
412 $tools['log-suppression'] = $linkRenderer->makeKnownLink(
413 SpecialPage::getTitleFor( 'Log', 'suppress' ),
414 $sp->msg( 'sp-contributions-suppresslog', $username )->text(),
415 [],
416 [ 'offender' => $username ]
417 );
418 }
419 }
420
421 # Don't show some links for IP ranges
422 if ( !IP::isValidRange( $username ) ) {
423 # Uploads
424 $tools['uploads'] = $linkRenderer->makeKnownLink(
425 SpecialPage::getTitleFor( 'Listfiles', $username ),
426 $sp->msg( 'sp-contributions-uploads' )->text()
427 );
428
429 # Other logs link
430 $tools['logs'] = $linkRenderer->makeKnownLink(
431 SpecialPage::getTitleFor( 'Log', $username ),
432 $sp->msg( 'sp-contributions-logs' )->text()
433 );
434
435 # Add link to deleted user contributions for priviledged users
436 if ( $sp->getUser()->isAllowed( 'deletedhistory' ) ) {
437 $tools['deletedcontribs'] = $linkRenderer->makeKnownLink(
438 SpecialPage::getTitleFor( 'DeletedContributions', $username ),
439 $sp->msg( 'sp-contributions-deleted', $username )->text()
440 );
441 }
442 }
443
444 # Add a link to change user rights for privileged users
445 $userrightsPage = new UserrightsPage();
446 $userrightsPage->setContext( $sp->getContext() );
447 if ( $userrightsPage->userCanChangeRights( $target ) ) {
448 $tools['userrights'] = $linkRenderer->makeKnownLink(
449 SpecialPage::getTitleFor( 'Userrights', $username ),
450 $sp->msg( 'sp-contributions-userrights', $username )->text()
451 );
452 }
453
454 Hooks::run( 'ContributionsToolLinks', [ $id, $userpage, &$tools, $sp ] );
455
456 return $tools;
457 }
458
459 /**
460 * Generates the namespace selector form with hidden attributes.
461 * @return string HTML fragment
462 */
463 protected function getForm() {
464 $this->opts['title'] = $this->getPageTitle()->getPrefixedText();
465 if ( !isset( $this->opts['target'] ) ) {
466 $this->opts['target'] = '';
467 } else {
468 $this->opts['target'] = str_replace( '_', ' ', $this->opts['target'] );
469 }
470
471 if ( !isset( $this->opts['namespace'] ) ) {
472 $this->opts['namespace'] = '';
473 }
474
475 if ( !isset( $this->opts['nsInvert'] ) ) {
476 $this->opts['nsInvert'] = '';
477 }
478
479 if ( !isset( $this->opts['associated'] ) ) {
480 $this->opts['associated'] = false;
481 }
482
483 if ( !isset( $this->opts['contribs'] ) ) {
484 $this->opts['contribs'] = 'user';
485 }
486
487 if ( !isset( $this->opts['start'] ) ) {
488 $this->opts['start'] = '';
489 }
490
491 if ( !isset( $this->opts['end'] ) ) {
492 $this->opts['end'] = '';
493 }
494
495 if ( $this->opts['contribs'] == 'newbie' ) {
496 $this->opts['target'] = '';
497 }
498
499 if ( !isset( $this->opts['tagfilter'] ) ) {
500 $this->opts['tagfilter'] = '';
501 }
502
503 if ( !isset( $this->opts['topOnly'] ) ) {
504 $this->opts['topOnly'] = false;
505 }
506
507 if ( !isset( $this->opts['newOnly'] ) ) {
508 $this->opts['newOnly'] = false;
509 }
510
511 if ( !isset( $this->opts['hideMinor'] ) ) {
512 $this->opts['hideMinor'] = false;
513 }
514
515 // Modules required only for the form
516 $this->getOutput()->addModules( [
517 'mediawiki.userSuggest',
518 'mediawiki.special.contributions',
519 ] );
520 $this->getOutput()->addModuleStyles( 'mediawiki.widgets.DateInputWidget.styles' );
521 $this->getOutput()->enableOOUI();
522
523 $form = Html::openElement(
524 'form',
525 [
526 'method' => 'get',
527 'action' => wfScript(),
528 'class' => 'mw-contributions-form'
529 ]
530 );
531
532 # Add hidden params for tracking except for parameters in $skipParameters
533 $skipParameters = [
534 'namespace',
535 'nsInvert',
536 'deletedOnly',
537 'target',
538 'contribs',
539 'year',
540 'month',
541 'start',
542 'end',
543 'topOnly',
544 'newOnly',
545 'hideMinor',
546 'associated',
547 'tagfilter'
548 ];
549
550 foreach ( $this->opts as $name => $value ) {
551 if ( in_array( $name, $skipParameters ) ) {
552 continue;
553 }
554 $form .= "\t" . Html::hidden( $name, $value ) . "\n";
555 }
556
557 $tagFilter = ChangeTags::buildTagFilterSelector(
558 $this->opts['tagfilter'], false, $this->getContext() );
559
560 if ( $tagFilter ) {
561 $filterSelection = Html::rawElement(
562 'div',
563 [],
564 implode( "\u{00A0}", $tagFilter )
565 );
566 } else {
567 $filterSelection = Html::rawElement( 'div', [], '' );
568 }
569
570 $labelNewbies = Xml::radioLabel(
571 $this->msg( 'sp-contributions-newbies' )->text(),
572 'contribs',
573 'newbie',
574 'newbie',
575 $this->opts['contribs'] == 'newbie',
576 [ 'class' => 'mw-input' ]
577 );
578 $labelUsername = Xml::radioLabel(
579 $this->msg( 'sp-contributions-username' )->text(),
580 'contribs',
581 'user',
582 'user',
583 $this->opts['contribs'] == 'user',
584 [ 'class' => 'mw-input' ]
585 );
586 $input = Html::input(
587 'target',
588 $this->opts['target'],
589 'text',
590 [
591 'id' => 'mw-target-user-or-ip',
592 'size' => '40',
593 'class' => [
594 'mw-input',
595 'mw-ui-input-inline',
596 'mw-autocomplete-user', // used by mediawiki.userSuggest
597 ],
598 ] + (
599 // Only autofocus if target hasn't been specified or in non-newbies mode
600 ( $this->opts['contribs'] === 'newbie' || $this->opts['target'] )
601 ? [] : [ 'autofocus' => true ]
602 )
603 );
604
605 $targetSelection = Html::rawElement(
606 'div',
607 [],
608 $labelNewbies . '<br>' . $labelUsername . ' ' . $input . ' '
609 );
610
611 $hidden = $this->opts['namespace'] === '' ? ' mw-input-hidden' : '';
612 $namespaceSelection = Xml::tags(
613 'div',
614 [],
615 Xml::label(
616 $this->msg( 'namespace' )->text(),
617 'namespace',
618 ''
619 ) . "\u{00A0}" .
620 Html::namespaceSelector(
621 [ 'selected' => $this->opts['namespace'], 'all' => '', 'in-user-lang' => true ],
622 [
623 'name' => 'namespace',
624 'id' => 'namespace',
625 'class' => 'namespaceselector',
626 ]
627 ) . "\u{00A0}" .
628 Html::rawElement(
629 'span',
630 [ 'class' => 'mw-input-with-label' . $hidden ],
631 Xml::checkLabel(
632 $this->msg( 'invert' )->text(),
633 'nsInvert',
634 'nsinvert',
635 $this->opts['nsInvert'],
636 [
637 'title' => $this->msg( 'tooltip-invert' )->text(),
638 'class' => 'mw-input'
639 ]
640 ) . "\u{00A0}"
641 ) .
642 Html::rawElement( 'span', [ 'class' => 'mw-input-with-label' . $hidden ],
643 Xml::checkLabel(
644 $this->msg( 'namespace_association' )->text(),
645 'associated',
646 'nsassociated',
647 $this->opts['associated'],
648 [
649 'title' => $this->msg( 'tooltip-namespace_association' )->text(),
650 'class' => 'mw-input'
651 ]
652 ) . "\u{00A0}"
653 )
654 );
655
656 $filters = [];
657
658 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
659 $filters[] = Html::rawElement(
660 'span',
661 [ 'class' => 'mw-input-with-label' ],
662 Xml::checkLabel(
663 $this->msg( 'history-show-deleted' )->text(),
664 'deletedOnly',
665 'mw-show-deleted-only',
666 $this->opts['deletedOnly'],
667 [ 'class' => 'mw-input' ]
668 )
669 );
670 }
671
672 $filters[] = Html::rawElement(
673 'span',
674 [ 'class' => 'mw-input-with-label' ],
675 Xml::checkLabel(
676 $this->msg( 'sp-contributions-toponly' )->text(),
677 'topOnly',
678 'mw-show-top-only',
679 $this->opts['topOnly'],
680 [ 'class' => 'mw-input' ]
681 )
682 );
683 $filters[] = Html::rawElement(
684 'span',
685 [ 'class' => 'mw-input-with-label' ],
686 Xml::checkLabel(
687 $this->msg( 'sp-contributions-newonly' )->text(),
688 'newOnly',
689 'mw-show-new-only',
690 $this->opts['newOnly'],
691 [ 'class' => 'mw-input' ]
692 )
693 );
694 $filters[] = Html::rawElement(
695 'span',
696 [ 'class' => 'mw-input-with-label' ],
697 Xml::checkLabel(
698 $this->msg( 'sp-contributions-hideminor' )->text(),
699 'hideMinor',
700 'mw-hide-minor-edits',
701 $this->opts['hideMinor'],
702 [ 'class' => 'mw-input' ]
703 )
704 );
705
706 Hooks::run(
707 'SpecialContributions::getForm::filters',
708 [ $this, &$filters ]
709 );
710
711 $extraOptions = Html::rawElement(
712 'div',
713 [],
714 implode( '', $filters )
715 );
716
717 $dateRangeSelection = Html::rawElement(
718 'div',
719 [],
720 Xml::label( $this->msg( 'date-range-from' )->text(), 'mw-date-start' ) . ' ' .
721 new DateInputWidget( [
722 'infusable' => true,
723 'id' => 'mw-date-start',
724 'name' => 'start',
725 'value' => $this->opts['start'],
726 'longDisplayFormat' => true,
727 ] ) . '<br>' .
728 Xml::label( $this->msg( 'date-range-to' )->text(), 'mw-date-end' ) . ' ' .
729 new DateInputWidget( [
730 'infusable' => true,
731 'id' => 'mw-date-end',
732 'name' => 'end',
733 'value' => $this->opts['end'],
734 'longDisplayFormat' => true,
735 ] )
736 );
737
738 $submit = Xml::tags( 'div', [],
739 Html::submitButton(
740 $this->msg( 'sp-contributions-submit' )->text(),
741 [ 'class' => 'mw-submit' ], [ 'mw-ui-progressive' ]
742 )
743 );
744
745 $form .= Xml::fieldset(
746 $this->msg( 'sp-contributions-search' )->text(),
747 $targetSelection .
748 $namespaceSelection .
749 $filterSelection .
750 $extraOptions .
751 $dateRangeSelection .
752 $submit,
753 [ 'class' => 'mw-contributions-table' ]
754 );
755
756 $explain = $this->msg( 'sp-contributions-explain' );
757 if ( !$explain->isBlank() ) {
758 $form .= Html::rawElement(
759 'p', [ 'id' => 'mw-sp-contributions-explain' ], $explain->parse()
760 );
761 }
762
763 $form .= Xml::closeElement( 'form' );
764
765 return $form;
766 }
767
768 /**
769 * Return an array of subpages beginning with $search that this special page will accept.
770 *
771 * @param string $search Prefix to search for
772 * @param int $limit Maximum number of results to return (usually 10)
773 * @param int $offset Number of results to skip (usually 0)
774 * @return string[] Matching subpages
775 */
776 public function prefixSearchSubpages( $search, $limit, $offset ) {
777 $user = User::newFromName( $search );
778 if ( !$user ) {
779 // No prefix suggestion for invalid user
780 return [];
781 }
782 // Autocomplete subpage as user list - public to allow caching
783 return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
784 }
785
786 protected function getGroupName() {
787 return 'users';
788 }
789 }