Standardised file description headers; first path
[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 public function __construct() {
33 parent::__construct( 'Contributions' );
34 }
35
36 public function execute( $par ) {
37 global $wgUser, $wgOut, $wgRequest;
38
39 $this->setHeaders();
40 $this->outputHeader();
41
42 $this->opts = array();
43
44 if( $par == 'newbies' ) {
45 $target = 'newbies';
46 $this->opts['contribs'] = 'newbie';
47 } elseif( isset( $par ) ) {
48 $target = $par;
49 } else {
50 $target = $wgRequest->getVal( 'target' );
51 }
52
53 // check for radiobox
54 if( $wgRequest->getVal( 'contribs' ) == 'newbie' ) {
55 $target = 'newbies';
56 $this->opts['contribs'] = 'newbie';
57 }
58
59 $this->opts['deletedOnly'] = $wgRequest->getCheck( 'deletedOnly' );
60
61 if( !strlen( $target ) ) {
62 $wgOut->addHTML( $this->getForm() );
63 return;
64 }
65
66 $this->opts['limit'] = $wgRequest->getInt( 'limit', $wgUser->getOption('rclimit') );
67 $this->opts['target'] = $target;
68 $this->opts['topOnly'] = $wgRequest->getCheck( 'topOnly' );
69
70 $nt = Title::makeTitleSafe( NS_USER, $target );
71 if( !$nt ) {
72 $wgOut->addHTML( $this->getForm() );
73 return;
74 }
75 $id = User::idFromName( $nt->getText() );
76
77 if( $target != 'newbies' ) {
78 $target = $nt->getText();
79 $wgOut->setSubtitle( $this->contributionsSub( $nt, $id ) );
80 $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsgExt( 'contributions-title', array( 'parsemag' ),$target ) ) );
81 } else {
82 $wgOut->setSubtitle( wfMsgHtml( 'sp-contributions-newbies-sub') );
83 $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'sp-contributions-newbies-title' ) ) );
84 }
85
86 if( ( $ns = $wgRequest->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
87 $this->opts['namespace'] = intval( $ns );
88 } else {
89 $this->opts['namespace'] = '';
90 }
91
92 $this->opts['tagFilter'] = (string) $wgRequest->getVal( 'tagFilter' );
93
94 // Allows reverts to have the bot flag in recent changes. It is just here to
95 // be passed in the form at the top of the page
96 if( $wgUser->isAllowed( 'markbotedits' ) && $wgRequest->getBool( 'bot' ) ) {
97 $this->opts['bot'] = '1';
98 }
99
100 $skip = $wgRequest->getText( 'offset' ) || $wgRequest->getText( 'dir' ) == 'prev';
101 # Offset overrides year/month selection
102 if( $skip ) {
103 $this->opts['year'] = '';
104 $this->opts['month'] = '';
105 } else {
106 $this->opts['year'] = $wgRequest->getIntOrNull( 'year' );
107 $this->opts['month'] = $wgRequest->getIntOrNull( 'month' );
108 }
109
110 // Add RSS/atom links
111 $this->setSyndicated();
112 $feedType = $wgRequest->getVal( 'feed' );
113 if( $feedType ) {
114 return $this->feed( $feedType );
115 }
116
117 if ( wfRunHooks( 'SpecialContributionsBeforeMainOutput', array( $id ) ) ) {
118
119 $wgOut->addHTML( $this->getForm() );
120
121 $pager = new ContribsPager( array(
122 'target' => $target,
123 'namespace' => $this->opts['namespace'],
124 'year' => $this->opts['year'],
125 'month' => $this->opts['month'],
126 'deletedOnly' => $this->opts['deletedOnly'],
127 'topOnly' => $this->opts['topOnly'],
128 ) );
129 if( !$pager->getNumRows() ) {
130 $wgOut->addWikiMsg( 'nocontribs', $target );
131 } else {
132 # Show a message about slave lag, if applicable
133 if( ( $lag = $pager->getDatabase()->getLag() ) > 0 )
134 $wgOut->showLagWarning( $lag );
135
136 $wgOut->addHTML(
137 '<p>' . $pager->getNavigationBar() . '</p>' .
138 $pager->getBody() .
139 '<p>' . $pager->getNavigationBar() . '</p>'
140 );
141 }
142
143
144 # Show the appropriate "footer" message - WHOIS tools, etc.
145 if( $target != 'newbies' ) {
146 $message = 'sp-contributions-footer';
147 if ( IP::isIPAddress( $target ) ) {
148 $message = 'sp-contributions-footer-anon';
149 } else {
150 $user = User::newFromName( $target );
151 if ( !$user || $user->isAnon() ) {
152 // No message for non-existing users
153 return;
154 }
155 }
156
157 $text = wfMsgNoTrans( $message, $target );
158 if( !wfEmptyMsg( $message, $text ) && $text != '-' ) {
159 $wgOut->wrapWikiMsg(
160 "<div class='mw-contributions-footer'>\n$1\n</div>",
161 array( $message, $target ) );
162 }
163 }
164 }
165 }
166
167 protected function setSyndicated() {
168 global $wgOut;
169 $wgOut->setSyndicated( true );
170 $wgOut->setFeedAppendQuery( wfArrayToCGI( $this->opts ) );
171 }
172
173 /**
174 * Generates the subheading with links
175 * @param $nt Title object for the target
176 * @param $id Integer: User ID for the target
177 * @return String: appropriately-escaped HTML to be output literally
178 * @todo Fixme: almost the same as getSubTitle in SpecialDeletedContributions.php. Could be combined.
179 */
180 protected function contributionsSub( $nt, $id ) {
181 global $wgSysopUserBans, $wgLang, $wgUser, $wgOut;
182
183 $sk = $wgUser->getSkin();
184
185 if ( $id === null ) {
186 $user = htmlspecialchars( $nt->getText() );
187 } else {
188 $user = $sk->link( $nt, htmlspecialchars( $nt->getText() ) );
189 }
190 $userObj = User::newFromName( $nt->getText(), /* check for username validity not needed */ false );
191 $talk = $nt->getTalkPage();
192 if( $talk ) {
193 # Talk page link
194 $tools[] = $sk->link( $talk, wfMsgHtml( 'sp-contributions-talk' ) );
195 if( ( $id !== null && $wgSysopUserBans ) || ( $id === null && IP::isIPAddress( $nt->getText() ) ) ) {
196 if( $wgUser->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
197 if ( $userObj->isBlocked() ) {
198 $tools[] = $sk->linkKnown( # Change block link
199 SpecialPage::getTitleFor( 'Blockip', $nt->getDBkey() ),
200 wfMsgHtml( 'change-blocklink' )
201 );
202 $tools[] = $sk->linkKnown( # Unblock link
203 SpecialPage::getTitleFor( 'Ipblocklist' ),
204 wfMsgHtml( 'unblocklink' ),
205 array(),
206 array(
207 'action' => 'unblock',
208 'ip' => $nt->getDBkey()
209 )
210 );
211 }
212 else { # User is not blocked
213 $tools[] = $sk->linkKnown( # Block link
214 SpecialPage::getTitleFor( 'Blockip', $nt->getDBkey() ),
215 wfMsgHtml( 'blocklink' )
216 );
217 }
218 }
219 # Block log link
220 $tools[] = $sk->linkKnown(
221 SpecialPage::getTitleFor( 'Log' ),
222 wfMsgHtml( 'sp-contributions-blocklog' ),
223 array(),
224 array(
225 'type' => 'block',
226 'page' => $nt->getPrefixedText()
227 )
228 );
229 }
230 # Other logs link
231 $tools[] = $sk->linkKnown(
232 SpecialPage::getTitleFor( 'Log' ),
233 wfMsgHtml( 'sp-contributions-logs' ),
234 array(),
235 array( 'user' => $nt->getText() )
236 );
237
238 # Add link to deleted user contributions for priviledged users
239 if( $wgUser->isAllowed( 'deletedhistory' ) ) {
240 $tools[] = $sk->linkKnown(
241 SpecialPage::getTitleFor( 'DeletedContributions', $nt->getDBkey() ),
242 wfMsgHtml( 'sp-contributions-deleted' )
243 );
244 }
245
246 # Add a link to change user rights for privileged users
247 $userrightsPage = new UserrightsPage();
248 if( $id !== null && $userrightsPage->userCanChangeRights( User::newFromId( $id ) ) ) {
249 $tools[] = $sk->linkKnown(
250 SpecialPage::getTitleFor( 'Userrights', $nt->getDBkey() ),
251 wfMsgHtml( 'sp-contributions-userrights' )
252 );
253 }
254
255 wfRunHooks( 'ContributionsToolLinks', array( $id, $nt, &$tools ) );
256
257 $links = $wgLang->pipeList( $tools );
258
259 // Show a note if the user is blocked and display the last block log entry.
260 if ( $userObj->isBlocked() ) {
261 LogEventsList::showLogExtract(
262 $wgOut,
263 'block',
264 $nt->getPrefixedText(),
265 '',
266 array(
267 'lim' => 1,
268 'showIfEmpty' => false,
269 'msgKey' => array(
270 $userObj->isAnon() ?
271 'sp-contributions-blocked-notice-anon' :
272 'sp-contributions-blocked-notice',
273 $nt->getText() # Support GENDER in 'sp-contributions-blocked-notice'
274 ),
275 'offset' => '' # don't use $wgRequest parameter offset
276 )
277 );
278 }
279 }
280
281 // Old message 'contribsub' had one parameter, but that doesn't work for
282 // languages that want to put the "for" bit right after $user but before
283 // $links. If 'contribsub' is around, use it for reverse compatibility,
284 // otherwise use 'contribsub2'.
285 if( wfEmptyMsg( 'contribsub', wfMsg( 'contribsub' ) ) ) {
286 return wfMsgHtml( 'contribsub2', $user, $links );
287 } else {
288 return wfMsgHtml( 'contribsub', "$user ($links)" );
289 }
290 }
291
292 /**
293 * Generates the namespace selector form with hidden attributes.
294 * @return String: HTML fragment
295 */
296 protected function getForm() {
297 global $wgScript;
298
299 $this->opts['title'] = $this->getTitle()->getPrefixedText();
300 if( !isset( $this->opts['target'] ) ) {
301 $this->opts['target'] = '';
302 } else {
303 $this->opts['target'] = str_replace( '_' , ' ' , $this->opts['target'] );
304 }
305
306 if( !isset( $this->opts['namespace'] ) ) {
307 $this->opts['namespace'] = '';
308 }
309
310 if( !isset( $this->opts['contribs'] ) ) {
311 $this->opts['contribs'] = 'user';
312 }
313
314 if( !isset( $this->opts['year'] ) ) {
315 $this->opts['year'] = '';
316 }
317
318 if( !isset( $this->opts['month'] ) ) {
319 $this->opts['month'] = '';
320 }
321
322 if( $this->opts['contribs'] == 'newbie' ) {
323 $this->opts['target'] = '';
324 }
325
326 if( !isset( $this->opts['tagFilter'] ) ) {
327 $this->opts['tagFilter'] = '';
328 }
329
330 if( !isset( $this->opts['topOnly'] ) ) {
331 $this->opts['topOnly'] = false;
332 }
333
334 $f = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
335
336 # Add hidden params for tracking except for parameters in $skipParameters
337 $skipParameters = array( 'namespace', 'deletedOnly', 'target', 'contribs', 'year', 'month', 'topOnly' );
338 foreach ( $this->opts as $name => $value ) {
339 if( in_array( $name, $skipParameters ) ) {
340 continue;
341 }
342 $f .= "\t" . Xml::hidden( $name, $value ) . "\n";
343 }
344
345 $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagFilter'] );
346
347 $f .= '<fieldset>' .
348 Xml::element( 'legend', array(), wfMsg( 'sp-contributions-search' ) ) .
349 Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parsemag' ) ),
350 'contribs', 'newbie' , 'newbie', $this->opts['contribs'] == 'newbie' ? true : false ) . '<br />' .
351 Xml::radioLabel( wfMsgExt( 'sp-contributions-username', array( 'parsemag' ) ),
352 'contribs' , 'user', 'user', $this->opts['contribs'] == 'user' ? true : false ) . ' ' .
353 Html::input( 'target', $this->opts['target'], 'text', array(
354 'size' => '20',
355 'required' => ''
356 ) + ( $this->opts['target'] ? array() : array( 'autofocus' ) ) ) . ' '.
357 '<span style="white-space: nowrap">' .
358 Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' .
359 Xml::namespaceSelector( $this->opts['namespace'], '' ) .
360 '</span>' .
361 Xml::checkLabel( wfMsg( 'history-show-deleted' ),
362 'deletedOnly', 'mw-show-deleted-only', $this->opts['deletedOnly'] ) . '<br />' .
363 Xml::tags( 'p', null, Xml::checkLabel( wfMsg( 'sp-contributions-toponly' ),
364 'topOnly', 'mw-show-top-only', $this->opts['topOnly'] ) ) .
365 ( $tagFilter ? Xml::tags( 'p', null, implode( '&#160;', $tagFilter ) ) : '' ) .
366 Xml::openElement( 'p' ) .
367 '<span style="white-space: nowrap">' .
368 Xml::dateMenu( $this->opts['year'], $this->opts['month'] ) .
369 '</span>' . ' ' .
370 Xml::submitButton( wfMsg( 'sp-contributions-submit' ) ) .
371 Xml::closeElement( 'p' );
372
373 $explain = wfMsgExt( 'sp-contributions-explain', 'parseinline' );
374 if( !wfEmptyMsg( 'sp-contributions-explain', $explain ) )
375 $f .= "<p id='mw-sp-contributions-explain'>{$explain}</p>";
376
377 $f .= '</fieldset>' .
378 Xml::closeElement( 'form' );
379 return $f;
380 }
381
382 /**
383 * Output a subscription feed listing recent edits to this page.
384 * @param $type String
385 */
386 protected function feed( $type ) {
387 global $wgFeed, $wgFeedClasses, $wgFeedLimit, $wgOut;
388
389 if( !$wgFeed ) {
390 $wgOut->addWikiMsg( 'feed-unavailable' );
391 return;
392 }
393
394 if( !isset( $wgFeedClasses[$type] ) ) {
395 $wgOut->addWikiMsg( 'feed-invalid' );
396 return;
397 }
398
399 $feed = new $wgFeedClasses[$type](
400 $this->feedTitle(),
401 wfMsgExt( 'tagline', 'parsemag' ),
402 $this->getTitle()->getFullUrl() . "/" . urlencode($this->opts['target'])
403 );
404
405 // Already valid title
406 $nt = Title::makeTitleSafe( NS_USER, $this->opts['target'] );
407 $target = $this->opts['target'] == 'newbies' ? 'newbies' : $nt->getText();
408
409 $pager = new ContribsPager( array(
410 'target' => $target,
411 'namespace' => $this->opts['namespace'],
412 'year' => $this->opts['year'],
413 'month' => $this->opts['month'],
414 'tagFilter' => $this->opts['tagFilter'],
415 'deletedOnly' => $this->opts['deletedOnly'],
416 'topOnly' => $this->opts['topOnly'],
417 ) );
418
419 $pager->mLimit = min( $this->opts['limit'], $wgFeedLimit );
420
421 $feed->outHeader();
422 if( $pager->getNumRows() > 0 ) {
423 while( $row = $pager->mResult->fetchObject() ) {
424 $feed->outItem( $this->feedItem( $row ) );
425 }
426 }
427 $feed->outFooter();
428 }
429
430 protected function feedTitle() {
431 global $wgContLanguageCode, $wgSitename;
432 $page = SpecialPage::getPage( 'Contributions' );
433 $desc = $page->getDescription();
434 return "$wgSitename - $desc [$wgContLanguageCode]";
435 }
436
437 protected function feedItem( $row ) {
438 $title = Title::MakeTitle( intval( $row->page_namespace ), $row->page_title );
439 if( $title ) {
440 $date = $row->rev_timestamp;
441 $comments = $title->getTalkPage()->getFullURL();
442 $revision = Revision::newFromTitle( $title, $row->rev_id );
443
444 return new FeedItem(
445 $title->getPrefixedText(),
446 $this->feedItemDesc( $revision ),
447 $title->getFullURL(),
448 $date,
449 $this->feedItemAuthor( $revision ),
450 $comments
451 );
452 } else {
453 return null;
454 }
455 }
456
457 protected function feedItemAuthor( $revision ) {
458 return $revision->getUserText();
459 }
460
461 protected function feedItemDesc( $revision ) {
462 if( $revision ) {
463 return '<p>' . htmlspecialchars( $revision->getUserText() ) . wfMsgForContent( 'colon-separator' ) .
464 htmlspecialchars( FeedItem::stripComment( $revision->getComment() ) ) .
465 "</p>\n<hr />\n<div>" .
466 nl2br( htmlspecialchars( $revision->getText() ) ) . "</div>";
467 }
468 return '';
469 }
470 }
471
472 /**
473 * Pager for Special:Contributions
474 * @ingroup SpecialPage Pager
475 */
476 class ContribsPager extends ReverseChronologicalPager {
477 public $mDefaultDirection = true;
478 var $messages, $target;
479 var $namespace = '', $mDb;
480
481 function __construct( $options ) {
482 parent::__construct();
483
484 $msgs = array( 'uctop', 'diff', 'newarticle', 'rollbacklink', 'diff', 'hist', 'rev-delundel', 'pipe-separator' );
485
486 foreach( $msgs as $msg ) {
487 $this->messages[$msg] = wfMsgExt( $msg, array( 'escapenoentities' ) );
488 }
489
490 $this->target = isset( $options['target'] ) ? $options['target'] : '';
491 $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : '';
492 $this->tagFilter = isset( $options['tagFilter'] ) ? $options['tagFilter'] : false;
493
494 $this->deletedOnly = !empty( $options['deletedOnly'] );
495 $this->topOnly = !empty( $options['topOnly'] );
496
497 $year = isset( $options['year'] ) ? $options['year'] : false;
498 $month = isset( $options['month'] ) ? $options['month'] : false;
499 $this->getDateCond( $year, $month );
500
501 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
502 }
503
504 function getDefaultQuery() {
505 $query = parent::getDefaultQuery();
506 $query['target'] = $this->target;
507 return $query;
508 }
509
510 function getQueryInfo() {
511 global $wgUser;
512 list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
513
514 $conds = array_merge( $userCond, $this->getNamespaceCond() );
515 // Paranoia: avoid brute force searches (bug 17342)
516 if( !$wgUser->isAllowed( 'deletedhistory' ) ) {
517 $conds[] = $this->mDb->bitAnd('rev_deleted',Revision::DELETED_USER) . ' = 0';
518 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
519 $conds[] = $this->mDb->bitAnd('rev_deleted',Revision::SUPPRESSED_USER) .
520 ' != ' . Revision::SUPPRESSED_USER;
521 }
522 $join_cond['page'] = array( 'INNER JOIN', 'page_id=rev_page' );
523
524 $queryInfo = array(
525 'tables' => $tables,
526 'fields' => array(
527 'page_namespace', 'page_title', 'page_is_new', 'page_latest', 'page_is_redirect',
528 'page_len','rev_id', 'rev_page', 'rev_text_id', 'rev_timestamp', 'rev_comment',
529 'rev_minor_edit', 'rev_user', 'rev_user_text', 'rev_parent_id', 'rev_deleted'
530 ),
531 'conds' => $conds,
532 'options' => array( 'USE INDEX' => array('revision' => $index) ),
533 'join_conds' => $join_cond
534 );
535
536 ChangeTags::modifyDisplayQuery(
537 $queryInfo['tables'],
538 $queryInfo['fields'],
539 $queryInfo['conds'],
540 $queryInfo['join_conds'],
541 $queryInfo['options'],
542 $this->tagFilter
543 );
544
545 wfRunHooks( 'ContribsPager::getQueryInfo', array( &$this, &$queryInfo ) );
546 return $queryInfo;
547 }
548
549 function getUserCond() {
550 $condition = array();
551 $join_conds = array();
552 if( $this->target == 'newbies' ) {
553 $tables = array( 'user_groups', 'page', 'revision' );
554 $max = $this->mDb->selectField( 'user', 'max(user_id)', false, __METHOD__ );
555 $condition[] = 'rev_user >' . (int)($max - $max / 100);
556 $condition[] = 'ug_group IS NULL';
557 $index = 'user_timestamp';
558 # FIXME: other groups may have 'bot' rights
559 $join_conds['user_groups'] = array( 'LEFT JOIN', "ug_user = rev_user AND ug_group = 'bot'" );
560 } else {
561 $tables = array( 'page', 'revision' );
562 $condition['rev_user_text'] = $this->target;
563 $index = 'usertext_timestamp';
564 }
565 if( $this->deletedOnly ) {
566 $condition[] = "rev_deleted != '0'";
567 }
568 if( $this->topOnly ) {
569 $condition[] = "rev_id = page_latest";
570 }
571 return array( $tables, $index, $condition, $join_conds );
572 }
573
574 function getNamespaceCond() {
575 if( $this->namespace !== '' ) {
576 return array( 'page_namespace' => (int)$this->namespace );
577 } else {
578 return array();
579 }
580 }
581
582 function getIndexField() {
583 return 'rev_timestamp';
584 }
585
586 function getStartBody() {
587 return "<ul>\n";
588 }
589
590 function getEndBody() {
591 return "</ul>\n";
592 }
593
594 /**
595 * Generates each row in the contributions list.
596 *
597 * Contributions which are marked "top" are currently on top of the history.
598 * For these contributions, a [rollback] link is shown for users with roll-
599 * back privileges. The rollback link restores the most recent version that
600 * was not written by the target user.
601 *
602 * @todo This would probably look a lot nicer in a table.
603 */
604 function formatRow( $row ) {
605 global $wgUser, $wgLang, $wgContLang;
606 wfProfileIn( __METHOD__ );
607
608 $sk = $this->getSkin();
609 $rev = new Revision( $row );
610 $classes = array();
611
612 $page = Title::newFromRow( $row );
613 $page->resetArticleId( $row->rev_page ); // use process cache
614 $link = $sk->link(
615 $page,
616 htmlspecialchars( $page->getPrefixedText() ),
617 array(),
618 $page->isRedirect() ? array( 'redirect' => 'no' ) : array()
619 );
620 # Mark current revisions
621 $difftext = $topmarktext = '';
622 if( $row->rev_id == $row->page_latest ) {
623 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
624 # Add rollback link
625 if( !$row->page_is_new && $page->quickUserCan( 'rollback' )
626 && $page->quickUserCan( 'edit' ) )
627 {
628 $topmarktext .= ' '.$sk->generateRollback( $rev );
629 }
630 }
631 # Is there a visible previous revision?
632 if( $rev->userCan( Revision::DELETED_TEXT ) && $rev->getParentId() !== 0 ) {
633 $difftext = $sk->linkKnown(
634 $page,
635 $this->messages['diff'],
636 array(),
637 array(
638 'diff' => 'prev',
639 'oldid' => $row->rev_id
640 )
641 );
642 } else {
643 $difftext = $this->messages['diff'];
644 }
645 $histlink = $sk->linkKnown(
646 $page,
647 $this->messages['hist'],
648 array(),
649 array( 'action' => 'history' )
650 );
651
652 $comment = $wgContLang->getDirMark() . $sk->revComment( $rev, false, true );
653 $date = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->rev_timestamp ), true );
654 if( $rev->userCan( Revision::DELETED_TEXT ) ) {
655 $d = $sk->linkKnown(
656 $page,
657 htmlspecialchars($date),
658 array(),
659 array( 'oldid' => intval( $row->rev_id ) )
660 );
661 } else {
662 $d = $date;
663 }
664 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
665 $d = '<span class="history-deleted">' . $d . '</span>';
666 }
667
668 if( $this->target == 'newbies' ) {
669 $userlink = ' . . ' . $sk->userLink( $row->rev_user, $row->rev_user_text );
670 $userlink .= ' ' . wfMsg( 'parentheses', $sk->userTalkLink( $row->rev_user, $row->rev_user_text ) ) . ' ';
671 } else {
672 $userlink = '';
673 }
674
675 if( $rev->getParentId() === 0 ) {
676 $nflag = ChangesList::flag( 'newpage' );
677 } else {
678 $nflag = '';
679 }
680
681 if( $rev->isMinor() ) {
682 $mflag = ChangesList::flag( 'minor' );
683 } else {
684 $mflag = '';
685 }
686
687 // Don't show useless link to people who cannot hide revisions
688 $canHide = $wgUser->isAllowed( 'deleterevision' );
689 if( $canHide || ($rev->getVisibility() && $wgUser->isAllowed('deletedhistory')) ) {
690 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
691 $del = $this->mSkin->revDeleteLinkDisabled( $canHide ); // revision was hidden from sysops
692 } else {
693 $query = array(
694 'type' => 'revision',
695 'target' => $page->getPrefixedDbkey(),
696 'ids' => $rev->getId()
697 );
698 $del = $this->mSkin->revDeleteLink( $query,
699 $rev->isDeleted( Revision::DELETED_RESTRICTED ), $canHide );
700 }
701 $del .= ' ';
702 } else {
703 $del = '';
704 }
705
706 $diffHistLinks = '(' . $difftext . $this->messages['pipe-separator'] . $histlink . ')';
707 $ret = "{$del}{$d} {$diffHistLinks} {$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}";
708
709 # Denote if username is redacted for this edit
710 if( $rev->isDeleted( Revision::DELETED_USER ) ) {
711 $ret .= " <strong>" . wfMsgHtml('rev-deleted-user-contribs') . "</strong>";
712 }
713
714 # Tags, if any.
715 list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'contributions' );
716 $classes = array_merge( $classes, $newClasses );
717 $ret .= " $tagSummary";
718
719 // Let extensions add data
720 wfRunHooks( 'ContributionsLineEnding', array( &$this, &$ret, $row ) );
721
722 $classes = implode( ' ', $classes );
723 $ret = "<li class=\"$classes\">$ret</li>\n";
724 wfProfileOut( __METHOD__ );
725 return $ret;
726 }
727
728 /**
729 * Get the Database object in use
730 *
731 * @return Database
732 */
733 public function getDatabase() {
734 return $this->mDb;
735 }
736
737 /**
738 * Overwrite Pager function and return a helpful comment
739 */
740 function getSqlComment() {
741 if ( $this->namespace || $this->deletedOnly ) {
742 return 'contributions page filtered for namespace or RevisionDeleted edits'; // potentially slow, see CR r58153
743 } else {
744 return 'contributions page unfiltered';
745 }
746 }
747
748 }