Use local context to get messages
[lhc/web/wiklou.git] / includes / specials / SpecialDeletedContributions.php
1 <?php
2 /**
3 * Implements Special:DeletedContributions
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 * Implements Special:DeletedContributions to display archived revisions
26 * @ingroup SpecialPage
27 */
28
29 class DeletedContribsPager extends IndexPager {
30 public $mDefaultDirection = true;
31 var $messages, $target;
32 var $namespace = '', $mDb;
33
34 function __construct( IContextSource $context, $target, $namespace = false ) {
35 parent::__construct( $context );
36 $msgs = array( 'deletionlog', 'undeleteviewlink', 'diff' );
37 foreach( $msgs as $msg ) {
38 $this->messages[$msg] = $this->msg( $msg )->escaped();
39 }
40 $this->target = $target;
41 $this->namespace = $namespace;
42 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
43 }
44
45 function getDefaultQuery() {
46 $query = parent::getDefaultQuery();
47 $query['target'] = $this->target;
48 return $query;
49 }
50
51 function getQueryInfo() {
52 list( $index, $userCond ) = $this->getUserCond();
53 $conds = array_merge( $userCond, $this->getNamespaceCond() );
54 $user = $this->getUser();
55 // Paranoia: avoid brute force searches (bug 17792)
56 if( !$user->isAllowed( 'deletedhistory' ) ) {
57 $conds[] = $this->mDb->bitAnd('ar_deleted',Revision::DELETED_USER) . ' = 0';
58 } elseif( !$user->isAllowed( 'suppressrevision' ) ) {
59 $conds[] = $this->mDb->bitAnd('ar_deleted',Revision::SUPPRESSED_USER) .
60 ' != ' . Revision::SUPPRESSED_USER;
61 }
62 return array(
63 'tables' => array( 'archive' ),
64 'fields' => array(
65 'ar_rev_id', 'ar_namespace', 'ar_title', 'ar_timestamp', 'ar_comment', 'ar_minor_edit',
66 'ar_user', 'ar_user_text', 'ar_deleted'
67 ),
68 'conds' => $conds,
69 'options' => array( 'USE INDEX' => $index )
70 );
71 }
72
73 function getUserCond() {
74 $condition = array();
75
76 $condition['ar_user_text'] = $this->target;
77 $index = 'usertext_timestamp';
78
79 return array( $index, $condition );
80 }
81
82 function getIndexField() {
83 return 'ar_timestamp';
84 }
85
86 function getStartBody() {
87 return "<ul>\n";
88 }
89
90 function getEndBody() {
91 return "</ul>\n";
92 }
93
94 function getNavigationBar() {
95 if ( isset( $this->mNavigationBar ) ) {
96 return $this->mNavigationBar;
97 }
98 $lang = $this->getLanguage();
99 $fmtLimit = $lang->formatNum( $this->mLimit );
100 $linkTexts = array(
101 'prev' => $this->msg( 'pager-newer-n', $fmtLimit )->escaped(),
102 'next' => $this->msg( 'pager-older-n', $fmtLimit )->escaped(),
103 'first' => $this->msg( 'histlast' )->escaped(),
104 'last' => $this->msg( 'histfirst' )->escaped()
105 );
106
107 $pagingLinks = $this->getPagingLinks( $linkTexts );
108 $limitLinks = $this->getLimitLinks();
109 $limits = $lang->pipeList( $limitLinks );
110
111 $this->mNavigationBar = "(" . $lang->pipeList( array( $pagingLinks['first'], $pagingLinks['last'] ) ) . ") " .
112 $this->msg( 'viewprevnext' )->rawParams( $pagingLinks['prev'], $pagingLinks['next'], $limits )->escaped();
113 return $this->mNavigationBar;
114 }
115
116 function getNamespaceCond() {
117 if ( $this->namespace !== '' ) {
118 return array( 'ar_namespace' => (int)$this->namespace );
119 } else {
120 return array();
121 }
122 }
123
124 /**
125 * Generates each row in the contributions list.
126 *
127 * Contributions which are marked "top" are currently on top of the history.
128 * For these contributions, a [rollback] link is shown for users with sysop
129 * privileges. The rollback link restores the most recent version that was not
130 * written by the target user.
131 *
132 * @todo This would probably look a lot nicer in a table.
133 */
134 function formatRow( $row ) {
135 wfProfileIn( __METHOD__ );
136
137 $rev = new Revision( array(
138 'id' => $row->ar_rev_id,
139 'comment' => $row->ar_comment,
140 'user' => $row->ar_user,
141 'user_text' => $row->ar_user_text,
142 'timestamp' => $row->ar_timestamp,
143 'minor_edit' => $row->ar_minor_edit,
144 'deleted' => $row->ar_deleted,
145 ) );
146
147 $page = Title::makeTitle( $row->ar_namespace, $row->ar_title );
148
149 $undelete = SpecialPage::getTitleFor( 'Undelete' );
150
151 $logs = SpecialPage::getTitleFor( 'Log' );
152 $dellog = Linker::linkKnown(
153 $logs,
154 $this->messages['deletionlog'],
155 array(),
156 array(
157 'type' => 'delete',
158 'page' => $page->getPrefixedText()
159 )
160 );
161
162 $reviewlink = Linker::linkKnown(
163 SpecialPage::getTitleFor( 'Undelete', $page->getPrefixedDBkey() ),
164 $this->messages['undeleteviewlink']
165 );
166
167 $user = $this->getUser();
168
169 if( $user->isAllowed('deletedtext') ) {
170 $last = Linker::linkKnown(
171 $undelete,
172 $this->messages['diff'],
173 array(),
174 array(
175 'target' => $page->getPrefixedText(),
176 'timestamp' => $rev->getTimestamp(),
177 'diff' => 'prev'
178 )
179 );
180 } else {
181 $last = $this->messages['diff'];
182 }
183
184 $comment = Linker::revComment( $rev );
185 $date = htmlspecialchars( $this->getLanguage()->timeanddate( $rev->getTimestamp(), true ) );
186
187 if( !$user->isAllowed( 'undelete' ) || !$rev->userCan( Revision::DELETED_TEXT, $user ) ) {
188 $link = $date; // unusable link
189 } else {
190 $link = Linker::linkKnown(
191 $undelete,
192 $date,
193 array(),
194 array(
195 'target' => $page->getPrefixedText(),
196 'timestamp' => $rev->getTimestamp()
197 )
198 );
199 }
200 // Style deleted items
201 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
202 $link = '<span class="history-deleted">' . $link . '</span>';
203 }
204
205 $pagelink = Linker::link( $page );
206
207 if( $rev->isMinor() ) {
208 $mflag = ChangesList::flag( 'minor' );
209 } else {
210 $mflag = '';
211 }
212
213 // Revision delete link
214 $del = Linker::getRevDeleteLink( $user, $rev, $page );
215 if ( $del ) $del .= ' ';
216
217 $tools = Html::rawElement(
218 'span',
219 array( 'class' => 'mw-deletedcontribs-tools' ),
220 $this->msg( 'parentheses' )->rawParams( $this->getLanguage()->pipeList(
221 array( $last, $dellog, $reviewlink ) ) )->escaped()
222 );
223
224 $ret = "{$del}{$link} {$tools} . . {$mflag} {$pagelink} {$comment}";
225
226 # Denote if username is redacted for this edit
227 if( $rev->isDeleted( Revision::DELETED_USER ) ) {
228 $ret .= " <strong>" . $this->msg( 'rev-deleted-user-contribs' )->escaped() . "</strong>";
229 }
230
231 $ret = Html::rawElement( 'li', array(), $ret ) . "\n";
232
233 wfProfileOut( __METHOD__ );
234 return $ret;
235 }
236
237 /**
238 * Get the Database object in use
239 *
240 * @return Database
241 */
242 public function getDatabase() {
243 return $this->mDb;
244 }
245 }
246
247 class DeletedContributionsPage extends SpecialPage {
248 function __construct() {
249 parent::__construct( 'DeletedContributions', 'deletedhistory',
250 /*listed*/ true, /*function*/ false, /*file*/ false );
251 }
252
253 /**
254 * Special page "deleted user contributions".
255 * Shows a list of the deleted contributions of a user.
256 *
257 * @return none
258 * @param $par String: (optional) user name of the user for which to show the contributions
259 */
260 function execute( $par ) {
261 global $wgQueryPageDefaultLimit;
262 $this->setHeaders();
263
264 $user = $this->getUser();
265
266 if ( !$this->userCanExecute( $user ) ) {
267 $this->displayRestrictionError();
268 return;
269 }
270
271 $request = $this->getRequest();
272 $out = $this->getOutput();
273 $out->setPageTitle( $this->msg( 'deletedcontributions-title' ) );
274
275 $options = array();
276
277 if ( $par !== null ) {
278 $target = $par;
279 } else {
280 $target = $request->getVal( 'target' );
281 }
282
283 if ( !strlen( $target ) ) {
284 $out->addHTML( $this->getForm( '' ) );
285 return;
286 }
287
288 $options['limit'] = $request->getInt( 'limit', $wgQueryPageDefaultLimit );
289 $options['target'] = $target;
290
291 $userObj = User::newFromName( $target );
292 if ( !$userObj ) {
293 $out->addHTML( $this->getForm( '' ) );
294 return;
295 }
296 $nt = $userObj->getUserPage();
297 $id = $userObj->getID();
298
299 $target = $userObj->getName();
300 $out->addSubtitle( $this->getSubTitle( $userObj ) );
301
302 if ( ( $ns = $request->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
303 $options['namespace'] = intval( $ns );
304 } else {
305 $options['namespace'] = '';
306 }
307
308 $out->addHTML( $this->getForm( $options ) );
309
310 $pager = new DeletedContribsPager( $this->getContext(), $target, $options['namespace'] );
311 if ( !$pager->getNumRows() ) {
312 $out->addWikiMsg( 'nocontribs' );
313 return;
314 }
315
316 # Show a message about slave lag, if applicable
317 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
318 if( $lag > 0 )
319 $out->showLagWarning( $lag );
320
321 $out->addHTML(
322 '<p>' . $pager->getNavigationBar() . '</p>' .
323 $pager->getBody() .
324 '<p>' . $pager->getNavigationBar() . '</p>' );
325
326 # If there were contributions, and it was a valid user or IP, show
327 # the appropriate "footer" message - WHOIS tools, etc.
328 if( $target != 'newbies' ) {
329 $message = IP::isIPAddress( $target )
330 ? 'sp-contributions-footer-anon'
331 : 'sp-contributions-footer';
332
333 if( !$this->msg( $message )->isDisabled() ) {
334 $out->wrapWikiMsg( "<div class='mw-contributions-footer'>\n$1\n</div>", array( $message, $target ) );
335 }
336 }
337 }
338
339 /**
340 * Generates the subheading with links
341 * @param $userObj User object for the target
342 * @return String: appropriately-escaped HTML to be output literally
343 * @todo FIXME: Almost the same as contributionsSub in SpecialContributions.php. Could be combined.
344 */
345 function getSubTitle( $userObj ) {
346 if ( $userObj->isAnon() ) {
347 $user = htmlspecialchars( $userObj->getName() );
348 } else {
349 $user = Linker::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
350 }
351 $nt = $userObj->getUserPage();
352 $id = $userObj->getID();
353 $talk = $nt->getTalkPage();
354 if( $talk ) {
355 # Talk page link
356 $tools[] = Linker::link( $talk, $this->msg( 'sp-contributions-talk' )->escaped() );
357 if( ( $id !== null ) || ( $id === null && IP::isIPAddress( $nt->getText() ) ) ) {
358 if( $this->getUser()->isAllowed( 'block' ) ) { # Block / Change block / Unblock links
359 if ( $userObj->isBlocked() ) {
360 $tools[] = Linker::linkKnown( # Change block link
361 SpecialPage::getTitleFor( 'Block', $nt->getDBkey() ),
362 $this->msg( 'change-blocklink' )->escaped()
363 );
364 $tools[] = Linker::linkKnown( # Unblock link
365 SpecialPage::getTitleFor( 'BlockList' ),
366 $this->msg( 'unblocklink' )->escaped(),
367 array(),
368 array(
369 'action' => 'unblock',
370 'ip' => $nt->getDBkey()
371 )
372 );
373 }
374 else { # User is not blocked
375 $tools[] = Linker::linkKnown( # Block link
376 SpecialPage::getTitleFor( 'Block', $nt->getDBkey() ),
377 $this->msg( 'blocklink' )->escaped()
378 );
379 }
380 }
381 # Block log link
382 $tools[] = Linker::linkKnown(
383 SpecialPage::getTitleFor( 'Log' ),
384 $this->msg( 'sp-contributions-blocklog' )->escaped(),
385 array(),
386 array(
387 'type' => 'block',
388 'page' => $nt->getPrefixedText()
389 )
390 );
391 }
392 # Other logs link
393 $tools[] = Linker::linkKnown(
394 SpecialPage::getTitleFor( 'Log' ),
395 $this->msg( 'sp-contributions-logs' )->escaped(),
396 array(),
397 array( 'user' => $nt->getText() )
398 );
399 # Link to contributions
400 $tools[] = Linker::linkKnown(
401 SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ),
402 $this->msg( 'sp-deletedcontributions-contribs' )->escaped()
403 );
404
405 # Add a link to change user rights for privileged users
406 $userrightsPage = new UserrightsPage();
407 $userrightsPage->setContext( $this->getContext() );
408 if( $id !== null && $userrightsPage->userCanChangeRights( User::newFromId( $id ) ) ) {
409 $tools[] = Linker::linkKnown(
410 SpecialPage::getTitleFor( 'Userrights', $nt->getDBkey() ),
411 $this->msg( 'sp-contributions-userrights' )->escaped()
412 );
413 }
414
415 wfRunHooks( 'ContributionsToolLinks', array( $id, $nt, &$tools ) );
416
417 $links = $this->getLanguage()->pipeList( $tools );
418
419 // Show a note if the user is blocked and display the last block log entry.
420 if ( $userObj->isBlocked() ) {
421 $out = $this->getOutput(); // LogEventsList::showLogExtract() wants the first parameter by ref
422 LogEventsList::showLogExtract(
423 $out,
424 'block',
425 $nt,
426 '',
427 array(
428 'lim' => 1,
429 'showIfEmpty' => false,
430 'msgKey' => array(
431 'sp-contributions-blocked-notice',
432 $nt->getText() # Support GENDER in 'sp-contributions-blocked-notice'
433 ),
434 'offset' => '' # don't use $this->getRequest() parameter offset
435 )
436 );
437 }
438 }
439
440 // Old message 'contribsub' had one parameter, but that doesn't work for
441 // languages that want to put the "for" bit right after $user but before
442 // $links. If 'contribsub' is around, use it for reverse compatibility,
443 // otherwise use 'contribsub2'.
444 $oldMsg = $this->msg( 'contribsub' );
445 if ( $oldMsg->exists() ) {
446 return $oldMsg->rawParams( "$user ($links)" );
447 } else {
448 return $this->msg( 'contribsub2' )->rawParams( $user, $links );
449 }
450 }
451
452 /**
453 * Generates the namespace selector form with hidden attributes.
454 * @param $options Array: the options to be included.
455 */
456 function getForm( $options ) {
457 global $wgScript;
458
459 $options['title'] = $this->getTitle()->getPrefixedText();
460 if ( !isset( $options['target'] ) ) {
461 $options['target'] = '';
462 } else {
463 $options['target'] = str_replace( '_' , ' ' , $options['target'] );
464 }
465
466 if ( !isset( $options['namespace'] ) ) {
467 $options['namespace'] = '';
468 }
469
470 if ( !isset( $options['contribs'] ) ) {
471 $options['contribs'] = 'user';
472 }
473
474 if ( $options['contribs'] == 'newbie' ) {
475 $options['target'] = '';
476 }
477
478 $f = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
479
480 foreach ( $options as $name => $value ) {
481 if ( in_array( $name, array( 'namespace', 'target', 'contribs' ) ) ) {
482 continue;
483 }
484 $f .= "\t" . Html::hidden( $name, $value ) . "\n";
485 }
486
487 $f .= Xml::openElement( 'fieldset' ) .
488 Xml::element( 'legend', array(), $this->msg( 'sp-contributions-search' )->text() ) .
489 Xml::tags( 'label', array( 'for' => 'target' ), $this->msg( 'sp-contributions-username' )->parse() ) . ' ' .
490 Html::input( 'target', $options['target'], 'text', array(
491 'size' => '20',
492 'required' => ''
493 ) + ( $options['target'] ? array() : array( 'autofocus' ) ) ) . ' '.
494 Xml::label( $this->msg( 'namespace' )->text(), 'namespace' ) . ' ' .
495 Xml::namespaceSelector( $options['namespace'], '' ) . ' ' .
496 Xml::submitButton( $this->msg( 'sp-contributions-submit' )->text() ) .
497 Xml::closeElement( 'fieldset' ) .
498 Xml::closeElement( 'form' );
499 return $f;
500 }
501 }