3 * Implements Special:DeletedContributions
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 * Implements Special:DeletedContributions to display archived revisions
26 * @ingroup SpecialPage
28 class DeletedContribsPager
extends IndexPager
{
29 public $mDefaultDirection = true;
30 var $messages, $target;
31 var $namespace = '', $mDb;
33 function __construct( IContextSource
$context, $target, $namespace = false ) {
34 parent
::__construct( $context );
35 $msgs = array( 'deletionlog', 'undeleteviewlink', 'diff' );
36 foreach( $msgs as $msg ) {
37 $this->messages
[$msg] = $this->msg( $msg )->escaped();
39 $this->target
= $target;
40 $this->namespace = $namespace;
41 $this->mDb
= wfGetDB( DB_SLAVE
, 'contributions' );
44 function getDefaultQuery() {
45 $query = parent
::getDefaultQuery();
46 $query['target'] = $this->target
;
50 function getQueryInfo() {
51 list( $index, $userCond ) = $this->getUserCond();
52 $conds = array_merge( $userCond, $this->getNamespaceCond() );
53 $user = $this->getUser();
54 // Paranoia: avoid brute force searches (bug 17792)
55 if( !$user->isAllowed( 'deletedhistory' ) ) {
56 $conds[] = $this->mDb
->bitAnd( 'ar_deleted', Revision
::DELETED_USER
) . ' = 0';
57 } elseif( !$user->isAllowed( 'suppressrevision' ) ) {
58 $conds[] = $this->mDb
->bitAnd( 'ar_deleted', Revision
::SUPPRESSED_USER
) .
59 ' != ' . Revision
::SUPPRESSED_USER
;
62 'tables' => array( 'archive' ),
64 'ar_rev_id', 'ar_namespace', 'ar_title', 'ar_timestamp', 'ar_comment', 'ar_minor_edit',
65 'ar_user', 'ar_user_text', 'ar_deleted'
68 'options' => array( 'USE INDEX' => $index )
72 function getUserCond() {
75 $condition['ar_user_text'] = $this->target
;
76 $index = 'usertext_timestamp';
78 return array( $index, $condition );
81 function getIndexField() {
82 return 'ar_timestamp';
85 function getStartBody() {
89 function getEndBody() {
93 function getNavigationBar() {
94 if ( isset( $this->mNavigationBar
) ) {
95 return $this->mNavigationBar
;
99 'prev' => $this->msg( 'pager-newer-n' )->numParams( $this->mLimit
)->escaped(),
100 'next' => $this->msg( 'pager-older-n' )->numParams( $this->mLimit
)->escaped(),
101 'first' => $this->msg( 'histlast' )->escaped(),
102 'last' => $this->msg( 'histfirst' )->escaped()
105 $pagingLinks = $this->getPagingLinks( $linkTexts );
106 $limitLinks = $this->getLimitLinks();
107 $lang = $this->getLanguage();
108 $limits = $lang->pipeList( $limitLinks );
110 $this->mNavigationBar
= "(" . $lang->pipeList( array( $pagingLinks['first'], $pagingLinks['last'] ) ) . ") " .
111 $this->msg( 'viewprevnext' )->rawParams( $pagingLinks['prev'], $pagingLinks['next'], $limits )->escaped();
112 return $this->mNavigationBar
;
115 function getNamespaceCond() {
116 if ( $this->namespace !== '' ) {
117 return array( 'ar_namespace' => (int)$this->namespace );
124 * Generates each row in the contributions list.
126 * Contributions which are marked "top" are currently on top of the history.
127 * For these contributions, a [rollback] link is shown for users with sysop
128 * privileges. The rollback link restores the most recent version that was not
129 * written by the target user.
131 * @todo This would probably look a lot nicer in a table.
135 function formatRow( $row ) {
136 wfProfileIn( __METHOD__
);
138 $rev = new Revision( array(
139 'id' => $row->ar_rev_id
,
140 'comment' => $row->ar_comment
,
141 'user' => $row->ar_user
,
142 'user_text' => $row->ar_user_text
,
143 'timestamp' => $row->ar_timestamp
,
144 'minor_edit' => $row->ar_minor_edit
,
145 'deleted' => $row->ar_deleted
,
148 $page = Title
::makeTitle( $row->ar_namespace
, $row->ar_title
);
150 $undelete = SpecialPage
::getTitleFor( 'Undelete' );
152 $logs = SpecialPage
::getTitleFor( 'Log' );
153 $dellog = Linker
::linkKnown(
155 $this->messages
['deletionlog'],
159 'page' => $page->getPrefixedText()
163 $reviewlink = Linker
::linkKnown(
164 SpecialPage
::getTitleFor( 'Undelete', $page->getPrefixedDBkey() ),
165 $this->messages
['undeleteviewlink']
168 $user = $this->getUser();
170 if( $user->isAllowed('deletedtext') ) {
171 $last = Linker
::linkKnown(
173 $this->messages
['diff'],
176 'target' => $page->getPrefixedText(),
177 'timestamp' => $rev->getTimestamp(),
182 $last = $this->messages
['diff'];
185 $comment = Linker
::revComment( $rev );
186 $date = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $user ) );
188 if( !$user->isAllowed( 'undelete' ) ||
!$rev->userCan( Revision
::DELETED_TEXT
, $user ) ) {
189 $link = $date; // unusable link
191 $link = Linker
::linkKnown(
194 array( 'class' => 'mw-changeslist-date' ),
196 'target' => $page->getPrefixedText(),
197 'timestamp' => $rev->getTimestamp()
201 // Style deleted items
202 if( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
203 $link = '<span class="history-deleted">' . $link . '</span>';
206 $pagelink = Linker
::link(
209 array( 'class' => 'mw-changeslist-title' )
212 if( $rev->isMinor() ) {
213 $mflag = ChangesList
::flag( 'minor' );
218 // Revision delete link
219 $del = Linker
::getRevDeleteLink( $user, $rev, $page );
220 if ( $del ) $del .= ' ';
222 $tools = Html
::rawElement(
224 array( 'class' => 'mw-deletedcontribs-tools' ),
225 $this->msg( 'parentheses' )->rawParams( $this->getLanguage()->pipeList(
226 array( $last, $dellog, $reviewlink ) ) )->escaped()
229 $separator = '<span class="mw-changeslist-separator">. .</span>';
230 $ret = "{$del}{$link} {$tools} {$separator} {$mflag} {$pagelink} {$comment}";
232 # Denote if username is redacted for this edit
233 if( $rev->isDeleted( Revision
::DELETED_USER
) ) {
234 $ret .= " <strong>" . $this->msg( 'rev-deleted-user-contribs' )->escaped() . "</strong>";
237 $ret = Html
::rawElement( 'li', array(), $ret ) . "\n";
239 wfProfileOut( __METHOD__
);
244 * Get the Database object in use
246 * @return DatabaseBase
248 public function getDatabase() {
253 class DeletedContributionsPage
extends SpecialPage
{
254 function __construct() {
255 parent
::__construct( 'DeletedContributions', 'deletedhistory',
256 /*listed*/ true, /*function*/ false, /*file*/ false );
260 * Special page "deleted user contributions".
261 * Shows a list of the deleted contributions of a user.
263 * @param $par String: (optional) user name of the user for which to show the contributions
265 function execute( $par ) {
266 global $wgQueryPageDefaultLimit;
268 $this->outputHeader();
270 $user = $this->getUser();
272 if ( !$this->userCanExecute( $user ) ) {
273 $this->displayRestrictionError();
277 $request = $this->getRequest();
278 $out = $this->getOutput();
279 $out->setPageTitle( $this->msg( 'deletedcontributions-title' ) );
283 if ( $par !== null ) {
286 $target = $request->getVal( 'target' );
289 if ( !strlen( $target ) ) {
290 $out->addHTML( $this->getForm( '' ) );
294 $options['limit'] = $request->getInt( 'limit', $wgQueryPageDefaultLimit );
295 $options['target'] = $target;
297 $userObj = User
::newFromName( $target, false );
299 $out->addHTML( $this->getForm( '' ) );
302 $this->getSkin()->setRelevantUser( $userObj );
304 $target = $userObj->getName();
305 $out->addSubtitle( $this->getSubTitle( $userObj ) );
307 if ( ( $ns = $request->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
308 $options['namespace'] = intval( $ns );
310 $options['namespace'] = '';
313 $out->addHTML( $this->getForm( $options ) );
315 $pager = new DeletedContribsPager( $this->getContext(), $target, $options['namespace'] );
316 if ( !$pager->getNumRows() ) {
317 $out->addWikiMsg( 'nocontribs' );
321 # Show a message about slave lag, if applicable
322 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
324 $out->showLagWarning( $lag );
327 '<p>' . $pager->getNavigationBar() . '</p>' .
329 '<p>' . $pager->getNavigationBar() . '</p>' );
331 # If there were contributions, and it was a valid user or IP, show
332 # the appropriate "footer" message - WHOIS tools, etc.
333 if( $target != 'newbies' ) {
334 $message = IP
::isIPAddress( $target )
335 ?
'sp-contributions-footer-anon'
336 : 'sp-contributions-footer';
338 if( !$this->msg( $message )->isDisabled() ) {
339 $out->wrapWikiMsg( "<div class='mw-contributions-footer'>\n$1\n</div>", array( $message, $target ) );
345 * Generates the subheading with links
346 * @param $userObj User object for the target
347 * @return String: appropriately-escaped HTML to be output literally
348 * @todo FIXME: Almost the same as contributionsSub in SpecialContributions.php. Could be combined.
350 function getSubTitle( $userObj ) {
351 if ( $userObj->isAnon() ) {
352 $user = htmlspecialchars( $userObj->getName() );
354 $user = Linker
::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
357 $nt = $userObj->getUserPage();
358 $id = $userObj->getID();
359 $talk = $nt->getTalkPage();
362 $tools[] = Linker
::link( $talk, $this->msg( 'sp-contributions-talk' )->escaped() );
363 if( ( $id !== null ) ||
( $id === null && IP
::isIPAddress( $nt->getText() ) ) ) {
364 if( $this->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
365 if ( $userObj->isBlocked() ) {
366 $tools[] = Linker
::linkKnown( # Change block link
367 SpecialPage
::getTitleFor( 'Block', $nt->getDBkey() ),
368 $this->msg( 'change-blocklink' )->escaped()
370 $tools[] = Linker
::linkKnown( # Unblock link
371 SpecialPage
::getTitleFor( 'BlockList' ),
372 $this->msg( 'unblocklink' )->escaped(),
375 'action' => 'unblock',
376 'ip' => $nt->getDBkey()
380 else { # User is not blocked
381 $tools[] = Linker
::linkKnown( # Block link
382 SpecialPage
::getTitleFor( 'Block', $nt->getDBkey() ),
383 $this->msg( 'blocklink' )->escaped()
388 $tools[] = Linker
::linkKnown(
389 SpecialPage
::getTitleFor( 'Log' ),
390 $this->msg( 'sp-contributions-blocklog' )->escaped(),
394 'page' => $nt->getPrefixedText()
400 $tools[] = Linker
::linkKnown(
401 SpecialPage
::getTitleFor( 'Listfiles', $userObj->getName() ),
402 $this->msg( 'sp-contributions-uploads' )->escaped()
406 $tools[] = Linker
::linkKnown(
407 SpecialPage
::getTitleFor( 'Log' ),
408 $this->msg( 'sp-contributions-logs' )->escaped(),
410 array( 'user' => $nt->getText() )
412 # Link to contributions
413 $tools[] = Linker
::linkKnown(
414 SpecialPage
::getTitleFor( 'Contributions', $nt->getDBkey() ),
415 $this->msg( 'sp-deletedcontributions-contribs' )->escaped()
418 # Add a link to change user rights for privileged users
419 $userrightsPage = new UserrightsPage();
420 $userrightsPage->setContext( $this->getContext() );
421 if( $userrightsPage->userCanChangeRights( $userObj ) ) {
422 $tools[] = Linker
::linkKnown(
423 SpecialPage
::getTitleFor( 'Userrights', $nt->getDBkey() ),
424 $this->msg( 'sp-contributions-userrights' )->escaped()
428 wfRunHooks( 'ContributionsToolLinks', array( $id, $nt, &$tools ) );
430 $links = $this->getLanguage()->pipeList( $tools );
432 // Show a note if the user is blocked and display the last block log entry.
433 if ( $userObj->isBlocked() ) {
434 $out = $this->getOutput(); // LogEventsList::showLogExtract() wants the first parameter by ref
435 LogEventsList
::showLogExtract(
442 'showIfEmpty' => false,
444 'sp-contributions-blocked-notice',
445 $nt->getText() # Support GENDER in 'sp-contributions-blocked-notice'
447 'offset' => '' # don't use $this->getRequest() parameter offset
453 // Old message 'contribsub' had one parameter, but that doesn't work for
454 // languages that want to put the "for" bit right after $user but before
455 // $links. If 'contribsub' is around, use it for reverse compatibility,
456 // otherwise use 'contribsub2'.
457 $oldMsg = $this->msg( 'contribsub' );
458 if ( $oldMsg->exists() ) {
459 return $oldMsg->rawParams( "$user ($links)" );
461 return $this->msg( 'contribsub2' )->rawParams( $user, $links );
466 * Generates the namespace selector form with hidden attributes.
467 * @param $options Array: the options to be included.
470 function getForm( $options ) {
473 $options['title'] = $this->getTitle()->getPrefixedText();
474 if ( !isset( $options['target'] ) ) {
475 $options['target'] = '';
477 $options['target'] = str_replace( '_' , ' ' , $options['target'] );
480 if ( !isset( $options['namespace'] ) ) {
481 $options['namespace'] = '';
484 if ( !isset( $options['contribs'] ) ) {
485 $options['contribs'] = 'user';
488 if ( $options['contribs'] == 'newbie' ) {
489 $options['target'] = '';
492 $f = Xml
::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
494 foreach ( $options as $name => $value ) {
495 if ( in_array( $name, array( 'namespace', 'target', 'contribs' ) ) ) {
498 $f .= "\t" . Html
::hidden( $name, $value ) . "\n";
501 $f .= Xml
::openElement( 'fieldset' ) .
502 Xml
::element( 'legend', array(), $this->msg( 'sp-contributions-search' )->text() ) .
503 Xml
::tags( 'label', array( 'for' => 'target' ), $this->msg( 'sp-contributions-username' )->parse() ) . ' ' .
504 Html
::input( 'target', $options['target'], 'text', array(
507 ) +
( $options['target'] ?
array() : array( 'autofocus' ) ) ) . ' '.
508 Html
::namespaceSelector(
510 'selected' => $options['namespace'],
512 'label' => $this->msg( 'namespace' )->text()
514 'name' => 'namespace',
516 'class' => 'namespaceselector',
519 Xml
::submitButton( $this->msg( 'sp-contributions-submit' )->text() ) .
520 Xml
::closeElement( 'fieldset' ) .
521 Xml
::closeElement( 'form' );