3 * Implements Special:Revisiondelete
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 * Special page allowing users with the appropriate permissions to view
26 * and hide revisions. Log items can also be hidden.
28 * @ingroup SpecialPage
30 class SpecialRevisionDelete
extends UnlistedSpecialPage
{
31 /** True if the submit button was clicked, and the form was posted */
37 /** Archive name, for reviewing deleted files */
40 /** Edit token for securing image views against XSS */
43 /** Title object for target parameter */
46 /** Deletion type, may be revision, archive, oldimage, filearchive, logging. */
49 /** Array of checkbox specs (message, name, deletion bits) */
52 /** Information about the current type */
55 /** The RevDel_List object, storing the list of items to be deleted/undeleted */
59 * Assorted information about each type, needed by the special page.
60 * TODO Move some of this to the list class
62 static $allowedTypes = array(
64 'check-label' => 'revdelete-hide-text',
65 'deletion-bits' => Revision
::DELETED_TEXT
,
66 'success' => 'revdelete-success',
67 'failure' => 'revdelete-failure',
68 'list-class' => 'RevDel_RevisionList',
69 'permission' => 'deleterevision',
72 'check-label' => 'revdelete-hide-text',
73 'deletion-bits' => Revision
::DELETED_TEXT
,
74 'success' => 'revdelete-success',
75 'failure' => 'revdelete-failure',
76 'list-class' => 'RevDel_ArchiveList',
77 'permission' => 'deleterevision',
80 'check-label' => 'revdelete-hide-image',
81 'deletion-bits' => File
::DELETED_FILE
,
82 'success' => 'revdelete-success',
83 'failure' => 'revdelete-failure',
84 'list-class' => 'RevDel_FileList',
85 'permission' => 'deleterevision',
87 'filearchive' => array(
88 'check-label' => 'revdelete-hide-image',
89 'deletion-bits' => File
::DELETED_FILE
,
90 'success' => 'revdelete-success',
91 'failure' => 'revdelete-failure',
92 'list-class' => 'RevDel_ArchivedFileList',
93 'permission' => 'deleterevision',
96 'check-label' => 'revdelete-hide-name',
97 'deletion-bits' => LogPage
::DELETED_ACTION
,
98 'success' => 'logdelete-success',
99 'failure' => 'logdelete-failure',
100 'list-class' => 'RevDel_LogList',
101 'permission' => 'deletelogentry',
105 /** Type map to support old log entries */
106 static $deprecatedTypeMap = array(
107 'oldid' => 'revision',
108 'artimestamp' => 'archive',
109 'oldimage' => 'oldimage',
110 'fileid' => 'filearchive',
111 'logid' => 'logging',
114 public function __construct() {
115 parent
::__construct( 'Revisiondelete', 'deletedhistory' );
118 public function execute( $par ) {
119 $this->checkPermissions();
120 $this->checkReadOnly();
122 $output = $this->getOutput();
123 $user = $this->getUser();
126 $this->outputHeader();
127 $request = $this->getRequest();
128 $this->submitClicked
= $request->wasPosted() && $request->getBool( 'wpSubmit' );
129 # Handle our many different possible input types.
130 $ids = $request->getVal( 'ids' );
131 if ( !is_null( $ids ) ) {
132 # Allow CSV, for backwards compatibility, or a single ID for show/hide links
133 $this->ids
= explode( ',', $ids );
136 $this->ids
= array_keys( $request->getArray('ids',array()) );
138 // $this->ids = array_map( 'intval', $this->ids );
139 $this->ids
= array_unique( array_filter( $this->ids
) );
141 if ( $request->getVal( 'action' ) == 'historysubmit' ||
$request->getVal( 'action' ) == 'revisiondelete' ) {
142 // For show/hide form submission from history page
143 // Since we are access through index.php?title=XXX&action=historysubmit
144 // getFullTitle() will contain the target title and not our title
145 $this->targetObj
= $this->getFullTitle();
146 $this->typeName
= 'revision';
148 $this->typeName
= $request->getVal( 'type' );
149 $this->targetObj
= Title
::newFromText( $request->getText( 'target' ) );
152 # For reviewing deleted files...
153 $this->archiveName
= $request->getVal( 'file' );
154 $this->token
= $request->getVal( 'token' );
155 if ( $this->archiveName
&& $this->targetObj
) {
156 $this->tryShowFile( $this->archiveName
);
160 if ( isset( self
::$deprecatedTypeMap[$this->typeName
] ) ) {
161 $this->typeName
= self
::$deprecatedTypeMap[$this->typeName
];
165 if( !isset( self
::$allowedTypes[$this->typeName
] ) ||
count( $this->ids
) == 0 ) {
166 throw new ErrorPageError( 'revdelete-nooldid-title', 'revdelete-nooldid-text' );
168 $this->typeInfo
= self
::$allowedTypes[$this->typeName
];
169 $this->mIsAllowed
= $user->isAllowed( $this->typeInfo
['permission'] );
171 # If we have revisions, get the title from the first one
172 # since they should all be from the same page. This allows
173 # for more flexibility with page moves...
174 if( $this->typeName
== 'revision' ) {
175 $rev = Revision
::newFromId( $this->ids
[0] );
176 $this->targetObj
= $rev ?
$rev->getTitle() : $this->targetObj
;
179 $this->otherReason
= $request->getVal( 'wpReason' );
180 # We need a target page!
181 if( is_null($this->targetObj
) ) {
182 $output->addWikiMsg( 'undelete-header' );
185 # Give a link to the logs/hist for this page
186 $this->showConvenienceLinks();
188 # Initialise checkboxes
189 $this->checks
= array(
190 array( $this->typeInfo
['check-label'], 'wpHidePrimary', $this->typeInfo
['deletion-bits'] ),
191 array( 'revdelete-hide-comment', 'wpHideComment', Revision
::DELETED_COMMENT
),
192 array( 'revdelete-hide-user', 'wpHideUser', Revision
::DELETED_USER
)
194 if( $user->isAllowed('suppressrevision') ) {
195 $this->checks
[] = array( 'revdelete-hide-restricted',
196 'wpHideRestricted', Revision
::DELETED_RESTRICTED
);
199 # Either submit or create our form
200 if( $this->mIsAllowed
&& $this->submitClicked
) {
201 $this->submit( $request );
206 $qc = $this->getLogQueryCond();
207 # Show relevant lines from the deletion log
208 $deleteLogPage = new LogPage( 'delete' );
209 $output->addHTML( "<h2>" . $deleteLogPage->getName()->escaped() . "</h2>\n" );
210 LogEventsList
::showLogExtract( $output, 'delete',
211 $this->targetObj
, '', array( 'lim' => 25, 'conds' => $qc ) );
212 # Show relevant lines from the suppression log
213 if( $user->isAllowed( 'suppressionlog' ) ) {
214 $suppressLogPage = new LogPage( 'suppress' );
215 $output->addHTML( "<h2>" . $suppressLogPage->getName()->escaped() . "</h2>\n" );
216 LogEventsList
::showLogExtract( $output, 'suppress',
217 $this->targetObj
, '', array( 'lim' => 25, 'conds' => $qc ) );
222 * Show some useful links in the subtitle
224 protected function showConvenienceLinks() {
225 # Give a link to the logs/hist for this page
226 if( $this->targetObj
) {
228 $links[] = Linker
::linkKnown(
229 SpecialPage
::getTitleFor( 'Log' ),
230 $this->msg( 'viewpagelogs' )->escaped(),
232 array( 'page' => $this->targetObj
->getPrefixedText() )
234 if ( !$this->targetObj
->isSpecialPage() ) {
235 # Give a link to the page history
236 $links[] = Linker
::linkKnown(
238 $this->msg( 'pagehist' )->escaped(),
240 array( 'action' => 'history' )
242 # Link to deleted edits
243 if( $this->getUser()->isAllowed('undelete') ) {
244 $undelete = SpecialPage
::getTitleFor( 'Undelete' );
245 $links[] = Linker
::linkKnown(
247 $this->msg( 'deletedhist' )->escaped(),
249 array( 'target' => $this->targetObj
->getPrefixedDBkey() )
253 # Logs themselves don't have histories or archived revisions
254 $this->getOutput()->addSubtitle( $this->getLanguage()->pipeList( $links ) );
259 * Get the condition used for fetching log snippets
262 protected function getLogQueryCond() {
264 // Revision delete logs for these item
265 $conds['log_type'] = array( 'delete', 'suppress' );
266 $conds['log_action'] = $this->getList()->getLogAction();
267 $conds['ls_field'] = RevisionDeleter
::getRelationType( $this->typeName
);
268 $conds['ls_value'] = $this->ids
;
273 * Show a deleted file version requested by the visitor.
274 * TODO Mostly copied from Special:Undelete. Refactor.
276 protected function tryShowFile( $archiveName ) {
277 $repo = RepoGroup
::singleton()->getLocalRepo();
278 $oimage = $repo->newFromArchiveName( $this->targetObj
, $archiveName );
280 // Check if user is allowed to see this file
281 if ( !$oimage->exists() ) {
282 $this->getOutput()->addWikiMsg( 'revdelete-no-file' );
285 $user = $this->getUser();
286 if( !$oimage->userCan( File
::DELETED_FILE
, $user ) ) {
287 if( $oimage->isDeleted( File
::DELETED_RESTRICTED
) ) {
288 throw new PermissionsError( 'suppressrevision' );
290 throw new PermissionsError( 'deletedtext' );
293 if ( !$user->matchEditToken( $this->token
, $archiveName ) ) {
294 $lang = $this->getLanguage();
295 $this->getOutput()->addWikiMsg( 'revdelete-show-file-confirm',
296 $this->targetObj
->getText(),
297 $lang->userDate( $oimage->getTimestamp(), $user ),
298 $lang->userTime( $oimage->getTimestamp(), $user ) );
299 $this->getOutput()->addHTML(
300 Xml
::openElement( 'form', array(
302 'action' => $this->getTitle()->getLocalUrl(
303 'target=' . urlencode( $this->targetObj
->getPrefixedDBkey() ) .
304 '&file=' . urlencode( $archiveName ) .
305 '&token=' . urlencode( $user->getEditToken( $archiveName ) ) )
308 Xml
::submitButton( $this->msg( 'revdelete-show-file-submit' )->text() ) .
313 $this->getOutput()->disable();
314 # We mustn't allow the output to be Squid cached, otherwise
315 # if an admin previews a deleted image, and it's cached, then
316 # a user without appropriate permissions can toddle off and
317 # nab the image, and Squid will serve it
318 $this->getRequest()->response()->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
319 $this->getRequest()->response()->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
320 $this->getRequest()->response()->header( 'Pragma: no-cache' );
322 $key = $oimage->getStorageKey();
323 $path = $repo->getZonePath( 'deleted' ) . '/' . $repo->getDeletedHashPath( $key ) . $key;
324 $repo->streamFile( $path );
328 * Get the list object for this request
330 protected function getList() {
331 if ( is_null( $this->list ) ) {
332 $class = $this->typeInfo
['list-class'];
333 $this->list = new $class( $this->getContext(), $this->targetObj
, $this->ids
);
339 * Show a list of items that we will operate on, and show a form with checkboxes
340 * which will allow the user to choose new visibility settings.
342 protected function showForm() {
345 if ( $this->typeName
== 'logging' ) {
346 $this->getOutput()->addWikiMsg( 'logdelete-selected', $this->getLanguage()->formatNum( count($this->ids
) ) );
348 $this->getOutput()->addWikiMsg( 'revdelete-selected',
349 $this->targetObj
->getPrefixedText(), count( $this->ids
) );
352 $this->getOutput()->addHTML( "<ul>" );
356 $list = $this->getList();
357 for ( $list->reset(); $list->current(); $list->next() ) {
358 $item = $list->current();
359 if ( !$item->canView() ) {
360 if( !$this->submitClicked
) {
361 throw new PermissionsError( 'suppressrevision' );
363 $UserAllowed = false;
366 $this->getOutput()->addHTML( $item->getHTML() );
369 if( !$numRevisions ) {
370 throw new ErrorPageError( 'revdelete-nooldid-title', 'revdelete-nooldid-text' );
373 $this->getOutput()->addHTML( "</ul>" );
375 $this->addUsageText();
377 // Normal sysops can always see what they did, but can't always change it
378 if( !$UserAllowed ) return;
380 // Show form if the user can submit
381 if( $this->mIsAllowed
) {
382 $out = Xml
::openElement( 'form', array( 'method' => 'post',
383 'action' => $this->getTitle()->getLocalUrl( array( 'action' => 'submit' ) ),
384 'id' => 'mw-revdel-form-revisions' ) ) .
385 Xml
::fieldset( $this->msg( 'revdelete-legend' )->text() ) .
386 $this->buildCheckBoxes() .
387 Xml
::openElement( 'table' ) .
389 '<td class="mw-label">' .
390 Xml
::label( $this->msg( 'revdelete-log' )->text(), 'wpRevDeleteReasonList' ) .
392 '<td class="mw-input">' .
393 Xml
::listDropDown( 'wpRevDeleteReasonList',
394 $this->msg( 'revdelete-reason-dropdown' )->inContentLanguage()->text(),
395 $this->msg( 'revdelete-reasonotherlist' )->inContentLanguage()->text(),
396 '', 'wpReasonDropDown', 1
400 '<td class="mw-label">' .
401 Xml
::label( $this->msg( 'revdelete-otherreason' )->text(), 'wpReason' ) .
403 '<td class="mw-input">' .
404 Xml
::input( 'wpReason', 60, $this->otherReason
, array( 'id' => 'wpReason', 'maxlength' => 100 ) ) .
408 '<td class="mw-submit">' .
409 Xml
::submitButton( $this->msg( 'revdelete-submit', $numRevisions )->text(),
410 array( 'name' => 'wpSubmit' ) ) .
413 Xml
::closeElement( 'table' ) .
414 Html
::hidden( 'wpEditToken', $this->getUser()->getEditToken() ) .
415 Html
::hidden( 'target', $this->targetObj
->getPrefixedText() ) .
416 Html
::hidden( 'type', $this->typeName
) .
417 Html
::hidden( 'ids', implode( ',', $this->ids
) ) .
418 Xml
::closeElement( 'fieldset' ) . "\n";
422 if( $this->mIsAllowed
) {
423 $out .= Xml
::closeElement( 'form' ) . "\n";
424 // Show link to edit the dropdown reasons
425 if( $this->getUser()->isAllowed( 'editinterface' ) ) {
426 $title = Title
::makeTitle( NS_MEDIAWIKI
, 'Revdelete-reason-dropdown' );
427 $link = Linker
::link(
429 $this->msg( 'revdelete-edit-reasonlist' )->escaped(),
431 array( 'action' => 'edit' )
433 $out .= Xml
::tags( 'p', array( 'class' => 'mw-revdel-editreasons' ), $link ) . "\n";
436 $this->getOutput()->addHTML( $out );
440 * Show some introductory text
441 * @todo FIXME: Wikimedia-specific policy text
443 protected function addUsageText() {
444 $this->getOutput()->addWikiMsg( 'revdelete-text' );
445 if( $this->getUser()->isAllowed( 'suppressrevision' ) ) {
446 $this->getOutput()->addWikiMsg( 'revdelete-suppress-text' );
448 if( $this->mIsAllowed
) {
449 $this->getOutput()->addWikiMsg( 'revdelete-confirm' );
454 * @return String: HTML
456 protected function buildCheckBoxes() {
458 // If there is just one item, use checkboxes
459 $list = $this->getList();
460 if( $list->length() == 1 ) {
462 $bitfield = $list->current()->getBits(); // existing field
463 if( $this->submitClicked
) {
464 $bitfield = $this->extractBitfield( $this->extractBitParams(), $bitfield );
466 foreach( $this->checks
as $item ) {
467 list( $message, $name, $field ) = $item;
468 $innerHTML = Xml
::checkLabel( $this->msg( $message )->text(), $name, $name, $bitfield & $field );
469 if( $field == Revision
::DELETED_RESTRICTED
)
470 $innerHTML = "<b>$innerHTML</b>";
471 $line = Xml
::tags( 'td', array( 'class' => 'mw-input' ), $innerHTML );
472 $html .= "<tr>$line</tr>\n";
474 // Otherwise, use tri-state radios
477 $html .= '<th class="mw-revdel-checkbox">' . $this->msg( 'revdelete-radio-same' )->escaped() . '</th>';
478 $html .= '<th class="mw-revdel-checkbox">' . $this->msg( 'revdelete-radio-unset' )->escaped() . '</th>';
479 $html .= '<th class="mw-revdel-checkbox">' . $this->msg( 'revdelete-radio-set' )->escaped() . '</th>';
480 $html .= "<th></th></tr>\n";
481 foreach( $this->checks
as $item ) {
482 list( $message, $name, $field ) = $item;
483 // If there are several items, use third state by default...
484 if( $this->submitClicked
) {
485 $selected = $this->getRequest()->getInt( $name, 0 /* unchecked */ );
487 $selected = -1; // use existing field
489 $line = '<td class="mw-revdel-checkbox">' . Xml
::radio( $name, -1, $selected == -1 ) . '</td>';
490 $line .= '<td class="mw-revdel-checkbox">' . Xml
::radio( $name, 0, $selected == 0 ) . '</td>';
491 $line .= '<td class="mw-revdel-checkbox">' . Xml
::radio( $name, 1, $selected == 1 ) . '</td>';
492 $label = $this->msg( $message )->escaped();
493 if( $field == Revision
::DELETED_RESTRICTED
) {
494 $label = "<b>$label</b>";
496 $line .= "<td>$label</td>";
497 $html .= "<tr>$line</tr>\n";
506 * UI entry point for form submission.
509 protected function submit() {
510 # Check edit token on submission
511 $token = $this->getRequest()->getVal('wpEditToken');
512 if( $this->submitClicked
&& !$this->getUser()->matchEditToken( $token ) ) {
513 $this->getOutput()->addWikiMsg( 'sessionfailure' );
516 $bitParams = $this->extractBitParams();
517 $listReason = $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' ); // from dropdown
518 $comment = $listReason;
519 if( $comment != 'other' && $this->otherReason
!= '' ) {
520 // Entry from drop down menu + additional comment
521 $comment .= $this->msg( 'colon-separator' )->inContentLanguage()->text() . $this->otherReason
;
522 } elseif( $comment == 'other' ) {
523 $comment = $this->otherReason
;
525 # Can the user set this field?
526 if( $bitParams[Revision
::DELETED_RESTRICTED
]==1 && !$this->getUser()->isAllowed('suppressrevision') ) {
527 throw new PermissionsError( 'suppressrevision' );
529 # If the save went through, go to success message...
530 $status = $this->save( $bitParams, $comment, $this->targetObj
);
531 if ( $status->isGood() ) {
534 # ...otherwise, bounce back to form...
536 $this->failure( $status );
542 * Report that the submit operation succeeded
544 protected function success() {
545 $this->getOutput()->setPageTitle( $this->msg( 'actioncomplete' ) );
546 $this->getOutput()->wrapWikiMsg( "<span class=\"success\">\n$1\n</span>", $this->typeInfo
['success'] );
547 $this->list->reloadFromMaster();
552 * Report that the submit operation failed
554 protected function failure( $status ) {
555 $this->getOutput()->setPageTitle( $this->msg( 'actionfailed' ) );
556 $this->getOutput()->addWikiText( $status->getWikiText( $this->typeInfo
['failure'] ) );
561 * Put together an array that contains -1, 0, or the *_deleted const for each bit
565 protected function extractBitParams() {
567 foreach( $this->checks
as $item ) {
568 list( /* message */ , $name, $field ) = $item;
569 $val = $this->getRequest()->getInt( $name, 0 /* unchecked */ );
570 if( $val < -1 ||
$val > 1) {
571 $val = -1; // -1 for existing value
573 $bitfield[$field] = $val;
575 if( !isset($bitfield[Revision
::DELETED_RESTRICTED
]) ) {
576 $bitfield[Revision
::DELETED_RESTRICTED
] = 0;
582 * Put together a rev_deleted bitfield
583 * @param $bitPars array extractBitParams() params
584 * @param $oldfield int current bitfield
587 public static function extractBitfield( $bitPars, $oldfield ) {
588 // Build the actual new rev_deleted bitfield
590 foreach( $bitPars as $const => $val ) {
592 $newBits |
= $const; // $const is the *_deleted const
593 } elseif( $val == -1 ) {
594 $newBits |
= ($oldfield & $const); // use existing
601 * Do the write operations. Simple wrapper for RevDel_*List::setVisibility().
607 protected function save( $bitfield, $reason, $title ) {
608 return $this->getList()->setVisibility(
609 array( 'value' => $bitfield, 'comment' => $reason )