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 /** @var bool Was the DB modified in this request */
32 protected $wasSaved = false;
34 /** @var bool True if the submit button was clicked, and the form was posted */
35 private $submitClicked;
37 /** @var array Target ID list */
40 /** @var string Archive name, for reviewing deleted files */
43 /** @var string Edit token for securing image views against XSS */
46 /** @var Title Title object for target parameter */
49 /** @var string Deletion type, may be revision, archive, oldimage, filearchive, logging. */
52 /** @var array Array of checkbox specs (message, name, deletion bits) */
55 /** @var array UI Labels about the current type */
58 /** @var RevDelList RevDelList object, storing the list of items to be deleted/undeleted */
61 /** @var bool Whether user is allowed to perform the action */
68 * UI labels for each type.
70 private static $UILabels = [
72 'check-label' => 'revdelete-hide-text',
73 'success' => 'revdelete-success',
74 'failure' => 'revdelete-failure',
75 'text' => 'revdelete-text-text',
76 'selected'=> 'revdelete-selected-text',
79 'check-label' => 'revdelete-hide-text',
80 'success' => 'revdelete-success',
81 'failure' => 'revdelete-failure',
82 'text' => 'revdelete-text-text',
83 'selected'=> 'revdelete-selected-text',
86 'check-label' => 'revdelete-hide-image',
87 'success' => 'revdelete-success',
88 'failure' => 'revdelete-failure',
89 'text' => 'revdelete-text-file',
90 'selected'=> 'revdelete-selected-file',
93 'check-label' => 'revdelete-hide-image',
94 'success' => 'revdelete-success',
95 'failure' => 'revdelete-failure',
96 'text' => 'revdelete-text-file',
97 'selected'=> 'revdelete-selected-file',
100 'check-label' => 'revdelete-hide-name',
101 'success' => 'logdelete-success',
102 'failure' => 'logdelete-failure',
103 'text' => 'logdelete-text',
104 'selected' => 'logdelete-selected',
108 public function __construct() {
109 parent
::__construct( 'Revisiondelete', 'deletedhistory' );
112 public function doesWrites() {
116 public function execute( $par ) {
117 $this->useTransactionalTimeLimit();
119 $this->checkPermissions();
120 $this->checkReadOnly();
122 $output = $this->getOutput();
123 $user = $this->getUser();
126 if ( $user->isBlocked() ) {
127 throw new UserBlockedError( $user->getBlock() );
131 $this->outputHeader();
132 $request = $this->getRequest();
133 $this->submitClicked
= $request->wasPosted() && $request->getBool( 'wpSubmit' );
134 # Handle our many different possible input types.
135 $ids = $request->getVal( 'ids' );
136 if ( !is_null( $ids ) ) {
137 # Allow CSV, for backwards compatibility, or a single ID for show/hide links
138 $this->ids
= explode( ',', $ids );
141 $this->ids
= array_keys( $request->getArray( 'ids', [] ) );
143 // $this->ids = array_map( 'intval', $this->ids );
144 $this->ids
= array_unique( array_filter( $this->ids
) );
146 $this->typeName
= $request->getVal( 'type' );
147 $this->targetObj
= Title
::newFromText( $request->getText( 'target' ) );
149 # For reviewing deleted files...
150 $this->archiveName
= $request->getVal( 'file' );
151 $this->token
= $request->getVal( 'token' );
152 if ( $this->archiveName
&& $this->targetObj
) {
153 $this->tryShowFile( $this->archiveName
);
158 $this->typeName
= RevisionDeleter
::getCanonicalTypeName( $this->typeName
);
161 if ( !$this->typeName ||
count( $this->ids
) == 0 ) {
162 throw new ErrorPageError( 'revdelete-nooldid-title', 'revdelete-nooldid-text' );
165 # Allow the list type to adjust the passed target
166 $this->targetObj
= RevisionDeleter
::suggestTarget(
172 # We need a target page!
173 if ( $this->targetObj
=== null ) {
174 $output->addWikiMsg( 'undelete-header' );
179 $this->typeLabels
= self
::$UILabels[$this->typeName
];
180 $list = $this->getList();
182 $this->mIsAllowed
= $user->isAllowed( RevisionDeleter
::getRestriction( $this->typeName
) );
183 $canViewSuppressedOnly = $this->getUser()->isAllowed( 'viewsuppressed' ) &&
184 !$this->getUser()->isAllowed( 'suppressrevision' );
185 $pageIsSuppressed = $list->areAnySuppressed();
186 $this->mIsAllowed
= $this->mIsAllowed
&& !( $canViewSuppressedOnly && $pageIsSuppressed );
188 $this->otherReason
= $request->getVal( 'wpReason' );
189 # Give a link to the logs/hist for this page
190 $this->showConvenienceLinks();
192 # Initialise checkboxes
194 # Messages: revdelete-hide-text, revdelete-hide-image, revdelete-hide-name
195 [ $this->typeLabels
['check-label'], 'wpHidePrimary',
196 RevisionDeleter
::getRevdelConstant( $this->typeName
)
198 [ 'revdelete-hide-comment', 'wpHideComment', Revision
::DELETED_COMMENT
],
199 [ 'revdelete-hide-user', 'wpHideUser', Revision
::DELETED_USER
]
201 if ( $user->isAllowed( 'suppressrevision' ) ) {
202 $this->checks
[] = [ 'revdelete-hide-restricted',
203 'wpHideRestricted', Revision
::DELETED_RESTRICTED
];
206 # Either submit or create our form
207 if ( $this->mIsAllowed
&& $this->submitClicked
) {
208 $this->submit( $request );
213 $qc = $this->getLogQueryCond();
214 # Show relevant lines from the deletion log
215 $deleteLogPage = new LogPage( 'delete' );
216 $output->addHTML( "<h2>" . $deleteLogPage->getName()->escaped() . "</h2>\n" );
217 LogEventsList
::showLogExtract(
222 [ 'lim' => 25, 'conds' => $qc, 'useMaster' => $this->wasSaved
]
224 # Show relevant lines from the suppression log
225 if ( $user->isAllowed( 'suppressionlog' ) ) {
226 $suppressLogPage = new LogPage( 'suppress' );
227 $output->addHTML( "<h2>" . $suppressLogPage->getName()->escaped() . "</h2>\n" );
228 LogEventsList
::showLogExtract(
233 [ 'lim' => 25, 'conds' => $qc, 'useMaster' => $this->wasSaved
]
239 * Show some useful links in the subtitle
241 protected function showConvenienceLinks() {
242 # Give a link to the logs/hist for this page
243 if ( $this->targetObj
) {
244 // Also set header tabs to be for the target.
245 $this->getSkin()->setRelevantTitle( $this->targetObj
);
248 $links[] = Linker
::linkKnown(
249 SpecialPage
::getTitleFor( 'Log' ),
250 $this->msg( 'viewpagelogs' )->escaped(),
252 [ 'page' => $this->targetObj
->getPrefixedText() ]
254 if ( !$this->targetObj
->isSpecialPage() ) {
255 # Give a link to the page history
256 $links[] = Linker
::linkKnown(
258 $this->msg( 'pagehist' )->escaped(),
260 [ 'action' => 'history' ]
262 # Link to deleted edits
263 if ( $this->getUser()->isAllowed( 'undelete' ) ) {
264 $undelete = SpecialPage
::getTitleFor( 'Undelete' );
265 $links[] = Linker
::linkKnown(
267 $this->msg( 'deletedhist' )->escaped(),
269 [ 'target' => $this->targetObj
->getPrefixedDBkey() ]
273 # Logs themselves don't have histories or archived revisions
274 $this->getOutput()->addSubtitle( $this->getLanguage()->pipeList( $links ) );
279 * Get the condition used for fetching log snippets
282 protected function getLogQueryCond() {
284 // Revision delete logs for these item
285 $conds['log_type'] = [ 'delete', 'suppress' ];
286 $conds['log_action'] = $this->getList()->getLogAction();
287 $conds['ls_field'] = RevisionDeleter
::getRelationType( $this->typeName
);
288 $conds['ls_value'] = $this->ids
;
294 * Show a deleted file version requested by the visitor.
295 * @todo Mostly copied from Special:Undelete. Refactor.
296 * @param string $archiveName
297 * @throws MWException
298 * @throws PermissionsError
300 protected function tryShowFile( $archiveName ) {
301 $repo = RepoGroup
::singleton()->getLocalRepo();
302 $oimage = $repo->newFromArchiveName( $this->targetObj
, $archiveName );
304 // Check if user is allowed to see this file
305 if ( !$oimage->exists() ) {
306 $this->getOutput()->addWikiMsg( 'revdelete-no-file' );
310 $user = $this->getUser();
311 if ( !$oimage->userCan( File
::DELETED_FILE
, $user ) ) {
312 if ( $oimage->isDeleted( File
::DELETED_RESTRICTED
) ) {
313 throw new PermissionsError( 'suppressrevision' );
315 throw new PermissionsError( 'deletedtext' );
318 if ( !$user->matchEditToken( $this->token
, $archiveName ) ) {
319 $lang = $this->getLanguage();
320 $this->getOutput()->addWikiMsg( 'revdelete-show-file-confirm',
321 $this->targetObj
->getText(),
322 $lang->userDate( $oimage->getTimestamp(), $user ),
323 $lang->userTime( $oimage->getTimestamp(), $user ) );
324 $this->getOutput()->addHTML(
325 Xml
::openElement( 'form', [
327 'action' => $this->getPageTitle()->getLocalURL( [
328 'target' => $this->targetObj
->getPrefixedDBkey(),
329 'file' => $archiveName,
330 'token' => $user->getEditToken( $archiveName ),
334 Xml
::submitButton( $this->msg( 'revdelete-show-file-submit' )->text() ) .
340 $this->getOutput()->disable();
341 # We mustn't allow the output to be CDN cached, otherwise
342 # if an admin previews a deleted image, and it's cached, then
343 # a user without appropriate permissions can toddle off and
344 # nab the image, and CDN will serve it
345 $this->getRequest()->response()->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
346 $this->getRequest()->response()->header(
347 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate'
349 $this->getRequest()->response()->header( 'Pragma: no-cache' );
351 $key = $oimage->getStorageKey();
352 $path = $repo->getZonePath( 'deleted' ) . '/' . $repo->getDeletedHashPath( $key ) . $key;
353 $repo->streamFile( $path );
357 * Get the list object for this request
360 protected function getList() {
361 if ( is_null( $this->revDelList
) ) {
362 $this->revDelList
= RevisionDeleter
::createList(
363 $this->typeName
, $this->getContext(), $this->targetObj
, $this->ids
367 return $this->revDelList
;
371 * Show a list of items that we will operate on, and show a form with checkboxes
372 * which will allow the user to choose new visibility settings.
374 protected function showForm() {
377 // Messages: revdelete-selected-text, revdelete-selected-file, logdelete-selected
378 $out = $this->getOutput();
379 $out->wrapWikiMsg( "<strong>$1</strong>", [ $this->typeLabels
['selected'],
380 $this->getLanguage()->formatNum( count( $this->ids
) ), $this->targetObj
->getPrefixedText() ] );
382 $this->addHelpLink( 'Help:RevisionDelete' );
383 $out->addHTML( "<ul>" );
387 $list = $this->getList();
388 // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
389 for ( $list->reset(); $list->current(); $list->next() ) {
390 // @codingStandardsIgnoreEnd
391 $item = $list->current();
393 if ( !$item->canView() ) {
394 if ( !$this->submitClicked
) {
395 throw new PermissionsError( 'suppressrevision' );
397 $userAllowed = false;
401 $out->addHTML( $item->getHTML() );
404 if ( !$numRevisions ) {
405 throw new ErrorPageError( 'revdelete-nooldid-title', 'revdelete-nooldid-text' );
408 $out->addHTML( "</ul>" );
410 $this->addUsageText();
412 // Normal sysops can always see what they did, but can't always change it
413 if ( !$userAllowed ) {
417 // Show form if the user can submit
418 if ( $this->mIsAllowed
) {
419 $out->addModuleStyles( 'mediawiki.special' );
421 $form = Xml
::openElement( 'form', [ 'method' => 'post',
422 'action' => $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] ),
423 'id' => 'mw-revdel-form-revisions' ] ) .
424 Xml
::fieldset( $this->msg( 'revdelete-legend' )->text() ) .
425 $this->buildCheckBoxes() .
426 Xml
::openElement( 'table' ) .
428 '<td class="mw-label">' .
429 Xml
::label( $this->msg( 'revdelete-log' )->text(), 'wpRevDeleteReasonList' ) .
431 '<td class="mw-input">' .
432 Xml
::listDropDown( 'wpRevDeleteReasonList',
433 $this->msg( 'revdelete-reason-dropdown' )->inContentLanguage()->text(),
434 $this->msg( 'revdelete-reasonotherlist' )->inContentLanguage()->text(),
435 $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' ), 'wpReasonDropDown'
439 '<td class="mw-label">' .
440 Xml
::label( $this->msg( 'revdelete-otherreason' )->text(), 'wpReason' ) .
442 '<td class="mw-input">' .
447 [ 'id' => 'wpReason', 'maxlength' => 100 ]
452 '<td class="mw-submit">' .
453 Xml
::submitButton( $this->msg( 'revdelete-submit', $numRevisions )->text(),
454 [ 'name' => 'wpSubmit' ] ) .
457 Xml
::closeElement( 'table' ) .
458 Html
::hidden( 'wpEditToken', $this->getUser()->getEditToken() ) .
459 Html
::hidden( 'target', $this->targetObj
->getPrefixedText() ) .
460 Html
::hidden( 'type', $this->typeName
) .
461 Html
::hidden( 'ids', implode( ',', $this->ids
) ) .
462 Xml
::closeElement( 'fieldset' ) . "\n" .
463 Xml
::closeElement( 'form' ) . "\n";
464 // Show link to edit the dropdown reasons
465 if ( $this->getUser()->isAllowed( 'editinterface' ) ) {
466 $link = Linker
::linkKnown(
467 $this->msg( 'revdelete-reason-dropdown' )->inContentLanguage()->getTitle(),
468 $this->msg( 'revdelete-edit-reasonlist' )->escaped(),
470 [ 'action' => 'edit' ]
472 $form .= Xml
::tags( 'p', [ 'class' => 'mw-revdel-editreasons' ], $link ) . "\n";
477 $out->addHTML( $form );
481 * Show some introductory text
482 * @todo FIXME: Wikimedia-specific policy text
484 protected function addUsageText() {
485 // Messages: revdelete-text-text, revdelete-text-file, logdelete-text
486 $this->getOutput()->wrapWikiMsg(
487 "<strong>$1</strong>\n$2", $this->typeLabels
['text'],
488 'revdelete-text-others'
491 if ( $this->getUser()->isAllowed( 'suppressrevision' ) ) {
492 $this->getOutput()->addWikiMsg( 'revdelete-suppress-text' );
495 if ( $this->mIsAllowed
) {
496 $this->getOutput()->addWikiMsg( 'revdelete-confirm' );
501 * @return string HTML
503 protected function buildCheckBoxes() {
505 // If there is just one item, use checkboxes
506 $list = $this->getList();
507 if ( $list->length() == 1 ) {
509 $bitfield = $list->current()->getBits(); // existing field
511 if ( $this->submitClicked
) {
512 $bitfield = RevisionDeleter
::extractBitfield( $this->extractBitParams(), $bitfield );
515 foreach ( $this->checks
as $item ) {
516 // Messages: revdelete-hide-text, revdelete-hide-image, revdelete-hide-name,
517 // revdelete-hide-comment, revdelete-hide-user, revdelete-hide-restricted
518 list( $message, $name, $field ) = $item;
519 $innerHTML = Xml
::checkLabel(
520 $this->msg( $message )->text(),
526 if ( $field == Revision
::DELETED_RESTRICTED
) {
527 $innerHTML = "<b>$innerHTML</b>";
530 $line = Xml
::tags( 'td', [ 'class' => 'mw-input' ], $innerHTML );
531 $html .= "<tr>$line</tr>\n";
534 // Otherwise, use tri-state radios
536 $html .= '<th class="mw-revdel-checkbox">'
537 . $this->msg( 'revdelete-radio-same' )->escaped() . '</th>';
538 $html .= '<th class="mw-revdel-checkbox">'
539 . $this->msg( 'revdelete-radio-unset' )->escaped() . '</th>';
540 $html .= '<th class="mw-revdel-checkbox">'
541 . $this->msg( 'revdelete-radio-set' )->escaped() . '</th>';
542 $html .= "<th></th></tr>\n";
543 foreach ( $this->checks
as $item ) {
544 // Messages: revdelete-hide-text, revdelete-hide-image, revdelete-hide-name,
545 // revdelete-hide-comment, revdelete-hide-user, revdelete-hide-restricted
546 list( $message, $name, $field ) = $item;
547 // If there are several items, use third state by default...
548 if ( $this->submitClicked
) {
549 $selected = $this->getRequest()->getInt( $name, 0 /* unchecked */ );
551 $selected = -1; // use existing field
553 $line = '<td class="mw-revdel-checkbox">' . Xml
::radio( $name, -1, $selected == -1 ) . '</td>';
554 $line .= '<td class="mw-revdel-checkbox">' . Xml
::radio( $name, 0, $selected == 0 ) . '</td>';
555 $line .= '<td class="mw-revdel-checkbox">' . Xml
::radio( $name, 1, $selected == 1 ) . '</td>';
556 $label = $this->msg( $message )->escaped();
557 if ( $field == Revision
::DELETED_RESTRICTED
) {
558 $label = "<b>$label</b>";
560 $line .= "<td>$label</td>";
561 $html .= "<tr>$line</tr>\n";
571 * UI entry point for form submission.
572 * @throws PermissionsError
575 protected function submit() {
576 # Check edit token on submission
577 $token = $this->getRequest()->getVal( 'wpEditToken' );
578 if ( $this->submitClicked
&& !$this->getUser()->matchEditToken( $token ) ) {
579 $this->getOutput()->addWikiMsg( 'sessionfailure' );
583 $bitParams = $this->extractBitParams();
585 $listReason = $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' );
586 $comment = $listReason;
587 if ( $comment === 'other' ) {
588 $comment = $this->otherReason
;
589 } elseif ( $this->otherReason
!== '' ) {
590 // Entry from drop down menu + additional comment
591 $comment .= $this->msg( 'colon-separator' )->inContentLanguage()->text()
592 . $this->otherReason
;
594 # Can the user set this field?
595 if ( $bitParams[Revision
::DELETED_RESTRICTED
] == 1
596 && !$this->getUser()->isAllowed( 'suppressrevision' )
598 throw new PermissionsError( 'suppressrevision' );
600 # If the save went through, go to success message...
601 $status = $this->save( $bitParams, $comment );
602 if ( $status->isGood() ) {
607 # ...otherwise, bounce back to form...
608 $this->failure( $status );
615 * Report that the submit operation succeeded
617 protected function success() {
618 // Messages: revdelete-success, logdelete-success
619 $this->getOutput()->setPageTitle( $this->msg( 'actioncomplete' ) );
620 $this->getOutput()->wrapWikiMsg(
621 "<div class=\"successbox\">\n$1\n</div>",
622 $this->typeLabels
['success']
624 $this->wasSaved
= true;
625 $this->revDelList
->reloadFromMaster();
630 * Report that the submit operation failed
631 * @param Status $status
633 protected function failure( $status ) {
634 // Messages: revdelete-failure, logdelete-failure
635 $this->getOutput()->setPageTitle( $this->msg( 'actionfailed' ) );
636 $this->getOutput()->addWikiText( '<div class="errorbox">' .
637 $status->getWikiText( $this->typeLabels
['failure'] ) .
644 * Put together an array that contains -1, 0, or the *_deleted const for each bit
648 protected function extractBitParams() {
650 foreach ( $this->checks
as $item ) {
651 list( /* message */, $name, $field ) = $item;
652 $val = $this->getRequest()->getInt( $name, 0 /* unchecked */ );
653 if ( $val < -1 ||
$val > 1 ) {
654 $val = -1; // -1 for existing value
656 $bitfield[$field] = $val;
658 if ( !isset( $bitfield[Revision
::DELETED_RESTRICTED
] ) ) {
659 $bitfield[Revision
::DELETED_RESTRICTED
] = 0;
666 * Do the write operations. Simple wrapper for RevDel*List::setVisibility().
667 * @param array $bitPars ExtractBitParams() bitfield array
668 * @param string $reason
671 protected function save( array $bitPars, $reason ) {
672 return $this->getList()->setVisibility(
673 [ 'value' => $bitPars, 'comment' => $reason ]
677 protected function getGroupName() {