(bug 37755) Set robot meta tags for 'view source' pages
[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 class DeletedContribsPager extends IndexPager {
29 public $mDefaultDirection = true;
30 var $messages, $target;
31 var $namespace = '', $mDb;
32
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();
38 }
39 $this->target = $target;
40 $this->namespace = $namespace;
41 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
42 }
43
44 function getDefaultQuery() {
45 $query = parent::getDefaultQuery();
46 $query['target'] = $this->target;
47 return $query;
48 }
49
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;
60 }
61 return array(
62 'tables' => array( 'archive' ),
63 'fields' => array(
64 'ar_rev_id', 'ar_namespace', 'ar_title', 'ar_timestamp', 'ar_comment', 'ar_minor_edit',
65 'ar_user', 'ar_user_text', 'ar_deleted'
66 ),
67 'conds' => $conds,
68 'options' => array( 'USE INDEX' => $index )
69 );
70 }
71
72 function getUserCond() {
73 $condition = array();
74
75 $condition['ar_user_text'] = $this->target;
76 $index = 'usertext_timestamp';
77
78 return array( $index, $condition );
79 }
80
81 function getIndexField() {
82 return 'ar_timestamp';
83 }
84
85 function getStartBody() {
86 return "<ul>\n";
87 }
88
89 function getEndBody() {
90 return "</ul>\n";
91 }
92
93 function getNavigationBar() {
94 if ( isset( $this->mNavigationBar ) ) {
95 return $this->mNavigationBar;
96 }
97
98 $linkTexts = array(
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()
103 );
104
105 $pagingLinks = $this->getPagingLinks( $linkTexts );
106 $limitLinks = $this->getLimitLinks();
107 $lang = $this->getLanguage();
108 $limits = $lang->pipeList( $limitLinks );
109
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;
113 }
114
115 function getNamespaceCond() {
116 if ( $this->namespace !== '' ) {
117 return array( 'ar_namespace' => (int)$this->namespace );
118 } else {
119 return array();
120 }
121 }
122
123 /**
124 * Generates each row in the contributions list.
125 *
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.
130 *
131 * @todo This would probably look a lot nicer in a table.
132 * @param $row
133 * @return string
134 */
135 function formatRow( $row ) {
136 wfProfileIn( __METHOD__ );
137
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,
146 ) );
147
148 $page = Title::makeTitle( $row->ar_namespace, $row->ar_title );
149
150 $undelete = SpecialPage::getTitleFor( 'Undelete' );
151
152 $logs = SpecialPage::getTitleFor( 'Log' );
153 $dellog = Linker::linkKnown(
154 $logs,
155 $this->messages['deletionlog'],
156 array(),
157 array(
158 'type' => 'delete',
159 'page' => $page->getPrefixedText()
160 )
161 );
162
163 $reviewlink = Linker::linkKnown(
164 SpecialPage::getTitleFor( 'Undelete', $page->getPrefixedDBkey() ),
165 $this->messages['undeleteviewlink']
166 );
167
168 $user = $this->getUser();
169
170 if( $user->isAllowed('deletedtext') ) {
171 $last = Linker::linkKnown(
172 $undelete,
173 $this->messages['diff'],
174 array(),
175 array(
176 'target' => $page->getPrefixedText(),
177 'timestamp' => $rev->getTimestamp(),
178 'diff' => 'prev'
179 )
180 );
181 } else {
182 $last = $this->messages['diff'];
183 }
184
185 $comment = Linker::revComment( $rev );
186 $date = htmlspecialchars( $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $user ) );
187
188 if( !$user->isAllowed( 'undelete' ) || !$rev->userCan( Revision::DELETED_TEXT, $user ) ) {
189 $link = $date; // unusable link
190 } else {
191 $link = Linker::linkKnown(
192 $undelete,
193 $date,
194 array( 'class' => 'mw-changeslist-date' ),
195 array(
196 'target' => $page->getPrefixedText(),
197 'timestamp' => $rev->getTimestamp()
198 )
199 );
200 }
201 // Style deleted items
202 if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
203 $link = '<span class="history-deleted">' . $link . '</span>';
204 }
205
206 $pagelink = Linker::link(
207 $page,
208 null,
209 array( 'class' => 'mw-changeslist-title' )
210 );
211
212 if( $rev->isMinor() ) {
213 $mflag = ChangesList::flag( 'minor' );
214 } else {
215 $mflag = '';
216 }
217
218 // Revision delete link
219 $del = Linker::getRevDeleteLink( $user, $rev, $page );
220 if ( $del ) $del .= ' ';
221
222 $tools = Html::rawElement(
223 'span',
224 array( 'class' => 'mw-deletedcontribs-tools' ),
225 $this->msg( 'parentheses' )->rawParams( $this->getLanguage()->pipeList(
226 array( $last, $dellog, $reviewlink ) ) )->escaped()
227 );
228
229 $separator = '<span class="mw-changeslist-separator">. .</span>';
230 $ret = "{$del}{$link} {$tools} {$separator} {$mflag} {$pagelink} {$comment}";
231
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>";
235 }
236
237 $ret = Html::rawElement( 'li', array(), $ret ) . "\n";
238
239 wfProfileOut( __METHOD__ );
240 return $ret;
241 }
242
243 /**
244 * Get the Database object in use
245 *
246 * @return DatabaseBase
247 */
248 public function getDatabase() {
249 return $this->mDb;
250 }
251 }
252
253 class DeletedContributionsPage extends SpecialPage {
254 function __construct() {
255 parent::__construct( 'DeletedContributions', 'deletedhistory',
256 /*listed*/ true, /*function*/ false, /*file*/ false );
257 }
258
259 /**
260 * Special page "deleted user contributions".
261 * Shows a list of the deleted contributions of a user.
262 *
263 * @param $par String: (optional) user name of the user for which to show the contributions
264 */
265 function execute( $par ) {
266 global $wgQueryPageDefaultLimit;
267 $this->setHeaders();
268 $this->outputHeader();
269
270 $user = $this->getUser();
271
272 if ( !$this->userCanExecute( $user ) ) {
273 $this->displayRestrictionError();
274 return;
275 }
276
277 $request = $this->getRequest();
278 $out = $this->getOutput();
279 $out->setPageTitle( $this->msg( 'deletedcontributions-title' ) );
280
281 $options = array();
282
283 if ( $par !== null ) {
284 $target = $par;
285 } else {
286 $target = $request->getVal( 'target' );
287 }
288
289 if ( !strlen( $target ) ) {
290 $out->addHTML( $this->getForm( '' ) );
291 return;
292 }
293
294 $options['limit'] = $request->getInt( 'limit', $wgQueryPageDefaultLimit );
295 $options['target'] = $target;
296
297 $userObj = User::newFromName( $target, false );
298 if ( !$userObj ) {
299 $out->addHTML( $this->getForm( '' ) );
300 return;
301 }
302 $this->getSkin()->setRelevantUser( $userObj );
303
304 $target = $userObj->getName();
305 $out->addSubtitle( $this->getSubTitle( $userObj ) );
306
307 if ( ( $ns = $request->getVal( 'namespace', null ) ) !== null && $ns !== '' ) {
308 $options['namespace'] = intval( $ns );
309 } else {
310 $options['namespace'] = '';
311 }
312
313 $out->addHTML( $this->getForm( $options ) );
314
315 $pager = new DeletedContribsPager( $this->getContext(), $target, $options['namespace'] );
316 if ( !$pager->getNumRows() ) {
317 $out->addWikiMsg( 'nocontribs' );
318 return;
319 }
320
321 # Show a message about slave lag, if applicable
322 $lag = wfGetLB()->safeGetLag( $pager->getDatabase() );
323 if( $lag > 0 )
324 $out->showLagWarning( $lag );
325
326 $out->addHTML(
327 '<p>' . $pager->getNavigationBar() . '</p>' .
328 $pager->getBody() .
329 '<p>' . $pager->getNavigationBar() . '</p>' );
330
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';
337
338 if( !$this->msg( $message )->isDisabled() ) {
339 $out->wrapWikiMsg( "<div class='mw-contributions-footer'>\n$1\n</div>", array( $message, $target ) );
340 }
341 }
342 }
343
344 /**
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.
349 */
350 function getSubTitle( $userObj ) {
351 if ( $userObj->isAnon() ) {
352 $user = htmlspecialchars( $userObj->getName() );
353 } else {
354 $user = Linker::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
355 }
356 $links = '';
357 $nt = $userObj->getUserPage();
358 $id = $userObj->getID();
359 $talk = $nt->getTalkPage();
360 if( $talk ) {
361 # Talk page link
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()
369 );
370 $tools[] = Linker::linkKnown( # Unblock link
371 SpecialPage::getTitleFor( 'BlockList' ),
372 $this->msg( 'unblocklink' )->escaped(),
373 array(),
374 array(
375 'action' => 'unblock',
376 'ip' => $nt->getDBkey()
377 )
378 );
379 }
380 else { # User is not blocked
381 $tools[] = Linker::linkKnown( # Block link
382 SpecialPage::getTitleFor( 'Block', $nt->getDBkey() ),
383 $this->msg( 'blocklink' )->escaped()
384 );
385 }
386 }
387 # Block log link
388 $tools[] = Linker::linkKnown(
389 SpecialPage::getTitleFor( 'Log' ),
390 $this->msg( 'sp-contributions-blocklog' )->escaped(),
391 array(),
392 array(
393 'type' => 'block',
394 'page' => $nt->getPrefixedText()
395 )
396 );
397 }
398
399 # Uploads
400 $tools[] = Linker::linkKnown(
401 SpecialPage::getTitleFor( 'Listfiles', $userObj->getName() ),
402 $this->msg( 'sp-contributions-uploads' )->escaped()
403 );
404
405 # Other logs link
406 $tools[] = Linker::linkKnown(
407 SpecialPage::getTitleFor( 'Log' ),
408 $this->msg( 'sp-contributions-logs' )->escaped(),
409 array(),
410 array( 'user' => $nt->getText() )
411 );
412 # Link to contributions
413 $tools[] = Linker::linkKnown(
414 SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ),
415 $this->msg( 'sp-deletedcontributions-contribs' )->escaped()
416 );
417
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()
425 );
426 }
427
428 wfRunHooks( 'ContributionsToolLinks', array( $id, $nt, &$tools ) );
429
430 $links = $this->getLanguage()->pipeList( $tools );
431
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(
436 $out,
437 'block',
438 $nt,
439 '',
440 array(
441 'lim' => 1,
442 'showIfEmpty' => false,
443 'msgKey' => array(
444 'sp-contributions-blocked-notice',
445 $nt->getText() # Support GENDER in 'sp-contributions-blocked-notice'
446 ),
447 'offset' => '' # don't use $this->getRequest() parameter offset
448 )
449 );
450 }
451 }
452
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)" );
460 } else {
461 return $this->msg( 'contribsub2' )->rawParams( $user, $links );
462 }
463 }
464
465 /**
466 * Generates the namespace selector form with hidden attributes.
467 * @param $options Array: the options to be included.
468 * @return string
469 */
470 function getForm( $options ) {
471 global $wgScript;
472
473 $options['title'] = $this->getTitle()->getPrefixedText();
474 if ( !isset( $options['target'] ) ) {
475 $options['target'] = '';
476 } else {
477 $options['target'] = str_replace( '_' , ' ' , $options['target'] );
478 }
479
480 if ( !isset( $options['namespace'] ) ) {
481 $options['namespace'] = '';
482 }
483
484 if ( !isset( $options['contribs'] ) ) {
485 $options['contribs'] = 'user';
486 }
487
488 if ( $options['contribs'] == 'newbie' ) {
489 $options['target'] = '';
490 }
491
492 $f = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
493
494 foreach ( $options as $name => $value ) {
495 if ( in_array( $name, array( 'namespace', 'target', 'contribs' ) ) ) {
496 continue;
497 }
498 $f .= "\t" . Html::hidden( $name, $value ) . "\n";
499 }
500
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(
505 'size' => '20',
506 'required' => ''
507 ) + ( $options['target'] ? array() : array( 'autofocus' ) ) ) . ' '.
508 Html::namespaceSelector(
509 array(
510 'selected' => $options['namespace'],
511 'all' => '',
512 'label' => $this->msg( 'namespace' )->text()
513 ), array(
514 'name' => 'namespace',
515 'id' => 'namespace',
516 'class' => 'namespaceselector',
517 )
518 ) . ' ' .
519 Xml::submitButton( $this->msg( 'sp-contributions-submit' )->text() ) .
520 Xml::closeElement( 'fieldset' ) .
521 Xml::closeElement( 'form' );
522 return $f;
523 }
524 }