X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiDelete.php;h=7766acd3636966ce703b3ef639ae93ca89d37e09;hb=802c199d0bd80ff0f4d730c61fd58cbf08a52d8d;hp=993c23e5824440de674d29ad1e96b7610b31578e;hpb=f43fa6f4f0e2cb60b8543daad661b48a3e0653a9;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiDelete.php b/includes/api/ApiDelete.php index 993c23e582..7766acd363 100644 --- a/includes/api/ApiDelete.php +++ b/includes/api/ApiDelete.php @@ -44,19 +44,18 @@ class ApiDelete extends ApiBase { $params = $this->extractRequestParams(); $pageObj = $this->getTitleOrPageId( $params, 'fromdbmaster' ); - if ( !$pageObj->exists() ) { - $this->dieUsageMsg( 'notanarticle' ); + $titleObj = $pageObj->getTitle(); + if ( !$pageObj->exists() && + !( $titleObj->getNamespace() == NS_FILE && self::canDeleteFile( $pageObj->getFile() ) ) + ) { + $this->dieWithError( 'apierror-missingtitle' ); } - $titleObj = $pageObj->getTitle(); $reason = $params['reason']; $user = $this->getUser(); // Check that the user is allowed to carry out the deletion - $errors = $titleObj->getUserPermissionsErrors( 'delete', $user ); - if ( count( $errors ) ) { - $this->dieUsageMsg( $errors[0] ); - } + $this->checkTitleUserPermissions( $titleObj, 'delete' ); // If change tagging was requested, check that the user is allowed to tag, // and the tags are valid @@ -80,9 +79,6 @@ class ApiDelete extends ApiBase { $status = self::delete( $pageObj, $user, $reason, $params['tags'] ); } - if ( is_array( $status ) ) { - $this->dieUsageMsg( $status[0] ); - } if ( !$status->isGood() ) { $this->dieStatus( $status ); } @@ -110,9 +106,9 @@ class ApiDelete extends ApiBase { * * @param Page|WikiPage $page Page or WikiPage object to work on * @param User $user User doing the action - * @param string|null $reason Reason for the deletion. Autogenerated if null + * @param string|null &$reason Reason for the deletion. Autogenerated if null * @param array $tags Tags to tag the deletion with - * @return Status|array + * @return Status */ protected static function delete( Page $page, User $user, &$reason = null, $tags = [] ) { $title = $page->getTitle(); @@ -124,7 +120,7 @@ class ApiDelete extends ApiBase { $hasHistory = false; $reason = $page->getAutoDeleteReason( $hasHistory ); if ( $reason === false ) { - return [ [ 'cannotdelete', $title->getPrefixedText() ] ]; + return Status::newFatal( 'cannotdelete', $title->getPrefixedText() ); } } @@ -134,14 +130,22 @@ class ApiDelete extends ApiBase { return $page->doDeleteArticleReal( $reason, false, 0, true, $error, $user, $tags ); } + /** + * @param File $file + * @return bool + */ + protected static function canDeleteFile( File $file ) { + return $file->exists() && $file->isLocal() && !$file->getRedirected(); + } + /** * @param Page $page Object to work on * @param User $user User doing the action * @param string $oldimage Archive name - * @param string $reason Reason for the deletion. Autogenerated if null. + * @param string &$reason Reason for the deletion. Autogenerated if null. * @param bool $suppress Whether to mark all deleted versions as restricted * @param array $tags Tags to tag the deletion with - * @return Status|array + * @return Status */ protected static function deleteFile( Page $page, User $user, $oldimage, &$reason = null, $suppress = false, $tags = [] @@ -149,17 +153,17 @@ class ApiDelete extends ApiBase { $title = $page->getTitle(); $file = $page->getFile(); - if ( !$file->exists() || !$file->isLocal() || $file->getRedirected() ) { + if ( !self::canDeleteFile( $file ) ) { return self::delete( $page, $user, $reason, $tags ); } if ( $oldimage ) { if ( !FileDeleteForm::isValidOldSpec( $oldimage ) ) { - return [ [ 'invalidoldimage' ] ]; + return Status::newFatal( 'invalidoldimage' ); } $oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName( $title, $oldimage ); if ( !$oldfile->exists() || !$oldfile->isLocal() || $oldfile->getRedirected() ) { - return [ [ 'nodeleteablefile' ] ]; + return Status::newFatal( 'nodeleteablefile' ); } } @@ -224,6 +228,6 @@ class ApiDelete extends ApiBase { } public function getHelpUrls() { - return 'https://www.mediawiki.org/wiki/API:Delete'; + return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Delete'; } }