(bug 34702) Use localised parentheses in Special:Contributions.
[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( 'parenteses' )->rawParams( $links );
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 Xml::namespaceSelector( $this->opts['namespace'], '' ) . '&#160;' .
448 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
449 Xml::checkLabel(
450 $this->msg( 'invert' )->text(),
451 'nsInvert',
452 'nsInvert',
453 $this->opts['nsInvert'],
454 array( 'title' => $this->msg( 'tooltip-invert' )->text(), 'class' => 'mw-input' )
455 ) . '&#160;'
456 ) .
457 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
458 Xml::checkLabel(
459 $this->msg( 'namespace_association' )->text(),
460 'associated',
461 'associated',
462 $this->opts['associated'],
463 array( 'title' => $this->msg( 'tooltip-namespace_association' )->text(), 'class' => 'mw-input' )
464 ) . '&#160;'
465 )
466 ) ;
467
468 $extraOptions = Xml::tags( 'td', array( 'colspan' => 2 ),
469 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
470 Xml::checkLabel(
471 $this->msg( 'history-show-deleted' )->text(),
472 'deletedOnly',
473 'mw-show-deleted-only',
474 $this->opts['deletedOnly'],
475 array( 'class' => 'mw-input' )
476 )
477 ) .
478 Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ),
479 Xml::checkLabel(
480 $this->msg( 'sp-contributions-toponly' )->text(),
481 'topOnly',
482 'mw-show-top-only',
483 $this->opts['topOnly'],
484 array( 'class' => 'mw-input' )
485 )
486 )
487 ) ;
488
489 $dateSelectionAndSubmit = Xml::tags( 'td', array( 'colspan' => 2 ),
490 Xml::dateMenu(
491 $this->opts['year'],
492 $this->opts['month']
493 ) . ' ' .
494 Xml::submitButton(
495 $this->msg( 'sp-contributions-submit' )->text(),
496 array( 'class' => 'mw-submit' )
497 )
498 ) ;
499
500 $form .=
501 Xml::fieldset( $this->msg( 'sp-contributions-search' )->text() ) .
502 Xml::openElement( 'table', array( 'class' => 'mw-contributions-table' ) ) .
503 Xml::openElement( 'tr' ) .
504 $targetSelection .
505 Xml::closeElement( 'tr' ) .
506 Xml::openElement( 'tr' ) .
507 $namespaceSelection .
508 Xml::closeElement( 'tr' ) .
509 Xml::openElement( 'tr' ) .
510 $filterSelection .
511 Xml::closeElement( 'tr' ) .
512 Xml::openElement( 'tr' ) .
513 $extraOptions .
514 Xml::closeElement( 'tr' ) .
515 Xml::openElement( 'tr' ) .
516 $dateSelectionAndSubmit .
517 Xml::closeElement( 'tr' ) .
518 Xml::closeElement( 'table' );
519
520 $explain = $this->msg( 'sp-contributions-explain' );
521 if ( $explain->exists() ) {
522 $form .= "<p id='mw-sp-contributions-explain'>{$explain}</p>";
523 }
524 $form .= Xml::closeElement( 'fieldset' ) .
525 Xml::closeElement( 'form' );
526 return $form;
527 }
528 }
529
530 /**
531 * Pager for Special:Contributions
532 * @ingroup SpecialPage Pager
533 */
534 class ContribsPager extends ReverseChronologicalPager {
535 public $mDefaultDirection = true;
536 var $messages, $target;
537 var $namespace = '', $mDb;
538 var $preventClickjacking = false;
539
540 function __construct( IContextSource $context, array $options ) {
541 parent::__construct( $context );
542
543 $msgs = array( 'uctop', 'diff', 'newarticle', 'rollbacklink', 'diff', 'hist', 'rev-delundel', 'pipe-separator' );
544
545 foreach ( $msgs as $msg ) {
546 $this->messages[$msg] = $this->msg( $msg )->escaped();
547 }
548
549 $this->target = isset( $options['target'] ) ? $options['target'] : '';
550 $this->contribs = isset( $options['contribs'] ) ? $options['contribs'] : 'users';
551 $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : '';
552 $this->tagFilter = isset( $options['tagfilter'] ) ? $options['tagfilter'] : false;
553 $this->nsInvert = isset( $options['nsInvert'] ) ? $options['nsInvert'] : false;
554 $this->associated = isset( $options['associated'] ) ? $options['associated'] : false;
555
556 $this->deletedOnly = !empty( $options['deletedOnly'] );
557 $this->topOnly = !empty( $options['topOnly'] );
558
559 $year = isset( $options['year'] ) ? $options['year'] : false;
560 $month = isset( $options['month'] ) ? $options['month'] : false;
561 $this->getDateCond( $year, $month );
562
563 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
564 }
565
566 function getDefaultQuery() {
567 $query = parent::getDefaultQuery();
568 $query['target'] = $this->target;
569 return $query;
570 }
571
572 function getQueryInfo() {
573 list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
574
575 $user = $this->getUser();
576 $conds = array_merge( $userCond, $this->getNamespaceCond() );
577
578 // Paranoia: avoid brute force searches (bug 17342)
579 if ( !$user->isAllowed( 'deletedhistory' ) ) {
580 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
581 } elseif ( !$user->isAllowed( 'suppressrevision' ) ) {
582 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
583 ' != ' . Revision::SUPPRESSED_USER;
584 }
585
586 # Don't include orphaned revisions
587 $join_cond['page'] = Revision::pageJoinCond();
588 # Get the current user name for accounts
589 $join_cond['user'] = Revision::userJoinCond();
590
591 $queryInfo = array(
592 'tables' => $tables,
593 'fields' => array_merge(
594 Revision::selectFields(),
595 Revision::selectUserFields(),
596 array( 'page_namespace', 'page_title', 'page_is_new',
597 'page_latest', 'page_is_redirect', 'page_len' )
598 ),
599 'conds' => $conds,
600 'options' => array( 'USE INDEX' => array( 'revision' => $index ) ),
601 'join_conds' => $join_cond
602 );
603
604 ChangeTags::modifyDisplayQuery(
605 $queryInfo['tables'],
606 $queryInfo['fields'],
607 $queryInfo['conds'],
608 $queryInfo['join_conds'],
609 $queryInfo['options'],
610 $this->tagFilter
611 );
612
613 wfRunHooks( 'ContribsPager::getQueryInfo', array( &$this, &$queryInfo ) );
614 return $queryInfo;
615 }
616
617 function getUserCond() {
618 $condition = array();
619 $join_conds = array();
620 $tables = array( 'revision', 'page', 'user' );
621 if ( $this->contribs == 'newbie' ) {
622 $tables[] = 'user_groups';
623 $max = $this->mDb->selectField( 'user', 'max(user_id)', false, __METHOD__ );
624 $condition[] = 'rev_user >' . (int)( $max - $max / 100 );
625 $condition[] = 'ug_group IS NULL';
626 $index = 'user_timestamp';
627 # @todo FIXME: Other groups may have 'bot' rights
628 $join_conds['user_groups'] = array( 'LEFT JOIN', "ug_user = rev_user AND ug_group = 'bot'" );
629 } else {
630 if ( IP::isIPAddress( $this->target ) ) {
631 $condition['rev_user_text'] = $this->target;
632 $index = 'usertext_timestamp';
633 } else {
634 $condition['rev_user'] = User::idFromName( $this->target );
635 $index = 'user_timestamp';
636 }
637 }
638 if ( $this->deletedOnly ) {
639 $condition[] = "rev_deleted != '0'";
640 }
641 if ( $this->topOnly ) {
642 $condition[] = "rev_id = page_latest";
643 }
644 return array( $tables, $index, $condition, $join_conds );
645 }
646
647 function getNamespaceCond() {
648 if ( $this->namespace !== '' ) {
649 $selectedNS = $this->mDb->addQuotes( $this->namespace );
650 $eq_op = $this->nsInvert ? '!=' : '=';
651 $bool_op = $this->nsInvert ? 'AND' : 'OR';
652
653 if ( !$this->associated ) {
654 return array( "page_namespace $eq_op $selectedNS" );
655 } else {
656 $associatedNS = $this->mDb->addQuotes (
657 MWNamespace::getAssociated( $this->namespace )
658 );
659 return array(
660 "page_namespace $eq_op $selectedNS " .
661 $bool_op .
662 " page_namespace $eq_op $associatedNS"
663 );
664 }
665
666 } else {
667 return array();
668 }
669 }
670
671 function getIndexField() {
672 return 'rev_timestamp';
673 }
674
675 function doBatchLookups() {
676 $this->mResult->rewind();
677 $revIds = array();
678 foreach ( $this->mResult as $row ) {
679 if( $row->rev_parent_id ) {
680 $revIds[] = $row->rev_parent_id;
681 }
682 }
683 $this->mParentLens = $this->getParentLengths( $revIds );
684 $this->mResult->rewind(); // reset
685
686 # Do a link batch query
687 $this->mResult->seek( 0 );
688 $batch = new LinkBatch();
689 # Give some pointers to make (last) links
690 foreach ( $this->mResult as $row ) {
691 if ( $this->contribs === 'newbie' ) { // multiple users
692 $batch->add( NS_USER, $row->user_name );
693 $batch->add( NS_USER_TALK, $row->user_name );
694 }
695 $batch->add( $row->page_namespace, $row->page_title );
696 }
697 $batch->execute();
698 $this->mResult->seek( 0 );
699 }
700
701 /**
702 * Do a batched query to get the parent revision lengths
703 * @return array
704 */
705 private function getParentLengths( array $revIds ) {
706 $revLens = array();
707 if ( !$revIds ) {
708 return $revLens; // empty
709 }
710 wfProfileIn( __METHOD__ );
711 $res = $this->getDatabase()->select( 'revision',
712 array( 'rev_id', 'rev_len' ),
713 array( 'rev_id' => $revIds ),
714 __METHOD__ );
715 foreach ( $res as $row ) {
716 $revLens[$row->rev_id] = $row->rev_len;
717 }
718 wfProfileOut( __METHOD__ );
719 return $revLens;
720 }
721
722 /**
723 * @return string
724 */
725 function getStartBody() {
726 return "<ul>\n";
727 }
728
729 /**
730 * @return string
731 */
732 function getEndBody() {
733 return "</ul>\n";
734 }
735
736 /**
737 * Generates each row in the contributions list.
738 *
739 * Contributions which are marked "top" are currently on top of the history.
740 * For these contributions, a [rollback] link is shown for users with roll-
741 * back privileges. The rollback link restores the most recent version that
742 * was not written by the target user.
743 *
744 * @todo This would probably look a lot nicer in a table.
745 * @return string
746 */
747 function formatRow( $row ) {
748 wfProfileIn( __METHOD__ );
749
750 $rev = new Revision( $row );
751 $classes = array();
752
753 $page = Title::newFromRow( $row );
754 $link = Linker::link(
755 $page,
756 htmlspecialchars( $page->getPrefixedText() ),
757 array(),
758 $page->isRedirect() ? array( 'redirect' => 'no' ) : array()
759 );
760 # Mark current revisions
761 $topmarktext = '';
762 if ( $row->rev_id == $row->page_latest ) {
763 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
764 # Add rollback link
765 if ( !$row->page_is_new && $page->quickUserCan( 'rollback' )
766 && $page->quickUserCan( 'edit' ) )
767 {
768 $this->preventClickjacking();
769 $topmarktext .= ' ' . Linker::generateRollback( $rev );
770 }
771 }
772 $user = $this->getUser();
773 # Is there a visible previous revision?
774 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
775 $difftext = Linker::linkKnown(
776 $page,
777 $this->messages['diff'],
778 array(),
779 array(
780 'diff' => 'prev',
781 'oldid' => $row->rev_id
782 )
783 );
784 } else {
785 $difftext = $this->messages['diff'];
786 }
787 $histlink = Linker::linkKnown(
788 $page,
789 $this->messages['hist'],
790 array(),
791 array( 'action' => 'history' )
792 );
793
794 $parentLen = isset( $this->mParentLens[$row->rev_parent_id] ) ? $this->mParentLens[$row->rev_parent_id] : 0;
795 $chardiff = ' . . ' . ChangesList::showCharacterDifference(
796 $parentLen, $row->rev_len ) . ' . . ';
797
798 $lang = $this->getLanguage();
799 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
800 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
801 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
802 $d = Linker::linkKnown(
803 $page,
804 htmlspecialchars( $date ),
805 array(),
806 array( 'oldid' => intval( $row->rev_id ) )
807 );
808 } else {
809 $d = htmlspecialchars( $date );
810 }
811 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
812 $d = '<span class="history-deleted">' . $d . '</span>';
813 }
814
815 # Show user names for /newbies as there may be different users.
816 # Note that we already excluded rows with hidden user names.
817 if ( $this->contribs == 'newbie' ) {
818 $userlink = ' . . ' . Linker::userLink( $rev->getUser(), $rev->getUserText() );
819 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
820 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
821 } else {
822 $userlink = '';
823 }
824
825 if ( $rev->getParentId() === 0 ) {
826 $nflag = ChangesList::flag( 'newpage' );
827 } else {
828 $nflag = '';
829 }
830
831 if ( $rev->isMinor() ) {
832 $mflag = ChangesList::flag( 'minor' );
833 } else {
834 $mflag = '';
835 }
836
837 $del = Linker::getRevDeleteLink( $user, $rev, $page );
838 if ( $del !== '' ) {
839 $del .= ' ';
840 }
841
842 $diffHistLinks = $this->msg( 'parentheses' )->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink );
843 $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}";
844
845 # Denote if username is redacted for this edit
846 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
847 $ret .= " <strong>" . $this->msg( 'rev-deleted-user-contribs' )->escaped() . "</strong>";
848 }
849
850 # Tags, if any.
851 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow( $row->ts_tags, 'contributions' );
852 $classes = array_merge( $classes, $newClasses );
853 $ret .= " $tagSummary";
854
855 // Let extensions add data
856 wfRunHooks( 'ContributionsLineEnding', array( &$this, &$ret, $row ) );
857
858 $classes = implode( ' ', $classes );
859 $ret = "<li class=\"$classes\">$ret</li>\n";
860 wfProfileOut( __METHOD__ );
861 return $ret;
862 }
863
864 /**
865 * Get the Database object in use
866 *
867 * @return DatabaseBase
868 */
869 public function getDatabase() {
870 return $this->mDb;
871 }
872
873 /**
874 * Overwrite Pager function and return a helpful comment
875 * @return string
876 */
877 function getSqlComment() {
878 if ( $this->namespace || $this->deletedOnly ) {
879 return 'contributions page filtered for namespace or RevisionDeleted edits'; // potentially slow, see CR r58153
880 } else {
881 return 'contributions page unfiltered';
882 }
883 }
884
885 protected function preventClickjacking() {
886 $this->preventClickjacking = true;
887 }
888
889 public function getPreventClickjacking() {
890 return $this->preventClickjacking;
891 }
892 }