Merge "API: Rewrite queries for list=allusers"
[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 /**
25 * Special:Contributions, show user contributions in a paged list
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialContributions extends IncludableSpecialPage {
30 protected $opts;
31
32 public function __construct() {
33 parent::__construct( 'Contributions' );
34 }
35
36 public function execute( $par ) {
37 $this->setHeaders();
38 $this->outputHeader();
39 $out = $this->getOutput();
40 $out->addModuleStyles( 'mediawiki.special' );
41
42 $this->opts = array();
43 $request = $this->getRequest();
44
45 if ( $par !== null ) {
46 $target = $par;
47 } else {
48 $target = $request->getVal( 'target' );
49 }
50
51 // check for radiobox
52 if ( $request->getVal( 'contribs' ) == 'newbie' ) {
53 $target = 'newbies';
54 $this->opts['contribs'] = 'newbie';
55 } elseif ( $par === 'newbies' ) { // b/c for WMF
56 $target = 'newbies';
57 $this->opts['contribs'] = 'newbie';
58 } else {
59 $this->opts['contribs'] = 'user';
60 }
61
62 $this->opts['deletedOnly'] = $request->getBool( 'deletedOnly' );
63
64 if ( !strlen( $target ) ) {
65 if ( !$this->including() ) {
66 $out->addHTML( $this->getForm() );
67 }
68
69 return;
70 }
71
72 $user = $this->getUser();
73
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
79 $nt = Title::makeTitleSafe( NS_USER, $target );
80 if ( !$nt ) {
81 $out->addHTML( $this->getForm() );
82
83 return;
84 }
85 $userObj = User::newFromName( $nt->getText(), false );
86 if ( !$userObj ) {
87 $out->addHTML( $this->getForm() );
88
89 return;
90 }
91 $id = $userObj->getID();
92
93 if ( $this->opts['contribs'] != 'newbie' ) {
94 $target = $nt->getText();
95 $out->addSubtitle( $this->contributionsSub( $userObj ) );
96 $out->setHTMLTitle( $this->msg(
97 'pagetitle',
98 $this->msg( 'contributions-title', $target )->plain()
99 )->inContentLanguage() );
100 $this->getSkin()->setRelevantUser( $userObj );
101 } else {
102 $out->addSubtitle( $this->msg( 'sp-contributions-newbies-sub' ) );
103 $out->setHTMLTitle( $this->msg(
104 'pagetitle',
105 $this->msg( 'sp-contributions-newbies-title' )->plain()
106 )->inContentLanguage() );
107 }
108
109 if ( ( $ns = $request->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
110 $this->opts['namespace'] = intval( $ns );
111 } else {
112 $this->opts['namespace'] = '';
113 }
114
115 $this->opts['associated'] = $request->getBool( 'associated' );
116 $this->opts['nsInvert'] = (bool)$request->getVal( 'nsInvert' );
117 $this->opts['tagfilter'] = (string)$request->getVal( 'tagfilter' );
118
119 // Allows reverts to have the bot flag in recent changes. It is just here to
120 // be passed in the form at the top of the page
121 if ( $user->isAllowed( 'markbotedits' ) && $request->getBool( 'bot' ) ) {
122 $this->opts['bot'] = '1';
123 }
124
125 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
126 # Offset overrides year/month selection
127 if ( $skip ) {
128 $this->opts['year'] = '';
129 $this->opts['month'] = '';
130 } else {
131 $this->opts['year'] = $request->getIntOrNull( 'year' );
132 $this->opts['month'] = $request->getIntOrNull( 'month' );
133 }
134
135 $feedType = $request->getVal( 'feed' );
136
137 $feedParams = array(
138 'action' => 'feedcontributions',
139 'user' => $target,
140 );
141 if ( $this->opts['topOnly'] ) {
142 $feedParams['toponly'] = true;
143 }
144 if ( $this->opts['newOnly'] ) {
145 $feedParams['newonly'] = true;
146 }
147 if ( $this->opts['deletedOnly'] ) {
148 $feedParams['deletedonly'] = true;
149 }
150 if ( $this->opts['tagfilter'] !== '' ) {
151 $feedParams['tagfilter'] = $this->opts['tagfilter'];
152 }
153 if ( $this->opts['namespace'] !== '' ) {
154 $feedParams['namespace'] = $this->opts['namespace'];
155 }
156 // Don't use year and month for the feed URL, but pass them on if
157 // we redirect to API (if $feedType is specified)
158 if ( $feedType && $this->opts['year'] !== null ) {
159 $feedParams['year'] = $this->opts['year'];
160 }
161 if ( $feedType && $this->opts['month'] !== null ) {
162 $feedParams['month'] = $this->opts['month'];
163 }
164
165 if ( $feedType ) {
166 // Maintain some level of backwards compatibility
167 // If people request feeds using the old parameters, redirect to API
168 $feedParams['feedformat'] = $feedType;
169 $url = wfAppendQuery( wfScript( 'api' ), $feedParams );
170
171 $out->redirect( $url, '301' );
172
173 return;
174 }
175
176 // Add RSS/atom links
177 $this->addFeedLinks( $feedParams );
178
179 if ( wfRunHooks( 'SpecialContributionsBeforeMainOutput', array( $id, $userObj, $this ) ) ) {
180 if ( !$this->including() ) {
181 $out->addHTML( $this->getForm() );
182 }
183 $pager = new ContribsPager( $this->getContext(), array(
184 'target' => $target,
185 'contribs' => $this->opts['contribs'],
186 'namespace' => $this->opts['namespace'],
187 'tagfilter' => $this->opts['tagfilter'],
188 'year' => $this->opts['year'],
189 'month' => $this->opts['month'],
190 'deletedOnly' => $this->opts['deletedOnly'],
191 'topOnly' => $this->opts['topOnly'],
192 'newOnly' => $this->opts['newOnly'],
193 'nsInvert' => $this->opts['nsInvert'],
194 'associated' => $this->opts['associated'],
195 ) );
196
197 if ( !$pager->getNumRows() ) {
198 $out->addWikiMsg( 'nocontribs', $target );
199 } else {
200 # Show a message about slave lag, if applicable
201 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
202 if ( $lag > 0 ) {
203 $out->showLagWarning( $lag );
204 }
205
206 $output = $pager->getBody();
207 if ( !$this->including() ) {
208 $output = '<p>' . $pager->getNavigationBar() . '</p>' .
209 $output .
210 '<p>' . $pager->getNavigationBar() . '</p>';
211 }
212 $out->addHTML( $output );
213 }
214 $out->preventClickjacking( $pager->getPreventClickjacking() );
215
216 # Show the appropriate "footer" message - WHOIS tools, etc.
217 if ( $this->opts['contribs'] == 'newbie' ) {
218 $message = 'sp-contributions-footer-newbies';
219 } elseif ( IP::isIPAddress( $target ) ) {
220 $message = 'sp-contributions-footer-anon';
221 } elseif ( $userObj->isAnon() ) {
222 // No message for non-existing users
223 $message = '';
224 } else {
225 $message = 'sp-contributions-footer';
226 }
227
228 if ( $message ) {
229 if ( !$this->including() ) {
230 if ( !$this->msg( $message, $target )->isDisabled() ) {
231 $out->wrapWikiMsg(
232 "<div class='mw-contributions-footer'>\n$1\n</div>",
233 array( $message, $target ) );
234 }
235 }
236 }
237 }
238 }
239
240 /**
241 * Generates the subheading with links
242 * @param User $userObj User object for the target
243 * @return string Appropriately-escaped HTML to be output literally
244 * @todo FIXME: Almost the same as getSubTitle in SpecialDeletedContributions.php.
245 * Could be combined.
246 */
247 protected function contributionsSub( $userObj ) {
248 if ( $userObj->isAnon() ) {
249 // Show a warning message that the user being searched for doesn't exists
250 if ( !User::isIP( $userObj->getName() ) ) {
251 $this->getOutput()->wrapWikiMsg(
252 "<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
253 array(
254 'contributions-userdoesnotexist',
255 wfEscapeWikiText( $userObj->getName() ),
256 )
257 );
258 if ( !$this->including() ) {
259 $this->getOutput()->setStatusCode( 404 );
260 }
261 }
262 $user = htmlspecialchars( $userObj->getName() );
263 } else {
264 $user = Linker::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
265 }
266 $nt = $userObj->getUserPage();
267 $talk = $userObj->getTalkPage();
268 $links = '';
269 if ( $talk ) {
270 $tools = $this->getUserLinks( $nt, $talk, $userObj );
271 $links = $this->getLanguage()->pipeList( $tools );
272
273 // Show a note if the user is blocked and display the last block log entry.
274 // Do not expose the autoblocks, since that may lead to a leak of accounts' IPs,
275 // and also this will display a totally irrelevant log entry as a current block.
276 if ( !$this->including() ) {
277 $block = Block::newFromTarget( $userObj, $userObj );
278 if ( !is_null( $block ) && $block->getType() != Block::TYPE_AUTO ) {
279 if ( $block->getType() == Block::TYPE_RANGE ) {
280 $nt = MWNamespace::getCanonicalName( NS_USER ) . ':' . $block->getTarget();
281 }
282
283 $out = $this->getOutput(); // showLogExtract() wants first parameter by reference
284 LogEventsList::showLogExtract(
285 $out,
286 'block',
287 $nt,
288 '',
289 array(
290 'lim' => 1,
291 'showIfEmpty' => false,
292 'msgKey' => array(
293 $userObj->isAnon() ?
294 'sp-contributions-blocked-notice-anon' :
295 'sp-contributions-blocked-notice',
296 $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
297 ),
298 'offset' => '' # don't use WebRequest parameter offset
299 )
300 );
301 }
302 }
303 }
304
305 return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
306 }
307
308 /**
309 * Links to different places.
310 * @param Title $userpage Target user page
311 * @param Title $talkpage Talk page
312 * @param User $target Target user object
313 * @return array
314 */
315 public function getUserLinks( Title $userpage, Title $talkpage, User $target ) {
316
317 $id = $target->getId();
318 $username = $target->getName();
319
320 $tools[] = Linker::link( $talkpage, $this->msg( 'sp-contributions-talk' )->escaped() );
321
322 if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $username ) ) ) {
323 if ( $this->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
324 if ( $target->isBlocked() && $target->getBlock()->getType() != Block::TYPE_AUTO ) {
325 $tools[] = Linker::linkKnown( # Change block link
326 SpecialPage::getTitleFor( 'Block', $username ),
327 $this->msg( 'change-blocklink' )->escaped()
328 );
329 $tools[] = Linker::linkKnown( # Unblock link
330 SpecialPage::getTitleFor( 'Unblock', $username ),
331 $this->msg( 'unblocklink' )->escaped()
332 );
333 } else { # User is not blocked
334 $tools[] = Linker::linkKnown( # Block link
335 SpecialPage::getTitleFor( 'Block', $username ),
336 $this->msg( 'blocklink' )->escaped()
337 );
338 }
339 }
340
341 # Block log link
342 $tools[] = Linker::linkKnown(
343 SpecialPage::getTitleFor( 'Log', 'block' ),
344 $this->msg( 'sp-contributions-blocklog' )->escaped(),
345 array(),
346 array( 'page' => $userpage->getPrefixedText() )
347 );
348
349 # Suppression log link (bug 59120)
350 if ( $this->getUser()->isAllowed( 'suppressionlog' ) ) {
351 $tools[] = Linker::linkKnown(
352 SpecialPage::getTitleFor( 'Log', 'suppress' ),
353 $this->msg( 'sp-contributions-suppresslog' )->escaped(),
354 array(),
355 array( 'offender' => $username )
356 );
357 }
358 }
359 # Uploads
360 $tools[] = Linker::linkKnown(
361 SpecialPage::getTitleFor( 'Listfiles', $username ),
362 $this->msg( 'sp-contributions-uploads' )->escaped()
363 );
364
365 # Other logs link
366 $tools[] = Linker::linkKnown(
367 SpecialPage::getTitleFor( 'Log', $username ),
368 $this->msg( 'sp-contributions-logs' )->escaped()
369 );
370
371 # Add link to deleted user contributions for priviledged users
372 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
373 $tools[] = Linker::linkKnown(
374 SpecialPage::getTitleFor( 'DeletedContributions', $username ),
375 $this->msg( 'sp-contributions-deleted' )->escaped()
376 );
377 }
378
379 # Add a link to change user rights for privileged users
380 $userrightsPage = new UserrightsPage();
381 $userrightsPage->setContext( $this->getContext() );
382 if ( $userrightsPage->userCanChangeRights( $target ) ) {
383 $tools[] = Linker::linkKnown(
384 SpecialPage::getTitleFor( 'Userrights', $username ),
385 $this->msg( 'sp-contributions-userrights' )->escaped()
386 );
387 }
388
389 wfRunHooks( 'ContributionsToolLinks', array( $id, $userpage, &$tools ) );
390
391 return $tools;
392 }
393
394 /**
395 * Generates the namespace selector form with hidden attributes.
396 * @return string HTML fragment
397 */
398 protected function getForm() {
399 $this->opts['title'] = $this->getPageTitle()->getPrefixedText();
400 if ( !isset( $this->opts['target'] ) ) {
401 $this->opts['target'] = '';
402 } else {
403 $this->opts['target'] = str_replace( '_', ' ', $this->opts['target'] );
404 }
405
406 if ( !isset( $this->opts['namespace'] ) ) {
407 $this->opts['namespace'] = '';
408 }
409
410 if ( !isset( $this->opts['nsInvert'] ) ) {
411 $this->opts['nsInvert'] = '';
412 }
413
414 if ( !isset( $this->opts['associated'] ) ) {
415 $this->opts['associated'] = false;
416 }
417
418 if ( !isset( $this->opts['contribs'] ) ) {
419 $this->opts['contribs'] = 'user';
420 }
421
422 if ( !isset( $this->opts['year'] ) ) {
423 $this->opts['year'] = '';
424 }
425
426 if ( !isset( $this->opts['month'] ) ) {
427 $this->opts['month'] = '';
428 }
429
430 if ( $this->opts['contribs'] == 'newbie' ) {
431 $this->opts['target'] = '';
432 }
433
434 if ( !isset( $this->opts['tagfilter'] ) ) {
435 $this->opts['tagfilter'] = '';
436 }
437
438 if ( !isset( $this->opts['topOnly'] ) ) {
439 $this->opts['topOnly'] = false;
440 }
441
442 if ( !isset( $this->opts['newOnly'] ) ) {
443 $this->opts['newOnly'] = false;
444 }
445
446 $form = Html::openElement(
447 'form',
448 array(
449 'method' => 'get',
450 'action' => wfScript(),
451 'class' => 'mw-contributions-form'
452 )
453 );
454
455 # Add hidden params for tracking except for parameters in $skipParameters
456 $skipParameters = array(
457 'namespace',
458 'nsInvert',
459 'deletedOnly',
460 'target',
461 'contribs',
462 'year',
463 'month',
464 'topOnly',
465 'newOnly',
466 'associated'
467 );
468
469 foreach ( $this->opts as $name => $value ) {
470 if ( in_array( $name, $skipParameters ) ) {
471 continue;
472 }
473 $form .= "\t" . Html::hidden( $name, $value ) . "\n";
474 }
475
476 $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagfilter'] );
477
478 if ( $tagFilter ) {
479 $filterSelection = Html::rawElement(
480 'td',
481 array(),
482 array_shift( $tagFilter ) . implode( '&#160', $tagFilter )
483 );
484 } else {
485 $filterSelection = Html::rawElement( 'td', array( 'colspan' => 2 ), '' );
486 }
487
488 $labelNewbies = Xml::radioLabel(
489 $this->msg( 'sp-contributions-newbies' )->text(),
490 'contribs',
491 'newbie',
492 'newbie',
493 $this->opts['contribs'] == 'newbie',
494 array( 'class' => 'mw-input' )
495 );
496 $labelUsername = Xml::radioLabel(
497 $this->msg( 'sp-contributions-username' )->text(),
498 'contribs',
499 'user',
500 'user',
501 $this->opts['contribs'] == 'user',
502 array( 'class' => 'mw-input' )
503 );
504 $input = Html::input(
505 'target',
506 $this->opts['target'],
507 'text',
508 array( 'size' => '40', 'required' => '', 'class' => 'mw-input mw-ui-input-inline' ) +
509 ( $this->opts['target'] ? array() : array( 'autofocus' )
510 )
511 );
512 $targetSelection = Html::rawElement(
513 'td',
514 array( 'colspan' => 2 ),
515 $labelNewbies . '<br />' . $labelUsername . ' ' . $input . ' '
516 );
517
518 $namespaceSelection = Xml::tags(
519 'td',
520 array(),
521 Xml::label(
522 $this->msg( 'namespace' )->text(),
523 'namespace',
524 ''
525 ) .
526 Html::namespaceSelector(
527 array( 'selected' => $this->opts['namespace'], 'all' => '' ),
528 array(
529 'name' => 'namespace',
530 'id' => 'namespace',
531 'class' => 'namespaceselector',
532 )
533 ) . '&#160;' .
534 Html::rawElement(
535 'span',
536 array( 'style' => 'white-space: nowrap' ),
537 Xml::checkLabel(
538 $this->msg( 'invert' )->text(),
539 'nsInvert',
540 'nsInvert',
541 $this->opts['nsInvert'],
542 array(
543 'title' => $this->msg( 'tooltip-invert' )->text(),
544 'class' => 'mw-input'
545 )
546 ) . '&#160;'
547 ) .
548 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
549 Xml::checkLabel(
550 $this->msg( 'namespace_association' )->text(),
551 'associated',
552 'associated',
553 $this->opts['associated'],
554 array(
555 'title' => $this->msg( 'tooltip-namespace_association' )->text(),
556 'class' => 'mw-input'
557 )
558 ) . '&#160;'
559 )
560 );
561
562 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
563 $deletedOnlyCheck = Html::rawElement(
564 'span',
565 array( 'style' => 'white-space: nowrap' ),
566 Xml::checkLabel(
567 $this->msg( 'history-show-deleted' )->text(),
568 'deletedOnly',
569 'mw-show-deleted-only',
570 $this->opts['deletedOnly'],
571 array( 'class' => 'mw-input' )
572 )
573 );
574 } else {
575 $deletedOnlyCheck = '';
576 }
577
578 $checkLabelTopOnly = Html::rawElement(
579 'span',
580 array( 'style' => 'white-space: nowrap' ),
581 Xml::checkLabel(
582 $this->msg( 'sp-contributions-toponly' )->text(),
583 'topOnly',
584 'mw-show-top-only',
585 $this->opts['topOnly'],
586 array( 'class' => 'mw-input' )
587 )
588 );
589 $checkLabelNewOnly = Html::rawElement(
590 'span',
591 array( 'style' => 'white-space: nowrap' ),
592 Xml::checkLabel(
593 $this->msg( 'sp-contributions-newonly' )->text(),
594 'newOnly',
595 'mw-show-new-only',
596 $this->opts['newOnly'],
597 array( 'class' => 'mw-input' )
598 )
599 );
600 $extraOptions = Html::rawElement(
601 'td',
602 array( 'colspan' => 2 ),
603 $deletedOnlyCheck . $checkLabelTopOnly . $checkLabelNewOnly
604 );
605
606 $className = 'mw-submit';
607 if ( $this->getConfig( 'UseMediaWikiUIEverywhere') ) {
608 $className .= ' mw-ui-button mw-ui-progressive';
609 }
610
611 $dateSelectionAndSubmit = Xml::tags( 'td', array( 'colspan' => 2 ),
612 Xml::dateMenu(
613 $this->opts['year'] === '' ? MWTimestamp::getInstance()->format( 'Y' ) : $this->opts['year'],
614 $this->opts['month']
615 ) . ' ' .
616 Xml::submitButton(
617 $this->msg( 'sp-contributions-submit' )->text(),
618 array( 'class' => $className )
619 )
620 );
621
622 $form .= Xml::fieldset( $this->msg( 'sp-contributions-search' )->text() );
623 $form .= Html::rawElement( 'table', array( 'class' => 'mw-contributions-table' ), "\n" .
624 Html::rawElement( 'tr', array(), $targetSelection ) . "\n" .
625 Html::rawElement( 'tr', array(), $namespaceSelection ) . "\n" .
626 Html::rawElement( 'tr', array(), $filterSelection ) . "\n" .
627 Html::rawElement( 'tr', array(), $extraOptions ) . "\n" .
628 Html::rawElement( 'tr', array(), $dateSelectionAndSubmit ) . "\n"
629 );
630
631 $explain = $this->msg( 'sp-contributions-explain' );
632 if ( !$explain->isBlank() ) {
633 $form .= "<p id='mw-sp-contributions-explain'>{$explain->parse()}</p>";
634 }
635
636 $form .= Xml::closeElement( 'fieldset' ) . Xml::closeElement( 'form' );
637
638 return $form;
639 }
640
641 protected function getGroupName() {
642 return 'users';
643 }
644 }
645
646 /**
647 * Pager for Special:Contributions
648 * @ingroup SpecialPage Pager
649 */
650 class ContribsPager extends ReverseChronologicalPager {
651 public $mDefaultDirection = IndexPager::DIR_DESCENDING;
652 public $messages;
653 public $target;
654 public $namespace = '';
655 public $mDb;
656 public $preventClickjacking = false;
657
658 /** @var DatabaseBase */
659 public $mDbSecondary;
660
661 /**
662 * @var array
663 */
664 protected $mParentLens;
665
666 function __construct( IContextSource $context, array $options ) {
667 parent::__construct( $context );
668
669 $msgs = array(
670 'diff',
671 'hist',
672 'newarticle',
673 'pipe-separator',
674 'rev-delundel',
675 'rollbacklink',
676 'uctop'
677 );
678
679 foreach ( $msgs as $msg ) {
680 $this->messages[$msg] = $this->msg( $msg )->escaped();
681 }
682
683 $this->target = isset( $options['target'] ) ? $options['target'] : '';
684 $this->contribs = isset( $options['contribs'] ) ? $options['contribs'] : 'users';
685 $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : '';
686 $this->tagFilter = isset( $options['tagfilter'] ) ? $options['tagfilter'] : false;
687 $this->nsInvert = isset( $options['nsInvert'] ) ? $options['nsInvert'] : false;
688 $this->associated = isset( $options['associated'] ) ? $options['associated'] : false;
689
690 $this->deletedOnly = !empty( $options['deletedOnly'] );
691 $this->topOnly = !empty( $options['topOnly'] );
692 $this->newOnly = !empty( $options['newOnly'] );
693
694 $year = isset( $options['year'] ) ? $options['year'] : false;
695 $month = isset( $options['month'] ) ? $options['month'] : false;
696 $this->getDateCond( $year, $month );
697
698 // Most of this code will use the 'contributions' group DB, which can map to slaves
699 // with extra user based indexes or partioning by user. The additional metadata
700 // queries should use a regular slave since the lookup pattern is not all by user.
701 $this->mDbSecondary = wfGetDB( DB_SLAVE ); // any random slave
702 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
703 }
704
705 function getDefaultQuery() {
706 $query = parent::getDefaultQuery();
707 $query['target'] = $this->target;
708
709 return $query;
710 }
711
712 /**
713 * This method basically executes the exact same code as the parent class, though with
714 * a hook added, to allow extentions to add additional queries.
715 *
716 * @param string $offset Index offset, inclusive
717 * @param int $limit Exact query limit
718 * @param bool $descending Query direction, false for ascending, true for descending
719 * @return ResultWrapper
720 */
721 function reallyDoQuery( $offset, $limit, $descending ) {
722 list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo(
723 $offset,
724 $limit,
725 $descending
726 );
727 $pager = $this;
728
729 /*
730 * This hook will allow extensions to add in additional queries, so they can get their data
731 * in My Contributions as well. Extensions should append their results to the $data array.
732 *
733 * Extension queries have to implement the navbar requirement as well. They should
734 * - have a column aliased as $pager->getIndexField()
735 * - have LIMIT set
736 * - have a WHERE-clause that compares the $pager->getIndexField()-equivalent column to the offset
737 * - have the ORDER BY specified based upon the details provided by the navbar
738 *
739 * See includes/Pager.php buildQueryInfo() method on how to build LIMIT, WHERE & ORDER BY
740 *
741 * &$data: an array of results of all contribs queries
742 * $pager: the ContribsPager object hooked into
743 * $offset: see phpdoc above
744 * $limit: see phpdoc above
745 * $descending: see phpdoc above
746 */
747 $data = array( $this->mDb->select(
748 $tables, $fields, $conds, $fname, $options, $join_conds
749 ) );
750 wfRunHooks(
751 'ContribsPager::reallyDoQuery',
752 array( &$data, $pager, $offset, $limit, $descending )
753 );
754
755 $result = array();
756
757 // loop all results and collect them in an array
758 foreach ( $data as $query ) {
759 foreach ( $query as $i => $row ) {
760 // use index column as key, allowing us to easily sort in PHP
761 $result[$row->{$this->getIndexField()} . "-$i"] = $row;
762 }
763 }
764
765 // sort results
766 if ( $descending ) {
767 ksort( $result );
768 } else {
769 krsort( $result );
770 }
771
772 // enforce limit
773 $result = array_slice( $result, 0, $limit );
774
775 // get rid of array keys
776 $result = array_values( $result );
777
778 return new FakeResultWrapper( $result );
779 }
780
781 function getQueryInfo() {
782 list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
783
784 $user = $this->getUser();
785 $conds = array_merge( $userCond, $this->getNamespaceCond() );
786
787 // Paranoia: avoid brute force searches (bug 17342)
788 if ( !$user->isAllowed( 'deletedhistory' ) ) {
789 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
790 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
791 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
792 ' != ' . Revision::SUPPRESSED_USER;
793 }
794
795 # Don't include orphaned revisions
796 $join_cond['page'] = Revision::pageJoinCond();
797 # Get the current user name for accounts
798 $join_cond['user'] = Revision::userJoinCond();
799
800 $options = array();
801 if ( $index ) {
802 $options['USE INDEX'] = array( 'revision' => $index );
803 }
804
805 $queryInfo = array(
806 'tables' => $tables,
807 'fields' => array_merge(
808 Revision::selectFields(),
809 Revision::selectUserFields(),
810 array( 'page_namespace', 'page_title', 'page_is_new',
811 'page_latest', 'page_is_redirect', 'page_len' )
812 ),
813 'conds' => $conds,
814 'options' => $options,
815 'join_conds' => $join_cond
816 );
817
818 ChangeTags::modifyDisplayQuery(
819 $queryInfo['tables'],
820 $queryInfo['fields'],
821 $queryInfo['conds'],
822 $queryInfo['join_conds'],
823 $queryInfo['options'],
824 $this->tagFilter
825 );
826
827 wfRunHooks( 'ContribsPager::getQueryInfo', array( &$this, &$queryInfo ) );
828
829 return $queryInfo;
830 }
831
832 function getUserCond() {
833 $condition = array();
834 $join_conds = array();
835 $tables = array( 'revision', 'page', 'user' );
836 $index = false;
837 if ( $this->contribs == 'newbie' ) {
838 $max = $this->mDb->selectField( 'user', 'max(user_id)', false, __METHOD__ );
839 $condition[] = 'rev_user >' . (int)( $max - $max / 100 );
840 # ignore local groups with the bot right
841 # @todo FIXME: Global groups may have 'bot' rights
842 $groupsWithBotPermission = User::getGroupsWithPermission( 'bot' );
843 if ( count( $groupsWithBotPermission ) ) {
844 $tables[] = 'user_groups';
845 $condition[] = 'ug_group IS NULL';
846 $join_conds['user_groups'] = array(
847 'LEFT JOIN', array(
848 'ug_user = rev_user',
849 'ug_group' => $groupsWithBotPermission
850 )
851 );
852 }
853 } else {
854 $uid = User::idFromName( $this->target );
855 if ( $uid ) {
856 $condition['rev_user'] = $uid;
857 $index = 'user_timestamp';
858 } else {
859 $condition['rev_user_text'] = $this->target;
860 $index = 'usertext_timestamp';
861 }
862 }
863
864 if ( $this->deletedOnly ) {
865 $condition[] = 'rev_deleted != 0';
866 }
867
868 if ( $this->topOnly ) {
869 $condition[] = 'rev_id = page_latest';
870 }
871
872 if ( $this->newOnly ) {
873 $condition[] = 'rev_parent_id = 0';
874 }
875
876 return array( $tables, $index, $condition, $join_conds );
877 }
878
879 function getNamespaceCond() {
880 if ( $this->namespace !== '' ) {
881 $selectedNS = $this->mDb->addQuotes( $this->namespace );
882 $eq_op = $this->nsInvert ? '!=' : '=';
883 $bool_op = $this->nsInvert ? 'AND' : 'OR';
884
885 if ( !$this->associated ) {
886 return array( "page_namespace $eq_op $selectedNS" );
887 }
888
889 $associatedNS = $this->mDb->addQuotes(
890 MWNamespace::getAssociated( $this->namespace )
891 );
892
893 return array(
894 "page_namespace $eq_op $selectedNS " .
895 $bool_op .
896 " page_namespace $eq_op $associatedNS"
897 );
898 }
899
900 return array();
901 }
902
903 function getIndexField() {
904 return 'rev_timestamp';
905 }
906
907 function doBatchLookups() {
908 # Do a link batch query
909 $this->mResult->seek( 0 );
910 $revIds = array();
911 $batch = new LinkBatch();
912 # Give some pointers to make (last) links
913 foreach ( $this->mResult as $row ) {
914 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
915 $revIds[] = $row->rev_parent_id;
916 }
917 if ( isset( $row->rev_id ) ) {
918 if ( $this->contribs === 'newbie' ) { // multiple users
919 $batch->add( NS_USER, $row->user_name );
920 $batch->add( NS_USER_TALK, $row->user_name );
921 }
922 $batch->add( $row->page_namespace, $row->page_title );
923 }
924 }
925 $this->mParentLens = Revision::getParentLengths( $this->mDbSecondary, $revIds );
926 $batch->execute();
927 $this->mResult->seek( 0 );
928 }
929
930 /**
931 * @return string
932 */
933 function getStartBody() {
934 return "<ul>\n";
935 }
936
937 /**
938 * @return string
939 */
940 function getEndBody() {
941 return "</ul>\n";
942 }
943
944 /**
945 * Generates each row in the contributions list.
946 *
947 * Contributions which are marked "top" are currently on top of the history.
948 * For these contributions, a [rollback] link is shown for users with roll-
949 * back privileges. The rollback link restores the most recent version that
950 * was not written by the target user.
951 *
952 * @todo This would probably look a lot nicer in a table.
953 * @param object $row
954 * @return string
955 */
956 function formatRow( $row ) {
957 wfProfileIn( __METHOD__ );
958
959 $ret = '';
960 $classes = array();
961
962 /*
963 * There may be more than just revision rows. To make sure that we'll only be processing
964 * revisions here, let's _try_ to build a revision out of our row (without displaying
965 * notices though) and then trying to grab data from the built object. If we succeed,
966 * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
967 * to extensions to subscribe to the hook to parse the row.
968 */
969 wfSuppressWarnings();
970 try {
971 $rev = new Revision( $row );
972 $validRevision = (bool)$rev->getId();
973 } catch ( MWException $e ) {
974 $validRevision = false;
975 }
976 wfRestoreWarnings();
977
978 if ( $validRevision ) {
979 $classes = array();
980
981 $page = Title::newFromRow( $row );
982 $link = Linker::link(
983 $page,
984 htmlspecialchars( $page->getPrefixedText() ),
985 array( 'class' => 'mw-contributions-title' ),
986 $page->isRedirect() ? array( 'redirect' => 'no' ) : array()
987 );
988 # Mark current revisions
989 $topmarktext = '';
990 $user = $this->getUser();
991 if ( $row->rev_id == $row->page_latest ) {
992 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
993 # Add rollback link
994 if ( !$row->page_is_new && $page->quickUserCan( 'rollback', $user )
995 && $page->quickUserCan( 'edit', $user )
996 ) {
997 $this->preventClickjacking();
998 $topmarktext .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
999 }
1000 }
1001 # Is there a visible previous revision?
1002 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
1003 $difftext = Linker::linkKnown(
1004 $page,
1005 $this->messages['diff'],
1006 array(),
1007 array(
1008 'diff' => 'prev',
1009 'oldid' => $row->rev_id
1010 )
1011 );
1012 } else {
1013 $difftext = $this->messages['diff'];
1014 }
1015 $histlink = Linker::linkKnown(
1016 $page,
1017 $this->messages['hist'],
1018 array(),
1019 array( 'action' => 'history' )
1020 );
1021
1022 if ( $row->rev_parent_id === null ) {
1023 // For some reason rev_parent_id isn't populated for this row.
1024 // Its rumoured this is true on wikipedia for some revisions (bug 34922).
1025 // Next best thing is to have the total number of bytes.
1026 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
1027 $chardiff .= Linker::formatRevisionSize( $row->rev_len );
1028 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
1029 } else {
1030 $parentLen = 0;
1031 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
1032 $parentLen = $this->mParentLens[$row->rev_parent_id];
1033 }
1034
1035 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
1036 $chardiff .= ChangesList::showCharacterDifference(
1037 $parentLen,
1038 $row->rev_len,
1039 $this->getContext()
1040 );
1041 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
1042 }
1043
1044 $lang = $this->getLanguage();
1045 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
1046 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
1047 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
1048 $d = Linker::linkKnown(
1049 $page,
1050 htmlspecialchars( $date ),
1051 array( 'class' => 'mw-changeslist-date' ),
1052 array( 'oldid' => intval( $row->rev_id ) )
1053 );
1054 } else {
1055 $d = htmlspecialchars( $date );
1056 }
1057 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
1058 $d = '<span class="history-deleted">' . $d . '</span>';
1059 }
1060
1061 # Show user names for /newbies as there may be different users.
1062 # Note that we already excluded rows with hidden user names.
1063 if ( $this->contribs == 'newbie' ) {
1064 $userlink = ' . . ' . $lang->getDirMark()
1065 . Linker::userLink( $rev->getUser(), $rev->getUserText() );
1066 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
1067 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
1068 } else {
1069 $userlink = '';
1070 }
1071
1072 if ( $rev->getParentId() === 0 ) {
1073 $nflag = ChangesList::flag( 'newpage' );
1074 } else {
1075 $nflag = '';
1076 }
1077
1078 if ( $rev->isMinor() ) {
1079 $mflag = ChangesList::flag( 'minor' );
1080 } else {
1081 $mflag = '';
1082 }
1083
1084 $del = Linker::getRevDeleteLink( $user, $rev, $page );
1085 if ( $del !== '' ) {
1086 $del .= ' ';
1087 }
1088
1089 $diffHistLinks = $this->msg( 'parentheses' )
1090 ->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )
1091 ->escaped();
1092 $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} ";
1093 $ret .= "{$link}{$userlink} {$comment} {$topmarktext}";
1094
1095 # Denote if username is redacted for this edit
1096 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
1097 $ret .= " <strong>" .
1098 $this->msg( 'rev-deleted-user-contribs' )->escaped() .
1099 "</strong>";
1100 }
1101
1102 # Tags, if any.
1103 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
1104 $row->ts_tags,
1105 'contributions'
1106 );
1107 $classes = array_merge( $classes, $newClasses );
1108 $ret .= " $tagSummary";
1109 }
1110
1111 // Let extensions add data
1112 wfRunHooks( 'ContributionsLineEnding', array( $this, &$ret, $row, &$classes ) );
1113
1114 if ( $classes === array() && $ret === '' ) {
1115 wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
1116 $ret = "<!-- Could not format Special:Contribution row. -->\n";
1117 } else {
1118 $ret = Html::rawElement( 'li', array( 'class' => $classes ), $ret ) . "\n";
1119 }
1120
1121 wfProfileOut( __METHOD__ );
1122
1123 return $ret;
1124 }
1125
1126 /**
1127 * Overwrite Pager function and return a helpful comment
1128 * @return string
1129 */
1130 function getSqlComment() {
1131 if ( $this->namespace || $this->deletedOnly ) {
1132 // potentially slow, see CR r58153
1133 return 'contributions page filtered for namespace or RevisionDeleted edits';
1134 } else {
1135 return 'contributions page unfiltered';
1136 }
1137 }
1138
1139 protected function preventClickjacking() {
1140 $this->preventClickjacking = true;
1141 }
1142
1143 /**
1144 * @return bool
1145 */
1146 public function getPreventClickjacking() {
1147 return $this->preventClickjacking;
1148 }
1149 }