follow up to r113115, rem not needed args
[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
30 class SpecialContributions extends SpecialPage {
31
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 $out->addModuleStyles( 'mediawiki.special' );
43
44 $this->opts = array();
45 $request = $this->getRequest();
46
47 if ( $par !== null ) {
48 $target = $par;
49 } else {
50 $target = $request->getVal( 'target' );
51 }
52
53 // check for radiobox
54 if ( $request->getVal( 'contribs' ) == 'newbie' ) {
55 $target = 'newbies';
56 $this->opts['contribs'] = 'newbie';
57 } else {
58 $this->opts['contribs'] = 'user';
59 }
60
61 $this->opts['deletedOnly'] = $request->getBool( 'deletedOnly' );
62
63 if ( !strlen( $target ) ) {
64 $out->addHTML( $this->getForm() );
65 return;
66 }
67
68 $user = $this->getUser();
69
70 $this->opts['limit'] = $request->getInt( 'limit', $user->getOption( 'rclimit' ) );
71 $this->opts['target'] = $target;
72 $this->opts['topOnly'] = $request->getBool( 'topOnly' );
73
74 $userObj = User::newFromName( $target, false );
75 if ( !$userObj ) {
76 $out->addHTML( $this->getForm() );
77 return;
78 }
79 $nt = $userObj->getUserPage();
80 $id = $userObj->getID();
81
82 if ( $this->opts['contribs'] != 'newbie' ) {
83 $target = $nt->getText();
84 $out->addSubtitle( $this->contributionsSub( $userObj ) );
85 $out->setHTMLTitle( $this->msg( 'pagetitle', $this->msg( 'contributions-title', $target )->plain() ) );
86 $this->getSkin()->setRelevantUser( $userObj );
87 } else {
88 $out->addSubtitle( $this->msg( 'sp-contributions-newbies-sub' ) );
89 $out->setHTMLTitle( $this->msg( 'pagetitle', $this->msg( 'sp-contributions-newbies-title' )->plain() ) );
90 }
91
92 if ( ( $ns = $request->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
93 $this->opts['namespace'] = intval( $ns );
94 } else {
95 $this->opts['namespace'] = '';
96 }
97
98 $this->opts['associated'] = $request->getBool( 'associated' );
99
100 $this->opts['nsInvert'] = (bool) $request->getVal( 'nsInvert' );
101
102 $this->opts['tagfilter'] = (string) $request->getVal( 'tagfilter' );
103
104 // Allows reverts to have the bot flag in recent changes. It is just here to
105 // be passed in the form at the top of the page
106 if ( $user->isAllowed( 'markbotedits' ) && $request->getBool( 'bot' ) ) {
107 $this->opts['bot'] = '1';
108 }
109
110 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
111 # Offset overrides year/month selection
112 if ( $skip ) {
113 $this->opts['year'] = '';
114 $this->opts['month'] = '';
115 } else {
116 $this->opts['year'] = $request->getIntOrNull( 'year' );
117 $this->opts['month'] = $request->getIntOrNull( 'month' );
118 }
119
120 $feedType = $request->getVal( 'feed' );
121 if ( $feedType ) {
122 // Maintain some level of backwards compatability
123 // If people request feeds using the old parameters, redirect to API
124 $apiParams = array(
125 'action' => 'feedcontributions',
126 'feedformat' => $feedType,
127 'user' => $target,
128 );
129 if ( $this->opts['topOnly'] ) {
130 $apiParams['toponly'] = true;
131 }
132 if ( $this->opts['deletedOnly'] ) {
133 $apiParams['deletedonly'] = true;
134 }
135 if ( $this->opts['tagfilter'] !== '' ) {
136 $apiParams['tagfilter'] = $this->opts['tagfilter'];
137 }
138 if ( $this->opts['namespace'] !== '' ) {
139 $apiParams['namespace'] = $this->opts['namespace'];
140 }
141 if ( $this->opts['year'] !== null ) {
142 $apiParams['year'] = $this->opts['year'];
143 }
144 if ( $this->opts['month'] !== null ) {
145 $apiParams['month'] = $this->opts['month'];
146 }
147
148 $url = wfScript( 'api' ) . '?' . wfArrayToCGI( $apiParams );
149
150 $out->redirect( $url, '301' );
151 return;
152 }
153
154 // Add RSS/atom links
155 $this->addFeedLinks( array( 'action' => 'feedcontributions', 'user' => $target ) );
156
157 if ( wfRunHooks( 'SpecialContributionsBeforeMainOutput', array( $id ) ) ) {
158
159 $out->addHTML( $this->getForm() );
160
161 $pager = new ContribsPager( $this->getContext(), array(
162 'target' => $target,
163 'contribs' => $this->opts['contribs'],
164 'namespace' => $this->opts['namespace'],
165 'year' => $this->opts['year'],
166 'month' => $this->opts['month'],
167 'deletedOnly' => $this->opts['deletedOnly'],
168 'topOnly' => $this->opts['topOnly'],
169 'nsInvert' => $this->opts['nsInvert'],
170 'associated' => $this->opts['associated'],
171 ) );
172 if ( !$pager->getNumRows() ) {
173 $out->addWikiMsg( 'nocontribs', $target );
174 } else {
175 # Show a message about slave lag, if applicable
176 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
177 if ( $lag > 0 )
178 $out->showLagWarning( $lag );
179
180 $out->addHTML(
181 '<p>' . $pager->getNavigationBar() . '</p>' .
182 $pager->getBody() .
183 '<p>' . $pager->getNavigationBar() . '</p>'
184 );
185 }
186 $out->preventClickjacking( $pager->getPreventClickjacking() );
187
188 # Show the appropriate "footer" message - WHOIS tools, etc.
189 if ( $this->opts['contribs'] != 'newbie' ) {
190 $message = 'sp-contributions-footer';
191 if ( IP::isIPAddress( $target ) ) {
192 $message = 'sp-contributions-footer-anon';
193 } else {
194 if ( $userObj->isAnon() ) {
195 // No message for non-existing users
196 return;
197 }
198 }
199
200 if ( !$this->msg( $message, $target )->isDisabled() ) {
201 $out->wrapWikiMsg(
202 "<div class='mw-contributions-footer'>\n$1\n</div>",
203 array( $message, $target ) );
204 }
205 }
206 }
207 }
208
209 /**
210 * Generates the subheading with links
211 * @param $userObj User object for the target
212 * @return String: appropriately-escaped HTML to be output literally
213 * @todo FIXME: Almost the same as getSubTitle in SpecialDeletedContributions.php. Could be combined.
214 */
215 protected function contributionsSub( $userObj ) {
216 if ( $userObj->isAnon() ) {
217 $user = htmlspecialchars( $userObj->getName() );
218 } else {
219 $user = Linker::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
220 }
221 $nt = $userObj->getUserPage();
222 $talk = $userObj->getTalkPage();
223 if ( $talk ) {
224 $tools = $this->getUserLinks( $nt, $talk, $userObj );
225 $links = $this->getLanguage()->pipeList( $tools );
226
227 // Show a note if the user is blocked and display the last block log entry.
228 if ( $userObj->isBlocked() ) {
229 $out = $this->getOutput(); // showLogExtract() wants first parameter by reference
230 LogEventsList::showLogExtract(
231 $out,
232 'block',
233 $nt,
234 '',
235 array(
236 'lim' => 1,
237 'showIfEmpty' => false,
238 'msgKey' => array(
239 $userObj->isAnon() ?
240 'sp-contributions-blocked-notice-anon' :
241 'sp-contributions-blocked-notice',
242 $userObj->getName() # Support GENDER in 'sp-contributions-blocked-notice'
243 ),
244 'offset' => '' # don't use WebRequest parameter offset
245 )
246 );
247 }
248 }
249
250 // Old message 'contribsub' had one parameter, but that doesn't work for
251 // languages that want to put the "for" bit right after $user but before
252 // $links. If 'contribsub' is around, use it for reverse compatibility,
253 // otherwise use 'contribsub2'.
254 // @todo Should this be removed at some point?
255 $oldMsg = $this->msg( 'contribsub' );
256 if ( $oldMsg->exists() ) {
257 $linksWithParentheses = $this->msg( 'parentheses' )->rawParams( $links )->escaped();
258 return $oldMsg->rawParams( "$user $linksWithParentheses" );
259 } else {
260 return $this->msg( 'contribsub2' )->rawParams( $user, $links );
261 }
262 }
263
264 /**
265 * Links to different places.
266 * @param $userpage Title: Target user page
267 * @param $talkpage Title: Talk page
268 * @param $target User: Target user object
269 * @return array
270 */
271 public function getUserLinks( Title $userpage, Title $talkpage, User $target ) {
272
273 $id = $target->getId();
274 $username = $target->getName();
275
276 $tools[] = Linker::link( $talkpage, $this->msg( 'sp-contributions-talk' )->escaped() );
277
278 if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $username ) ) ) {
279 if ( $this->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
280 if ( $target->isBlocked() ) {
281 $tools[] = Linker::linkKnown( # Change block link
282 SpecialPage::getTitleFor( 'Block', $username ),
283 $this->msg( 'change-blocklink' )->escaped()
284 );
285 $tools[] = Linker::linkKnown( # Unblock link
286 SpecialPage::getTitleFor( 'Unblock', $username ),
287 $this->msg( 'unblocklink' )->escaped()
288 );
289 } else { # User is not blocked
290 $tools[] = Linker::linkKnown( # Block link
291 SpecialPage::getTitleFor( 'Block', $username ),
292 $this->msg( 'blocklink' )->escaped()
293 );
294 }
295 }
296 # Block log link
297 $tools[] = Linker::linkKnown(
298 SpecialPage::getTitleFor( 'Log', 'block' ),
299 $this->msg( 'sp-contributions-blocklog' )->escaped(),
300 array(),
301 array(
302 'page' => $userpage->getPrefixedText()
303 )
304 );
305 }
306 # Uploads
307 $tools[] = Linker::linkKnown(
308 SpecialPage::getTitleFor( 'Listfiles', $username ),
309 $this->msg( 'sp-contributions-uploads' )->escaped()
310 );
311
312 # Other logs link
313 $tools[] = Linker::linkKnown(
314 SpecialPage::getTitleFor( 'Log', $username ),
315 $this->msg( 'sp-contributions-logs' )->escaped()
316 );
317
318 # Add link to deleted user contributions for priviledged users
319 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
320 $tools[] = Linker::linkKnown(
321 SpecialPage::getTitleFor( 'DeletedContributions', $username ),
322 $this->msg( 'sp-contributions-deleted' )->escaped()
323 );
324 }
325
326 # Add a link to change user rights for privileged users
327 $userrightsPage = new UserrightsPage();
328 $userrightsPage->setContext( $this->getContext() );
329 if ( $id !== null && $userrightsPage->userCanChangeRights( $target ) ) {
330 $tools[] = Linker::linkKnown(
331 SpecialPage::getTitleFor( 'Userrights', $username ),
332 $this->msg( 'sp-contributions-userrights' )->escaped()
333 );
334 }
335
336 wfRunHooks( 'ContributionsToolLinks', array( $id, $userpage, &$tools ) );
337 return $tools;
338 }
339
340 /**
341 * Generates the namespace selector form with hidden attributes.
342 * @return String: HTML fragment
343 */
344 protected function getForm() {
345 global $wgScript;
346
347 $this->opts['title'] = $this->getTitle()->getPrefixedText();
348 if ( !isset( $this->opts['target'] ) ) {
349 $this->opts['target'] = '';
350 } else {
351 $this->opts['target'] = str_replace( '_' , ' ' , $this->opts['target'] );
352 }
353
354 if ( !isset( $this->opts['namespace'] ) ) {
355 $this->opts['namespace'] = '';
356 }
357
358 if ( !isset( $this->opts['nsInvert'] ) ) {
359 $this->opts['nsInvert'] = '';
360 }
361
362 if ( !isset( $this->opts['associated'] ) ) {
363 $this->opts['associated'] = false;
364 }
365
366 if ( !isset( $this->opts['contribs'] ) ) {
367 $this->opts['contribs'] = 'user';
368 }
369
370 if ( !isset( $this->opts['year'] ) ) {
371 $this->opts['year'] = '';
372 }
373
374 if ( !isset( $this->opts['month'] ) ) {
375 $this->opts['month'] = '';
376 }
377
378 if ( $this->opts['contribs'] == 'newbie' ) {
379 $this->opts['target'] = '';
380 }
381
382 if ( !isset( $this->opts['tagfilter'] ) ) {
383 $this->opts['tagfilter'] = '';
384 }
385
386 if ( !isset( $this->opts['topOnly'] ) ) {
387 $this->opts['topOnly'] = false;
388 }
389
390 $form = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'class' => 'mw-contributions-form' ) );
391
392 # Add hidden params for tracking except for parameters in $skipParameters
393 $skipParameters = array( 'namespace', 'nsInvert', 'deletedOnly', 'target', 'contribs', 'year', 'month', 'topOnly', 'associated' );
394 foreach ( $this->opts as $name => $value ) {
395 if ( in_array( $name, $skipParameters ) ) {
396 continue;
397 }
398 $form .= "\t" . Html::hidden( $name, $value ) . "\n";
399 }
400
401 $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagfilter'] );
402
403 if ( $tagFilter ) {
404 $filterSelection =
405 Xml::tags( 'td', array( 'class' => 'mw-label' ), array_shift( $tagFilter ) ) .
406 Xml::tags( 'td', array( 'class' => 'mw-input' ), implode( '&#160', $tagFilter ) );
407 } else {
408 $filterSelection = Xml::tags( 'td', array( 'colspan' => 2 ), '' );
409 }
410
411 $targetSelection = Xml::tags( 'td', array( 'colspan' => 2 ),
412 Xml::radioLabel(
413 $this->msg( 'sp-contributions-newbies' )->text(),
414 'contribs',
415 'newbie' ,
416 'newbie',
417 $this->opts['contribs'] == 'newbie',
418 array( 'class' => 'mw-input' )
419 ) . '<br />' .
420 Xml::radioLabel(
421 $this->msg( 'sp-contributions-username' )->text(),
422 'contribs',
423 'user',
424 'user',
425 $this->opts['contribs'] == 'user',
426 array( 'class' => 'mw-input' )
427 ) . ' ' .
428 Html::input(
429 'target',
430 $this->opts['target'],
431 'text',
432 array( 'size' => '20', 'required' => '', 'class' => 'mw-input' ) +
433 ( $this->opts['target'] ? array() : array( 'autofocus' )
434 )
435 ) . ' '
436 ) ;
437
438 $namespaceSelection =
439 Xml::tags( 'td', array( 'class' => 'mw-label' ),
440 Xml::label(
441 $this->msg( 'namespace' )->text(),
442 'namespace',
443 ''
444 )
445 ) .
446 Xml::tags( 'td', null,
447 Html::namespaceSelector( array(
448 'selected' => $this->opts['namespace'],
449 'all' => '',
450 ), array(
451 'class' => 'namespaceselector',
452 ) ) .
453 '&#160;' .
454 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
455 Xml::checkLabel(
456 $this->msg( 'invert' )->text(),
457 'nsInvert',
458 'nsInvert',
459 $this->opts['nsInvert'],
460 array( 'title' => $this->msg( 'tooltip-invert' )->text(), 'class' => 'mw-input' )
461 ) . '&#160;'
462 ) .
463 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
464 Xml::checkLabel(
465 $this->msg( 'namespace_association' )->text(),
466 'associated',
467 'associated',
468 $this->opts['associated'],
469 array( 'title' => $this->msg( 'tooltip-namespace_association' )->text(), 'class' => 'mw-input' )
470 ) . '&#160;'
471 )
472 ) ;
473
474 $extraOptions = Xml::tags( 'td', array( 'colspan' => 2 ),
475 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
476 Xml::checkLabel(
477 $this->msg( 'history-show-deleted' )->text(),
478 'deletedOnly',
479 'mw-show-deleted-only',
480 $this->opts['deletedOnly'],
481 array( 'class' => 'mw-input' )
482 )
483 ) .
484 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
485 Xml::checkLabel(
486 $this->msg( 'sp-contributions-toponly' )->text(),
487 'topOnly',
488 'mw-show-top-only',
489 $this->opts['topOnly'],
490 array( 'class' => 'mw-input' )
491 )
492 )
493 ) ;
494
495 $dateSelectionAndSubmit = Xml::tags( 'td', array( 'colspan' => 2 ),
496 Xml::dateMenu(
497 $this->opts['year'],
498 $this->opts['month']
499 ) . ' ' .
500 Xml::submitButton(
501 $this->msg( 'sp-contributions-submit' )->text(),
502 array( 'class' => 'mw-submit' )
503 )
504 ) ;
505
506 $form .=
507 Xml::fieldset( $this->msg( 'sp-contributions-search' )->text() ) .
508 Xml::openElement( 'table', array( 'class' => 'mw-contributions-table' ) ) .
509 Xml::openElement( 'tr' ) .
510 $targetSelection .
511 Xml::closeElement( 'tr' ) .
512 Xml::openElement( 'tr' ) .
513 $namespaceSelection .
514 Xml::closeElement( 'tr' ) .
515 Xml::openElement( 'tr' ) .
516 $filterSelection .
517 Xml::closeElement( 'tr' ) .
518 Xml::openElement( 'tr' ) .
519 $extraOptions .
520 Xml::closeElement( 'tr' ) .
521 Xml::openElement( 'tr' ) .
522 $dateSelectionAndSubmit .
523 Xml::closeElement( 'tr' ) .
524 Xml::closeElement( 'table' );
525
526 $explain = $this->msg( 'sp-contributions-explain' );
527 if ( $explain->exists() ) {
528 $form .= "<p id='mw-sp-contributions-explain'>{$explain}</p>";
529 }
530 $form .= Xml::closeElement( 'fieldset' ) .
531 Xml::closeElement( 'form' );
532 return $form;
533 }
534 }
535
536 /**
537 * Pager for Special:Contributions
538 * @ingroup SpecialPage Pager
539 */
540 class ContribsPager extends ReverseChronologicalPager {
541 public $mDefaultDirection = true;
542 var $messages, $target;
543 var $namespace = '', $mDb;
544 var $preventClickjacking = false;
545
546 function __construct( IContextSource $context, array $options ) {
547 parent::__construct( $context );
548
549 $msgs = array( 'uctop', 'diff', 'newarticle', 'rollbacklink', 'diff', 'hist', 'rev-delundel', 'pipe-separator' );
550
551 foreach ( $msgs as $msg ) {
552 $this->messages[$msg] = $this->msg( $msg )->escaped();
553 }
554
555 $this->target = isset( $options['target'] ) ? $options['target'] : '';
556 $this->contribs = isset( $options['contribs'] ) ? $options['contribs'] : 'users';
557 $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : '';
558 $this->tagFilter = isset( $options['tagfilter'] ) ? $options['tagfilter'] : false;
559 $this->nsInvert = isset( $options['nsInvert'] ) ? $options['nsInvert'] : false;
560 $this->associated = isset( $options['associated'] ) ? $options['associated'] : false;
561
562 $this->deletedOnly = !empty( $options['deletedOnly'] );
563 $this->topOnly = !empty( $options['topOnly'] );
564
565 $year = isset( $options['year'] ) ? $options['year'] : false;
566 $month = isset( $options['month'] ) ? $options['month'] : false;
567 $this->getDateCond( $year, $month );
568
569 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
570 }
571
572 function getDefaultQuery() {
573 $query = parent::getDefaultQuery();
574 $query['target'] = $this->target;
575 return $query;
576 }
577
578 function getQueryInfo() {
579 list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
580
581 $user = $this->getUser();
582 $conds = array_merge( $userCond, $this->getNamespaceCond() );
583
584 // Paranoia: avoid brute force searches (bug 17342)
585 if ( !$user->isAllowed( 'deletedhistory' ) ) {
586 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
587 } elseif ( !$user->isAllowed( 'suppressrevision' ) ) {
588 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
589 ' != ' . Revision::SUPPRESSED_USER;
590 }
591
592 # Don't include orphaned revisions
593 $join_cond['page'] = Revision::pageJoinCond();
594 # Get the current user name for accounts
595 $join_cond['user'] = Revision::userJoinCond();
596
597 $queryInfo = array(
598 'tables' => $tables,
599 'fields' => array_merge(
600 Revision::selectFields(),
601 Revision::selectUserFields(),
602 array( 'page_namespace', 'page_title', 'page_is_new',
603 'page_latest', 'page_is_redirect', 'page_len' )
604 ),
605 'conds' => $conds,
606 'options' => array( 'USE INDEX' => array( 'revision' => $index ) ),
607 'join_conds' => $join_cond
608 );
609
610 ChangeTags::modifyDisplayQuery(
611 $queryInfo['tables'],
612 $queryInfo['fields'],
613 $queryInfo['conds'],
614 $queryInfo['join_conds'],
615 $queryInfo['options'],
616 $this->tagFilter
617 );
618
619 wfRunHooks( 'ContribsPager::getQueryInfo', array( &$this, &$queryInfo ) );
620 return $queryInfo;
621 }
622
623 function getUserCond() {
624 $condition = array();
625 $join_conds = array();
626 $tables = array( 'revision', 'page', 'user' );
627 if ( $this->contribs == 'newbie' ) {
628 $tables[] = 'user_groups';
629 $max = $this->mDb->selectField( 'user', 'max(user_id)', false, __METHOD__ );
630 $condition[] = 'rev_user >' . (int)( $max - $max / 100 );
631 $condition[] = 'ug_group IS NULL';
632 $index = 'user_timestamp';
633 # @todo FIXME: Other groups may have 'bot' rights
634 $join_conds['user_groups'] = array( 'LEFT JOIN', "ug_user = rev_user AND ug_group = 'bot'" );
635 } else {
636 $uid = User::idFromName( $this->target );
637 if ( $uid ) {
638 $condition['rev_user'] = $uid;
639 $index = 'user_timestamp';
640 } else {
641 $condition['rev_user_text'] = $this->target;
642 $index = 'usertext_timestamp';
643 }
644 }
645 if ( $this->deletedOnly ) {
646 $condition[] = "rev_deleted != '0'";
647 }
648 if ( $this->topOnly ) {
649 $condition[] = "rev_id = page_latest";
650 }
651 return array( $tables, $index, $condition, $join_conds );
652 }
653
654 function getNamespaceCond() {
655 if ( $this->namespace !== '' ) {
656 $selectedNS = $this->mDb->addQuotes( $this->namespace );
657 $eq_op = $this->nsInvert ? '!=' : '=';
658 $bool_op = $this->nsInvert ? 'AND' : 'OR';
659
660 if ( !$this->associated ) {
661 return array( "page_namespace $eq_op $selectedNS" );
662 } else {
663 $associatedNS = $this->mDb->addQuotes (
664 MWNamespace::getAssociated( $this->namespace )
665 );
666 return array(
667 "page_namespace $eq_op $selectedNS " .
668 $bool_op .
669 " page_namespace $eq_op $associatedNS"
670 );
671 }
672
673 } else {
674 return array();
675 }
676 }
677
678 function getIndexField() {
679 return 'rev_timestamp';
680 }
681
682 function doBatchLookups() {
683 $this->mResult->rewind();
684 $revIds = array();
685 foreach ( $this->mResult as $row ) {
686 if( $row->rev_parent_id ) {
687 $revIds[] = $row->rev_parent_id;
688 }
689 }
690 $this->mParentLens = $this->getParentLengths( $revIds );
691 $this->mResult->rewind(); // reset
692
693 # Do a link batch query
694 $this->mResult->seek( 0 );
695 $batch = new LinkBatch();
696 # Give some pointers to make (last) links
697 foreach ( $this->mResult as $row ) {
698 if ( $this->contribs === 'newbie' ) { // multiple users
699 $batch->add( NS_USER, $row->user_name );
700 $batch->add( NS_USER_TALK, $row->user_name );
701 }
702 $batch->add( $row->page_namespace, $row->page_title );
703 }
704 $batch->execute();
705 $this->mResult->seek( 0 );
706 }
707
708 /**
709 * Do a batched query to get the parent revision lengths
710 * @return array
711 */
712 private function getParentLengths( array $revIds ) {
713 $revLens = array();
714 if ( !$revIds ) {
715 return $revLens; // empty
716 }
717 wfProfileIn( __METHOD__ );
718 $res = $this->getDatabase()->select( 'revision',
719 array( 'rev_id', 'rev_len' ),
720 array( 'rev_id' => $revIds ),
721 __METHOD__ );
722 foreach ( $res as $row ) {
723 $revLens[$row->rev_id] = $row->rev_len;
724 }
725 wfProfileOut( __METHOD__ );
726 return $revLens;
727 }
728
729 /**
730 * @return string
731 */
732 function getStartBody() {
733 return "<ul>\n";
734 }
735
736 /**
737 * @return string
738 */
739 function getEndBody() {
740 return "</ul>\n";
741 }
742
743 /**
744 * Generates each row in the contributions list.
745 *
746 * Contributions which are marked "top" are currently on top of the history.
747 * For these contributions, a [rollback] link is shown for users with roll-
748 * back privileges. The rollback link restores the most recent version that
749 * was not written by the target user.
750 *
751 * @todo This would probably look a lot nicer in a table.
752 * @return string
753 */
754 function formatRow( $row ) {
755 wfProfileIn( __METHOD__ );
756
757 $rev = new Revision( $row );
758 $classes = array();
759
760 $page = Title::newFromRow( $row );
761 $link = Linker::link(
762 $page,
763 htmlspecialchars( $page->getPrefixedText() ),
764 array(),
765 $page->isRedirect() ? array( 'redirect' => 'no' ) : array()
766 );
767 # Mark current revisions
768 $topmarktext = '';
769 if ( $row->rev_id == $row->page_latest ) {
770 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
771 # Add rollback link
772 if ( !$row->page_is_new && $page->quickUserCan( 'rollback' )
773 && $page->quickUserCan( 'edit' ) )
774 {
775 $this->preventClickjacking();
776 $topmarktext .= ' ' . Linker::generateRollback( $rev );
777 }
778 }
779 $user = $this->getUser();
780 # Is there a visible previous revision?
781 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
782 $difftext = Linker::linkKnown(
783 $page,
784 $this->messages['diff'],
785 array(),
786 array(
787 'diff' => 'prev',
788 'oldid' => $row->rev_id
789 )
790 );
791 } else {
792 $difftext = $this->messages['diff'];
793 }
794 $histlink = Linker::linkKnown(
795 $page,
796 $this->messages['hist'],
797 array(),
798 array( 'action' => 'history' )
799 );
800
801 if ( $row->rev_parent_id === null ) {
802 // For some reason rev_parent_id isn't populated for this row.
803 // Its rumoured this is true on wikipedia for some revisions (bug 34922).
804 // Next best thing is to have the total number of bytes.
805 $chardiff = ' . . ' . Linker::formatRevisionSize( $row->rev_len ) . ' . . ';
806 } else {
807 $parentLen = isset( $this->mParentLens[$row->rev_parent_id] ) ? $this->mParentLens[$row->rev_parent_id] : 0;
808 $chardiff = ' . . ' . ChangesList::showCharacterDifference(
809 $parentLen, $row->rev_len ) . ' . . ';
810 }
811
812 $lang = $this->getLanguage();
813 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
814 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
815 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
816 $d = Linker::linkKnown(
817 $page,
818 htmlspecialchars( $date ),
819 array(),
820 array( 'oldid' => intval( $row->rev_id ) )
821 );
822 } else {
823 $d = htmlspecialchars( $date );
824 }
825 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
826 $d = '<span class="history-deleted">' . $d . '</span>';
827 }
828
829 # Show user names for /newbies as there may be different users.
830 # Note that we already excluded rows with hidden user names.
831 if ( $this->contribs == 'newbie' ) {
832 $userlink = ' . . ' . Linker::userLink( $rev->getUser(), $rev->getUserText() );
833 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
834 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
835 } else {
836 $userlink = '';
837 }
838
839 if ( $rev->getParentId() === 0 ) {
840 $nflag = ChangesList::flag( 'newpage' );
841 } else {
842 $nflag = '';
843 }
844
845 if ( $rev->isMinor() ) {
846 $mflag = ChangesList::flag( 'minor' );
847 } else {
848 $mflag = '';
849 }
850
851 $del = Linker::getRevDeleteLink( $user, $rev, $page );
852 if ( $del !== '' ) {
853 $del .= ' ';
854 }
855
856 $diffHistLinks = $this->msg( 'parentheses' )->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )->escaped();
857 $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}";
858
859 # Denote if username is redacted for this edit
860 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
861 $ret .= " <strong>" . $this->msg( 'rev-deleted-user-contribs' )->escaped() . "</strong>";
862 }
863
864 # Tags, if any.
865 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow( $row->ts_tags, 'contributions' );
866 $classes = array_merge( $classes, $newClasses );
867 $ret .= " $tagSummary";
868
869 // Let extensions add data
870 wfRunHooks( 'ContributionsLineEnding', array( &$this, &$ret, $row ) );
871
872 $classes = implode( ' ', $classes );
873 $ret = "<li class=\"$classes\">$ret</li>\n";
874 wfProfileOut( __METHOD__ );
875 return $ret;
876 }
877
878 /**
879 * Get the Database object in use
880 *
881 * @return DatabaseBase
882 */
883 public function getDatabase() {
884 return $this->mDb;
885 }
886
887 /**
888 * Overwrite Pager function and return a helpful comment
889 * @return string
890 */
891 function getSqlComment() {
892 if ( $this->namespace || $this->deletedOnly ) {
893 return 'contributions page filtered for namespace or RevisionDeleted edits'; // potentially slow, see CR r58153
894 } else {
895 return 'contributions page unfiltered';
896 }
897 }
898
899 protected function preventClickjacking() {
900 $this->preventClickjacking = true;
901 }
902
903 public function getPreventClickjacking() {
904 return $this->preventClickjacking;
905 }
906 }