Merge "Convert file delete to use OOUI"
[lhc/web/wiklou.git] / includes / FileDeleteForm.php
1 <?php
2 /**
3 * File deletion user interface.
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 * @author Rob Church <robchur@gmail.com>
22 * @ingroup Media
23 */
24 use MediaWiki\MediaWikiServices;
25
26 /**
27 * File deletion user interface
28 *
29 * @ingroup Media
30 */
31 class FileDeleteForm {
32
33 /**
34 * @var Title
35 */
36 private $title = null;
37
38 /**
39 * @var File
40 */
41 private $file = null;
42
43 /**
44 * @var File
45 */
46 private $oldfile = null;
47 private $oldimage = '';
48
49 /**
50 * @param File $file File object we're deleting
51 */
52 public function __construct( $file ) {
53 $this->title = $file->getTitle();
54 $this->file = $file;
55 }
56
57 /**
58 * Fulfil the request; shows the form or deletes the file,
59 * pending authentication, confirmation, etc.
60 */
61 public function execute() {
62 global $wgOut, $wgRequest, $wgUser, $wgUploadMaintenance;
63
64 $permissionErrors = $this->title->getUserPermissionsErrors( 'delete', $wgUser );
65 if ( count( $permissionErrors ) ) {
66 throw new PermissionsError( 'delete', $permissionErrors );
67 }
68
69 if ( wfReadOnly() ) {
70 throw new ReadOnlyError;
71 }
72
73 if ( $wgUploadMaintenance ) {
74 throw new ErrorPageError( 'filedelete-maintenance-title', 'filedelete-maintenance' );
75 }
76
77 $this->setHeaders();
78
79 $this->oldimage = $wgRequest->getText( 'oldimage', false );
80 $token = $wgRequest->getText( 'wpEditToken' );
81 # Flag to hide all contents of the archived revisions
82 $suppress = $wgRequest->getCheck( 'wpSuppress' ) && $wgUser->isAllowed( 'suppressrevision' );
83
84 if ( $this->oldimage ) {
85 $this->oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName(
86 $this->title,
87 $this->oldimage
88 );
89 }
90
91 if ( !self::haveDeletableFile( $this->file, $this->oldfile, $this->oldimage ) ) {
92 $wgOut->addHTML( $this->prepareMessage( 'filedelete-nofile' ) );
93 $wgOut->addReturnTo( $this->title );
94 return;
95 }
96
97 // Perform the deletion if appropriate
98 if ( $wgRequest->wasPosted() && $wgUser->matchEditToken( $token, $this->oldimage ) ) {
99 $deleteReasonList = $wgRequest->getText( 'wpDeleteReasonList' );
100 $deleteReason = $wgRequest->getText( 'wpReason' );
101
102 if ( $deleteReasonList == 'other' ) {
103 $reason = $deleteReason;
104 } elseif ( $deleteReason != '' ) {
105 // Entry from drop down menu + additional comment
106 $reason = $deleteReasonList . wfMessage( 'colon-separator' )
107 ->inContentLanguage()->text() . $deleteReason;
108 } else {
109 $reason = $deleteReasonList;
110 }
111
112 $status = self::doDelete(
113 $this->title,
114 $this->file,
115 $this->oldimage,
116 $reason,
117 $suppress,
118 $wgUser
119 );
120
121 if ( !$status->isGood() ) {
122 $wgOut->addHTML( '<h2>' . $this->prepareMessage( 'filedeleteerror-short' ) . "</h2>\n" );
123 $wgOut->addWikiText( '<div class="error">' .
124 $status->getWikiText( 'filedeleteerror-short', 'filedeleteerror-long' )
125 . '</div>' );
126 }
127 if ( $status->isOK() ) {
128 $wgOut->setPageTitle( wfMessage( 'actioncomplete' ) );
129 $wgOut->addHTML( $this->prepareMessage( 'filedelete-success' ) );
130 // Return to the main page if we just deleted all versions of the
131 // file, otherwise go back to the description page
132 $wgOut->addReturnTo( $this->oldimage ? $this->title : Title::newMainPage() );
133
134 WatchAction::doWatchOrUnwatch( $wgRequest->getCheck( 'wpWatch' ), $this->title, $wgUser );
135 }
136 return;
137 }
138
139 $this->showForm();
140 $this->showLogEntries();
141 }
142
143 /**
144 * Really delete the file
145 *
146 * @param Title &$title
147 * @param File &$file
148 * @param string &$oldimage Archive name
149 * @param string $reason Reason of the deletion
150 * @param bool $suppress Whether to mark all deleted versions as restricted
151 * @param User|null $user User object performing the request
152 * @param array $tags Tags to apply to the deletion action
153 * @throws MWException
154 * @return Status
155 */
156 public static function doDelete( &$title, &$file, &$oldimage, $reason,
157 $suppress, User $user = null, $tags = []
158 ) {
159 if ( $user === null ) {
160 global $wgUser;
161 $user = $wgUser;
162 }
163
164 if ( $oldimage ) {
165 $page = null;
166 $status = $file->deleteOld( $oldimage, $reason, $suppress, $user );
167 if ( $status->ok ) {
168 // Need to do a log item
169 $logComment = wfMessage( 'deletedrevision', $oldimage )->inContentLanguage()->text();
170 if ( trim( $reason ) != '' ) {
171 $logComment .= wfMessage( 'colon-separator' )
172 ->inContentLanguage()->text() . $reason;
173 }
174
175 $logtype = $suppress ? 'suppress' : 'delete';
176
177 $logEntry = new ManualLogEntry( $logtype, 'delete' );
178 $logEntry->setPerformer( $user );
179 $logEntry->setTarget( $title );
180 $logEntry->setComment( $logComment );
181 $logEntry->setTags( $tags );
182 $logid = $logEntry->insert();
183 $logEntry->publish( $logid );
184
185 $status->value = $logid;
186 }
187 } else {
188 $status = Status::newFatal( 'cannotdelete',
189 wfEscapeWikiText( $title->getPrefixedText() )
190 );
191 $page = WikiPage::factory( $title );
192 $dbw = wfGetDB( DB_MASTER );
193 $dbw->startAtomic( __METHOD__ );
194 // delete the associated article first
195 $error = '';
196 $deleteStatus = $page->doDeleteArticleReal( $reason, $suppress, 0, false, $error,
197 $user, $tags );
198 // doDeleteArticleReal() returns a non-fatal error status if the page
199 // or revision is missing, so check for isOK() rather than isGood()
200 if ( $deleteStatus->isOK() ) {
201 $status = $file->delete( $reason, $suppress, $user );
202 if ( $status->isOK() ) {
203 if ( $deleteStatus->value === null ) {
204 // No log ID from doDeleteArticleReal(), probably
205 // because the page/revision didn't exist, so create
206 // one here.
207 $logtype = $suppress ? 'suppress' : 'delete';
208 $logEntry = new ManualLogEntry( $logtype, 'delete' );
209 $logEntry->setPerformer( $user );
210 $logEntry->setTarget( clone $title );
211 $logEntry->setComment( $reason );
212 $logEntry->setTags( $tags );
213 $logid = $logEntry->insert();
214 $dbw->onTransactionPreCommitOrIdle(
215 function () use ( $logEntry, $logid ) {
216 $logEntry->publish( $logid );
217 },
218 __METHOD__
219 );
220 $status->value = $logid;
221 } else {
222 $status->value = $deleteStatus->value; // log id
223 }
224 $dbw->endAtomic( __METHOD__ );
225 } else {
226 // Page deleted but file still there? rollback page delete
227 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
228 $lbFactory->rollbackMasterChanges( __METHOD__ );
229 }
230 } else {
231 // Done; nothing changed
232 $dbw->endAtomic( __METHOD__ );
233 }
234 }
235
236 if ( $status->isOK() ) {
237 Hooks::run( 'FileDeleteComplete', [ &$file, &$oldimage, &$page, &$user, &$reason ] );
238 }
239
240 return $status;
241 }
242
243 /**
244 * Show the confirmation form
245 */
246 private function showForm() {
247 global $wgOut, $wgUser, $wgRequest;
248
249 $conf = RequestContext::getMain()->getConfig();
250 $oldCommentSchema = $conf->get( 'CommentTableSchemaMigrationStage' ) === MIGRATION_OLD;
251
252 $wgOut->addModules( 'mediawiki.action.delete.file' );
253
254 $checkWatch = $wgUser->getBoolOption( 'watchdeletion' ) || $wgUser->isWatched( $this->title );
255
256 $wgOut->enableOOUI();
257
258 $options = Xml::listDropDownOptions(
259 $wgOut->msg( 'filedelete-reason-dropdown' )->inContentLanguage()->text(),
260 [ 'other' => $wgOut->msg( 'filedelete-reason-otherlist' )->inContentLanguage()->text() ]
261 );
262 $options = Xml::listDropDownOptionsOoui( $options );
263
264 $fields[] = new OOUI\LabelWidget( [ 'label' => new OOUI\HtmlSnippet(
265 $this->prepareMessage( 'filedelete-intro' ) ) ]
266 );
267
268 $fields[] = new OOUI\FieldLayout(
269 new OOUI\DropdownInputWidget( [
270 'name' => 'wpDeleteReasonList',
271 'inputId' => 'wpDeleteReasonList',
272 'tabIndex' => 1,
273 'infusable' => true,
274 'value' => '',
275 'options' => $options,
276 ] ),
277 [
278 'label' => $wgOut->msg( 'filedelete-comment' )->text(),
279 'align' => 'top',
280 ]
281 );
282
283 // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
284 // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
285 // Unicode codepoints (or 255 UTF-8 bytes for old schema).
286 $fields[] = new OOUI\FieldLayout(
287 new OOUI\TextInputWidget( [
288 'name' => 'wpReason',
289 'inputId' => 'wpReason',
290 'tabIndex' => 2,
291 'maxLength' => $oldCommentSchema ? 255 : CommentStore::COMMENT_CHARACTER_LIMIT,
292 'infusable' => true,
293 'value' => $wgRequest->getText( 'wpReason' ),
294 'autofocus' => true,
295 ] ),
296 [
297 'label' => $wgOut->msg( 'filedelete-otherreason' )->text(),
298 'align' => 'top',
299 ]
300 );
301
302 if ( $wgUser->isAllowed( 'suppressrevision' ) ) {
303 $fields[] = new OOUI\FieldLayout(
304 new OOUI\CheckboxInputWidget( [
305 'name' => 'wpSuppress',
306 'inputId' => 'wpSuppress',
307 'tabIndex' => 3,
308 'selected' => false,
309 ] ),
310 [
311 'label' => $wgOut->msg( 'revdelete-suppress' )->text(),
312 'align' => 'inline',
313 'infusable' => true,
314 ]
315 );
316 }
317
318 if ( $wgUser->isLoggedIn() ) {
319 $fields[] = new OOUI\FieldLayout(
320 new OOUI\CheckboxInputWidget( [
321 'name' => 'wpWatch',
322 'inputId' => 'wpWatch',
323 'tabIndex' => 3,
324 'selected' => $checkWatch,
325 ] ),
326 [
327 'label' => $wgOut->msg( 'watchthis' )->text(),
328 'align' => 'inline',
329 'infusable' => true,
330 ]
331 );
332 }
333
334 $fields[] = new OOUI\FieldLayout(
335 new OOUI\ButtonInputWidget( [
336 'name' => 'mw-filedelete-submit',
337 'inputId' => 'mw-filedelete-submit',
338 'tabIndex' => 4,
339 'value' => $wgOut->msg( 'filedelete-submit' )->text(),
340 'label' => $wgOut->msg( 'filedelete-submit' )->text(),
341 'flags' => [ 'primary', 'destructive' ],
342 'type' => 'submit',
343 ] ),
344 [
345 'align' => 'top',
346 ]
347 );
348
349 $fieldset = new OOUI\FieldsetLayout( [
350 'label' => $wgOut->msg( 'filedelete-legend' )->text(),
351 'items' => $fields,
352 ] );
353
354 $form = new OOUI\FormLayout( [
355 'method' => 'post',
356 'action' => $this->getAction(),
357 'id' => 'mw-img-deleteconfirm',
358 ] );
359 $form->appendContent(
360 $fieldset,
361 new OOUI\HtmlSnippet(
362 Html::hidden( 'wpEditToken', $wgUser->getEditToken( $this->oldimage ) )
363 )
364 );
365
366 $wgOut->addHTML(
367 new OOUI\PanelLayout( [
368 'classes' => [ 'deletepage-wrapper' ],
369 'expanded' => false,
370 'padded' => true,
371 'framed' => true,
372 'content' => $form,
373 ] )
374 );
375
376 if ( $wgUser->isAllowed( 'editinterface' ) ) {
377 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
378 $link = $linkRenderer->makeKnownLink(
379 $wgOut->msg( 'filedelete-reason-dropdown' )->inContentLanguage()->getTitle(),
380 wfMessage( 'filedelete-edit-reasonlist' )->text(),
381 [],
382 [ 'action' => 'edit' ]
383 );
384 $wgOut->addHTML( '<p class="mw-filedelete-editreasons">' . $link . '</p>' );
385 }
386 }
387
388 /**
389 * Show deletion log fragments pertaining to the current file
390 */
391 private function showLogEntries() {
392 global $wgOut;
393 $deleteLogPage = new LogPage( 'delete' );
394 $wgOut->addHTML( '<h2>' . $deleteLogPage->getName()->escaped() . "</h2>\n" );
395 LogEventsList::showLogExtract( $wgOut, 'delete', $this->title );
396 }
397
398 /**
399 * Prepare a message referring to the file being deleted,
400 * showing an appropriate message depending upon whether
401 * it's a current file or an old version
402 *
403 * @param string $message Message base
404 * @return string
405 */
406 private function prepareMessage( $message ) {
407 global $wgLang;
408 if ( $this->oldimage ) {
409 # Message keys used:
410 # 'filedelete-intro-old', 'filedelete-nofile-old', 'filedelete-success-old'
411 return wfMessage(
412 "{$message}-old",
413 wfEscapeWikiText( $this->title->getText() ),
414 $wgLang->date( $this->getTimestamp(), true ),
415 $wgLang->time( $this->getTimestamp(), true ),
416 wfExpandUrl( $this->file->getArchiveUrl( $this->oldimage ), PROTO_CURRENT ) )->parseAsBlock();
417 } else {
418 return wfMessage(
419 $message,
420 wfEscapeWikiText( $this->title->getText() )
421 )->parseAsBlock();
422 }
423 }
424
425 /**
426 * Set headers, titles and other bits
427 */
428 private function setHeaders() {
429 global $wgOut;
430 $wgOut->setPageTitle( wfMessage( 'filedelete', $this->title->getText() ) );
431 $wgOut->setRobotPolicy( 'noindex,nofollow' );
432 $wgOut->addBacklinkSubtitle( $this->title );
433 }
434
435 /**
436 * Is the provided `oldimage` value valid?
437 *
438 * @param string $oldimage
439 * @return bool
440 */
441 public static function isValidOldSpec( $oldimage ) {
442 return strlen( $oldimage ) >= 16
443 && strpos( $oldimage, '/' ) === false
444 && strpos( $oldimage, '\\' ) === false;
445 }
446
447 /**
448 * Could we delete the file specified? If an `oldimage`
449 * value was provided, does it correspond to an
450 * existing, local, old version of this file?
451 *
452 * @param File &$file
453 * @param File &$oldfile
454 * @param File $oldimage
455 * @return bool
456 */
457 public static function haveDeletableFile( &$file, &$oldfile, $oldimage ) {
458 return $oldimage
459 ? $oldfile && $oldfile->exists() && $oldfile->isLocal()
460 : $file && $file->exists() && $file->isLocal();
461 }
462
463 /**
464 * Prepare the form action
465 *
466 * @return string
467 */
468 private function getAction() {
469 $q = [];
470 $q['action'] = 'delete';
471
472 if ( $this->oldimage ) {
473 $q['oldimage'] = $this->oldimage;
474 }
475
476 return $this->title->getLocalURL( $q );
477 }
478
479 /**
480 * Extract the timestamp of the old version
481 *
482 * @return string
483 */
484 private function getTimestamp() {
485 return $this->oldfile->getTimestamp();
486 }
487 }