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( 'mediawiki.special' );
42 $this->opts
= array();
43 $request = $this->getRequest();
45 if ( $par !== null ) {
48 $target = $request->getVal( 'target' );
52 if ( $request->getVal( 'contribs' ) == 'newbie' ) {
54 $this->opts
['contribs'] = 'newbie';
55 } elseif ( $par === 'newbies' ) { // b/c for WMF
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' );
79 $nt = Title
::makeTitleSafe( NS_USER
, $target );
81 $out->addHTML( $this->getForm() );
85 $userObj = User
::newFromName( $nt->getText(), false );
87 $out->addHTML( $this->getForm() );
91 $id = $userObj->getID();
93 if ( $this->opts
['contribs'] != 'newbie' ) {
94 $target = $nt->getText();
95 $out->addSubtitle( $this->contributionsSub( $userObj ) );
96 $out->setHTMLTitle( $this->msg(
98 $this->msg( 'contributions-title', $target )->plain()
99 )->inContentLanguage() );
100 $this->getSkin()->setRelevantUser( $userObj );
102 $out->addSubtitle( $this->msg( 'sp-contributions-newbies-sub' ) );
103 $out->setHTMLTitle( $this->msg(
105 $this->msg( 'sp-contributions-newbies-title' )->plain()
106 )->inContentLanguage() );
109 if ( ( $ns = $request->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
110 $this->opts
['namespace'] = intval( $ns );
112 $this->opts
['namespace'] = '';
115 $this->opts
['associated'] = $request->getBool( 'associated' );
116 $this->opts
['nsInvert'] = (bool)$request->getVal( 'nsInvert' );
117 $this->opts
['tagfilter'] = (string)$request->getVal( 'tagfilter' );
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';
125 $skip = $request->getText( 'offset' ) ||
$request->getText( 'dir' ) == 'prev';
126 # Offset overrides year/month selection
128 $this->opts
['year'] = '';
129 $this->opts
['month'] = '';
131 $this->opts
['year'] = $request->getIntOrNull( 'year' );
132 $this->opts
['month'] = $request->getIntOrNull( 'month' );
135 $feedType = $request->getVal( 'feed' );
138 'action' => 'feedcontributions',
141 if ( $this->opts
['topOnly'] ) {
142 $feedParams['toponly'] = true;
144 if ( $this->opts
['newOnly'] ) {
145 $feedParams['newonly'] = true;
147 if ( $this->opts
['deletedOnly'] ) {
148 $feedParams['deletedonly'] = true;
150 if ( $this->opts
['tagfilter'] !== '' ) {
151 $feedParams['tagfilter'] = $this->opts
['tagfilter'];
153 if ( $this->opts
['namespace'] !== '' ) {
154 $feedParams['namespace'] = $this->opts
['namespace'];
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'];
161 if ( $feedType && $this->opts
['month'] !== null ) {
162 $feedParams['month'] = $this->opts
['month'];
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 );
171 $out->redirect( $url, '301' );
176 // Add RSS/atom links
177 $this->addFeedLinks( $feedParams );
179 if ( wfRunHooks( 'SpecialContributionsBeforeMainOutput', array( $id, $userObj, $this ) ) ) {
180 if ( !$this->including() ) {
181 $out->addHTML( $this->getForm() );
183 $pager = new ContribsPager( $this->getContext(), array(
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'],
197 if ( !$pager->getNumRows() ) {
198 $out->addWikiMsg( 'nocontribs', $target );
200 # Show a message about slave lag, if applicable
201 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
203 $out->showLagWarning( $lag );
206 $output = $pager->getBody();
207 if ( !$this->including() ) {
208 $output = '<p>' . $pager->getNavigationBar() . '</p>' .
210 '<p>' . $pager->getNavigationBar() . '</p>';
212 $out->addHTML( $output );
214 $out->preventClickjacking( $pager->getPreventClickjacking() );
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
225 $message = 'sp-contributions-footer';
229 if ( !$this->including() ) {
230 if ( !$this->msg( $message, $target )->isDisabled() ) {
232 "<div class='mw-contributions-footer'>\n$1\n</div>",
233 array( $message, $target ) );
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.
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>",
254 'contributions-userdoesnotexist',
255 wfEscapeWikiText( $userObj->getName() ),
258 if ( !$this->including() ) {
259 $this->getOutput()->setStatusCode( 404 );
262 $user = htmlspecialchars( $userObj->getName() );
264 $user = Linker
::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
266 $nt = $userObj->getUserPage();
267 $talk = $userObj->getTalkPage();
270 $tools = $this->getUserLinks( $nt, $talk, $userObj );
271 $links = $this->getLanguage()->pipeList( $tools );
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();
283 $out = $this->getOutput(); // showLogExtract() wants first parameter by reference
284 LogEventsList
::showLogExtract(
291 'showIfEmpty' => false,
294 'sp-contributions-blocked-notice-anon' :
295 'sp-contributions-blocked-notice',
296 $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
298 'offset' => '' # don't use WebRequest parameter offset
305 return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
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
315 public function getUserLinks( Title
$userpage, Title
$talkpage, User
$target ) {
317 $id = $target->getId();
318 $username = $target->getName();
320 $tools[] = Linker
::link( $talkpage, $this->msg( 'sp-contributions-talk' )->escaped() );
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()
329 $tools[] = Linker
::linkKnown( # Unblock link
330 SpecialPage
::getTitleFor( 'Unblock', $username ),
331 $this->msg( 'unblocklink' )->escaped()
333 } else { # User is not blocked
334 $tools[] = Linker
::linkKnown( # Block link
335 SpecialPage
::getTitleFor( 'Block', $username ),
336 $this->msg( 'blocklink' )->escaped()
342 $tools[] = Linker
::linkKnown(
343 SpecialPage
::getTitleFor( 'Log', 'block' ),
344 $this->msg( 'sp-contributions-blocklog' )->escaped(),
346 array( 'page' => $userpage->getPrefixedText() )
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(),
355 array( 'offender' => $username )
360 $tools[] = Linker
::linkKnown(
361 SpecialPage
::getTitleFor( 'Listfiles', $username ),
362 $this->msg( 'sp-contributions-uploads' )->escaped()
366 $tools[] = Linker
::linkKnown(
367 SpecialPage
::getTitleFor( 'Log', $username ),
368 $this->msg( 'sp-contributions-logs' )->escaped()
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()
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()
389 wfRunHooks( 'ContributionsToolLinks', array( $id, $userpage, &$tools ) );
395 * Generates the namespace selector form with hidden attributes.
396 * @return string HTML fragment
398 protected function getForm() {
399 $this->opts
['title'] = $this->getPageTitle()->getPrefixedText();
400 if ( !isset( $this->opts
['target'] ) ) {
401 $this->opts
['target'] = '';
403 $this->opts
['target'] = str_replace( '_', ' ', $this->opts
['target'] );
406 if ( !isset( $this->opts
['namespace'] ) ) {
407 $this->opts
['namespace'] = '';
410 if ( !isset( $this->opts
['nsInvert'] ) ) {
411 $this->opts
['nsInvert'] = '';
414 if ( !isset( $this->opts
['associated'] ) ) {
415 $this->opts
['associated'] = false;
418 if ( !isset( $this->opts
['contribs'] ) ) {
419 $this->opts
['contribs'] = 'user';
422 if ( !isset( $this->opts
['year'] ) ) {
423 $this->opts
['year'] = '';
426 if ( !isset( $this->opts
['month'] ) ) {
427 $this->opts
['month'] = '';
430 if ( $this->opts
['contribs'] == 'newbie' ) {
431 $this->opts
['target'] = '';
434 if ( !isset( $this->opts
['tagfilter'] ) ) {
435 $this->opts
['tagfilter'] = '';
438 if ( !isset( $this->opts
['topOnly'] ) ) {
439 $this->opts
['topOnly'] = false;
442 if ( !isset( $this->opts
['newOnly'] ) ) {
443 $this->opts
['newOnly'] = false;
446 $form = Html
::openElement(
450 'action' => wfScript(),
451 'class' => 'mw-contributions-form'
455 # Add hidden params for tracking except for parameters in $skipParameters
456 $skipParameters = array(
469 foreach ( $this->opts
as $name => $value ) {
470 if ( in_array( $name, $skipParameters ) ) {
473 $form .= "\t" . Html
::hidden( $name, $value ) . "\n";
476 $tagFilter = ChangeTags
::buildTagFilterSelector( $this->opts
['tagfilter'] );
479 $filterSelection = Html
::rawElement(
481 array( 'class' => 'mw-label' ),
482 array_shift( $tagFilter )
484 $filterSelection .= Html
::rawElement(
486 array( 'class' => 'mw-input' ),
487 implode( ' ', $tagFilter )
490 $filterSelection = Html
::rawElement( 'td', array( 'colspan' => 2 ), '' );
493 $labelNewbies = Xml
::radioLabel(
494 $this->msg( 'sp-contributions-newbies' )->text(),
498 $this->opts
['contribs'] == 'newbie',
499 array( 'class' => 'mw-input' )
501 $labelUsername = Xml
::radioLabel(
502 $this->msg( 'sp-contributions-username' )->text(),
506 $this->opts
['contribs'] == 'user',
507 array( 'class' => 'mw-input' )
509 $input = Html
::input(
511 $this->opts
['target'],
513 array( 'size' => '40', 'required' => '', 'class' => 'mw-input' ) +
514 ( $this->opts
['target'] ?
array() : array( 'autofocus' )
517 $targetSelection = Html
::rawElement(
519 array( 'colspan' => 2 ),
520 $labelNewbies . '<br />' . $labelUsername . ' ' . $input . ' '
523 $namespaceSelection = Xml
::tags(
525 array( 'class' => 'mw-label' ),
527 $this->msg( 'namespace' )->text(),
532 $namespaceSelection .= Html
::rawElement(
535 Html
::namespaceSelector(
536 array( 'selected' => $this->opts
['namespace'], 'all' => '' ),
538 'name' => 'namespace',
540 'class' => 'namespaceselector',
545 array( 'style' => 'white-space: nowrap' ),
547 $this->msg( 'invert' )->text(),
550 $this->opts
['nsInvert'],
552 'title' => $this->msg( 'tooltip-invert' )->text(),
553 'class' => 'mw-input'
557 Html
::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
559 $this->msg( 'namespace_association' )->text(),
562 $this->opts
['associated'],
564 'title' => $this->msg( 'tooltip-namespace_association' )->text(),
565 'class' => 'mw-input'
571 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
572 $deletedOnlyCheck = Html
::rawElement(
574 array( 'style' => 'white-space: nowrap' ),
576 $this->msg( 'history-show-deleted' )->text(),
578 'mw-show-deleted-only',
579 $this->opts
['deletedOnly'],
580 array( 'class' => 'mw-input' )
584 $deletedOnlyCheck = '';
587 $checkLabelTopOnly = Html
::rawElement(
589 array( 'style' => 'white-space: nowrap' ),
591 $this->msg( 'sp-contributions-toponly' )->text(),
594 $this->opts
['topOnly'],
595 array( 'class' => 'mw-input' )
598 $checkLabelNewOnly = Html
::rawElement(
600 array( 'style' => 'white-space: nowrap' ),
602 $this->msg( 'sp-contributions-newonly' )->text(),
605 $this->opts
['newOnly'],
606 array( 'class' => 'mw-input' )
609 $extraOptions = Html
::rawElement(
611 array( 'colspan' => 2 ),
612 $deletedOnlyCheck . $checkLabelTopOnly . $checkLabelNewOnly
615 $dateSelectionAndSubmit = Xml
::tags( 'td', array( 'colspan' => 2 ),
617 $this->opts
['year'] === '' ? MWTimestamp
::getInstance()->format( 'Y' ) : $this->opts
['year'],
621 $this->msg( 'sp-contributions-submit' )->text(),
622 array( 'class' => 'mw-submit' )
626 $form .= Xml
::fieldset( $this->msg( 'sp-contributions-search' )->text() );
627 $form .= Html
::rawElement( 'table', array( 'class' => 'mw-contributions-table' ), "\n" .
628 Html
::rawElement( 'tr', array(), $targetSelection ) . "\n" .
629 Html
::rawElement( 'tr', array(), $namespaceSelection ) . "\n" .
630 Html
::rawElement( 'tr', array(), $filterSelection ) . "\n" .
631 Html
::rawElement( 'tr', array(), $extraOptions ) . "\n" .
632 Html
::rawElement( 'tr', array(), $dateSelectionAndSubmit ) . "\n"
635 $explain = $this->msg( 'sp-contributions-explain' );
636 if ( !$explain->isBlank() ) {
637 $form .= "<p id='mw-sp-contributions-explain'>{$explain->parse()}</p>";
640 $form .= Xml
::closeElement( 'fieldset' ) . Xml
::closeElement( 'form' );
645 protected function getGroupName() {
651 * Pager for Special:Contributions
652 * @ingroup SpecialPage Pager
654 class ContribsPager
extends ReverseChronologicalPager
{
655 public $mDefaultDirection = IndexPager
::DIR_DESCENDING
;
658 public $namespace = '';
660 public $preventClickjacking = false;
662 /** @var DatabaseBase */
663 public $mDbSecondary;
668 protected $mParentLens;
670 function __construct( IContextSource
$context, array $options ) {
671 parent
::__construct( $context );
683 foreach ( $msgs as $msg ) {
684 $this->messages
[$msg] = $this->msg( $msg )->escaped();
687 $this->target
= isset( $options['target'] ) ?
$options['target'] : '';
688 $this->contribs
= isset( $options['contribs'] ) ?
$options['contribs'] : 'users';
689 $this->namespace = isset( $options['namespace'] ) ?
$options['namespace'] : '';
690 $this->tagFilter
= isset( $options['tagfilter'] ) ?
$options['tagfilter'] : false;
691 $this->nsInvert
= isset( $options['nsInvert'] ) ?
$options['nsInvert'] : false;
692 $this->associated
= isset( $options['associated'] ) ?
$options['associated'] : false;
694 $this->deletedOnly
= !empty( $options['deletedOnly'] );
695 $this->topOnly
= !empty( $options['topOnly'] );
696 $this->newOnly
= !empty( $options['newOnly'] );
698 $year = isset( $options['year'] ) ?
$options['year'] : false;
699 $month = isset( $options['month'] ) ?
$options['month'] : false;
700 $this->getDateCond( $year, $month );
702 // Most of this code will use the 'contributions' group DB, which can map to slaves
703 // with extra user based indexes or partioning by user. The additional metadata
704 // queries should use a regular slave since the lookup pattern is not all by user.
705 $this->mDbSecondary
= wfGetDB( DB_SLAVE
); // any random slave
706 $this->mDb
= wfGetDB( DB_SLAVE
, 'contributions' );
709 function getDefaultQuery() {
710 $query = parent
::getDefaultQuery();
711 $query['target'] = $this->target
;
717 * This method basically executes the exact same code as the parent class, though with
718 * a hook added, to allow extentions to add additional queries.
720 * @param string $offset Index offset, inclusive
721 * @param int $limit Exact query limit
722 * @param bool $descending Query direction, false for ascending, true for descending
723 * @return ResultWrapper
725 function reallyDoQuery( $offset, $limit, $descending ) {
726 list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo(
734 * This hook will allow extensions to add in additional queries, so they can get their data
735 * in My Contributions as well. Extensions should append their results to the $data array.
737 * Extension queries have to implement the navbar requirement as well. They should
738 * - have a column aliased as $pager->getIndexField()
740 * - have a WHERE-clause that compares the $pager->getIndexField()-equivalent column to the offset
741 * - have the ORDER BY specified based upon the details provided by the navbar
743 * See includes/Pager.php buildQueryInfo() method on how to build LIMIT, WHERE & ORDER BY
745 * &$data: an array of results of all contribs queries
746 * $pager: the ContribsPager object hooked into
747 * $offset: see phpdoc above
748 * $limit: see phpdoc above
749 * $descending: see phpdoc above
751 $data = array( $this->mDb
->select(
752 $tables, $fields, $conds, $fname, $options, $join_conds
755 'ContribsPager::reallyDoQuery',
756 array( &$data, $pager, $offset, $limit, $descending )
761 // loop all results and collect them in an array
762 foreach ( $data as $query ) {
763 foreach ( $query as $i => $row ) {
764 // use index column as key, allowing us to easily sort in PHP
765 $result[$row->{$this->getIndexField()} . "-$i"] = $row;
777 $result = array_slice( $result, 0, $limit );
779 // get rid of array keys
780 $result = array_values( $result );
782 return new FakeResultWrapper( $result );
785 function getQueryInfo() {
786 list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
788 $user = $this->getUser();
789 $conds = array_merge( $userCond, $this->getNamespaceCond() );
791 // Paranoia: avoid brute force searches (bug 17342)
792 if ( !$user->isAllowed( 'deletedhistory' ) ) {
793 $conds[] = $this->mDb
->bitAnd( 'rev_deleted', Revision
::DELETED_USER
) . ' = 0';
794 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
795 $conds[] = $this->mDb
->bitAnd( 'rev_deleted', Revision
::SUPPRESSED_USER
) .
796 ' != ' . Revision
::SUPPRESSED_USER
;
799 # Don't include orphaned revisions
800 $join_cond['page'] = Revision
::pageJoinCond();
801 # Get the current user name for accounts
802 $join_cond['user'] = Revision
::userJoinCond();
806 $options['USE INDEX'] = array( 'revision' => $index );
811 'fields' => array_merge(
812 Revision
::selectFields(),
813 Revision
::selectUserFields(),
814 array( 'page_namespace', 'page_title', 'page_is_new',
815 'page_latest', 'page_is_redirect', 'page_len' )
818 'options' => $options,
819 'join_conds' => $join_cond
822 ChangeTags
::modifyDisplayQuery(
823 $queryInfo['tables'],
824 $queryInfo['fields'],
826 $queryInfo['join_conds'],
827 $queryInfo['options'],
831 wfRunHooks( 'ContribsPager::getQueryInfo', array( &$this, &$queryInfo ) );
836 function getUserCond() {
837 $condition = array();
838 $join_conds = array();
839 $tables = array( 'revision', 'page', 'user' );
841 if ( $this->contribs
== 'newbie' ) {
842 $max = $this->mDb
->selectField( 'user', 'max(user_id)', false, __METHOD__
);
843 $condition[] = 'rev_user >' . (int)( $max - $max / 100 );
844 # ignore local groups with the bot right
845 # @todo FIXME: Global groups may have 'bot' rights
846 $groupsWithBotPermission = User
::getGroupsWithPermission( 'bot' );
847 if ( count( $groupsWithBotPermission ) ) {
848 $tables[] = 'user_groups';
849 $condition[] = 'ug_group IS NULL';
850 $join_conds['user_groups'] = array(
852 'ug_user = rev_user',
853 'ug_group' => $groupsWithBotPermission
858 $uid = User
::idFromName( $this->target
);
860 $condition['rev_user'] = $uid;
861 $index = 'user_timestamp';
863 $condition['rev_user_text'] = $this->target
;
864 $index = 'usertext_timestamp';
868 if ( $this->deletedOnly
) {
869 $condition[] = 'rev_deleted != 0';
872 if ( $this->topOnly
) {
873 $condition[] = 'rev_id = page_latest';
876 if ( $this->newOnly
) {
877 $condition[] = 'rev_parent_id = 0';
880 return array( $tables, $index, $condition, $join_conds );
883 function getNamespaceCond() {
884 if ( $this->namespace !== '' ) {
885 $selectedNS = $this->mDb
->addQuotes( $this->namespace );
886 $eq_op = $this->nsInvert ?
'!=' : '=';
887 $bool_op = $this->nsInvert ?
'AND' : 'OR';
889 if ( !$this->associated
) {
890 return array( "page_namespace $eq_op $selectedNS" );
893 $associatedNS = $this->mDb
->addQuotes(
894 MWNamespace
::getAssociated( $this->namespace )
898 "page_namespace $eq_op $selectedNS " .
900 " page_namespace $eq_op $associatedNS"
907 function getIndexField() {
908 return 'rev_timestamp';
911 function doBatchLookups() {
912 # Do a link batch query
913 $this->mResult
->seek( 0 );
915 $batch = new LinkBatch();
916 # Give some pointers to make (last) links
917 foreach ( $this->mResult
as $row ) {
918 if ( isset( $row->rev_parent_id
) && $row->rev_parent_id
) {
919 $revIds[] = $row->rev_parent_id
;
921 if ( isset( $row->rev_id
) ) {
922 if ( $this->contribs
=== 'newbie' ) { // multiple users
923 $batch->add( NS_USER
, $row->user_name
);
924 $batch->add( NS_USER_TALK
, $row->user_name
);
926 $batch->add( $row->page_namespace
, $row->page_title
);
929 $this->mParentLens
= Revision
::getParentLengths( $this->mDbSecondary
, $revIds );
931 $this->mResult
->seek( 0 );
937 function getStartBody() {
944 function getEndBody() {
949 * Generates each row in the contributions list.
951 * Contributions which are marked "top" are currently on top of the history.
952 * For these contributions, a [rollback] link is shown for users with roll-
953 * back privileges. The rollback link restores the most recent version that
954 * was not written by the target user.
956 * @todo This would probably look a lot nicer in a table.
960 function formatRow( $row ) {
961 wfProfileIn( __METHOD__
);
967 * There may be more than just revision rows. To make sure that we'll only be processing
968 * revisions here, let's _try_ to build a revision out of our row (without displaying
969 * notices though) and then trying to grab data from the built object. If we succeed,
970 * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
971 * to extensions to subscribe to the hook to parse the row.
973 wfSuppressWarnings();
975 $rev = new Revision( $row );
976 $validRevision = (bool)$rev->getId();
977 } catch ( MWException
$e ) {
978 $validRevision = false;
982 if ( $validRevision ) {
985 $page = Title
::newFromRow( $row );
986 $link = Linker
::link(
988 htmlspecialchars( $page->getPrefixedText() ),
989 array( 'class' => 'mw-contributions-title' ),
990 $page->isRedirect() ?
array( 'redirect' => 'no' ) : array()
992 # Mark current revisions
994 $user = $this->getUser();
995 if ( $row->rev_id
== $row->page_latest
) {
996 $topmarktext .= '<span class="mw-uctop">' . $this->messages
['uctop'] . '</span>';
998 if ( !$row->page_is_new
&& $page->quickUserCan( 'rollback', $user )
999 && $page->quickUserCan( 'edit', $user )
1001 $this->preventClickjacking();
1002 $topmarktext .= ' ' . Linker
::generateRollback( $rev, $this->getContext() );
1005 # Is there a visible previous revision?
1006 if ( $rev->userCan( Revision
::DELETED_TEXT
, $user ) && $rev->getParentId() !== 0 ) {
1007 $difftext = Linker
::linkKnown(
1009 $this->messages
['diff'],
1013 'oldid' => $row->rev_id
1017 $difftext = $this->messages
['diff'];
1019 $histlink = Linker
::linkKnown(
1021 $this->messages
['hist'],
1023 array( 'action' => 'history' )
1026 if ( $row->rev_parent_id
=== null ) {
1027 // For some reason rev_parent_id isn't populated for this row.
1028 // Its rumoured this is true on wikipedia for some revisions (bug 34922).
1029 // Next best thing is to have the total number of bytes.
1030 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
1031 $chardiff .= Linker
::formatRevisionSize( $row->rev_len
);
1032 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
1035 if ( isset( $this->mParentLens
[$row->rev_parent_id
] ) ) {
1036 $parentLen = $this->mParentLens
[$row->rev_parent_id
];
1039 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
1040 $chardiff .= ChangesList
::showCharacterDifference(
1045 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
1048 $lang = $this->getLanguage();
1049 $comment = $lang->getDirMark() . Linker
::revComment( $rev, false, true );
1050 $date = $lang->userTimeAndDate( $row->rev_timestamp
, $user );
1051 if ( $rev->userCan( Revision
::DELETED_TEXT
, $user ) ) {
1052 $d = Linker
::linkKnown(
1054 htmlspecialchars( $date ),
1055 array( 'class' => 'mw-changeslist-date' ),
1056 array( 'oldid' => intval( $row->rev_id
) )
1059 $d = htmlspecialchars( $date );
1061 if ( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
1062 $d = '<span class="history-deleted">' . $d . '</span>';
1065 # Show user names for /newbies as there may be different users.
1066 # Note that we already excluded rows with hidden user names.
1067 if ( $this->contribs
== 'newbie' ) {
1068 $userlink = ' . . ' . $lang->getDirMark()
1069 . Linker
::userLink( $rev->getUser(), $rev->getUserText() );
1070 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
1071 Linker
::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
1076 if ( $rev->getParentId() === 0 ) {
1077 $nflag = ChangesList
::flag( 'newpage' );
1082 if ( $rev->isMinor() ) {
1083 $mflag = ChangesList
::flag( 'minor' );
1088 $del = Linker
::getRevDeleteLink( $user, $rev, $page );
1089 if ( $del !== '' ) {
1093 $diffHistLinks = $this->msg( 'parentheses' )
1094 ->rawParams( $difftext . $this->messages
['pipe-separator'] . $histlink )
1096 $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} ";
1097 $ret .= "{$link}{$userlink} {$comment} {$topmarktext}";
1099 # Denote if username is redacted for this edit
1100 if ( $rev->isDeleted( Revision
::DELETED_USER
) ) {
1101 $ret .= " <strong>" .
1102 $this->msg( 'rev-deleted-user-contribs' )->escaped() .
1107 list( $tagSummary, $newClasses ) = ChangeTags
::formatSummaryRow(
1111 $classes = array_merge( $classes, $newClasses );
1112 $ret .= " $tagSummary";
1115 // Let extensions add data
1116 wfRunHooks( 'ContributionsLineEnding', array( $this, &$ret, $row, &$classes ) );
1118 if ( $classes === array() && $ret === '' ) {
1119 wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
1120 $ret = "<!-- Could not format Special:Contribution row. -->\n";
1122 $ret = Html
::rawElement( 'li', array( 'class' => $classes ), $ret ) . "\n";
1125 wfProfileOut( __METHOD__
);
1131 * Overwrite Pager function and return a helpful comment
1134 function getSqlComment() {
1135 if ( $this->namespace ||
$this->deletedOnly
) {
1136 // potentially slow, see CR r58153
1137 return 'contributions page filtered for namespace or RevisionDeleted edits';
1139 return 'contributions page unfiltered';
1143 protected function preventClickjacking() {
1144 $this->preventClickjacking
= true;
1150 public function getPreventClickjacking() {
1151 return $this->preventClickjacking
;