X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialPageLanguage.php;h=8546a08d89c877492e46b455ceac9f6c5d86d65e;hb=d19826aa35b206847a568a4b2c1c9ffaa615fca5;hp=61b6a8cd9276e300c770de1ac440c1cb3a3c9f10;hpb=1dd2e07276e1deaf431ddb01c92111038f9e2cd6;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialPageLanguage.php b/includes/specials/SpecialPageLanguage.php index 61b6a8cd92..a68f08fd9a 100644 --- a/includes/specials/SpecialPageLanguage.php +++ b/includes/specials/SpecialPageLanguage.php @@ -49,12 +49,20 @@ class SpecialPageLanguage extends FormSpecialPage { protected function getFormFields() { // Get default from the subpage of Special page $defaultName = $this->par; + $title = $defaultName ? Title::newFromText( $defaultName ) : null; + if ( $title ) { + $defaultPageLanguage = + ContentHandler::getForTitle( $title )->getPageLanguage( $title ); + $hasCustomLanguageSet = !$defaultPageLanguage->equals( $title->getPageLanguage() ); + } else { + $hasCustomLanguageSet = false; + } $page = []; $page['pagename'] = [ 'type' => 'title', 'label-message' => 'pagelang-name', - 'default' => $defaultName, + 'default' => $title ? $title->getPrefixedText() : $defaultName, 'autofocus' => $defaultName === null, 'exists' => true, ]; @@ -68,7 +76,7 @@ class SpecialPageLanguage extends FormSpecialPage { 'id' => 'mw-pl-options', 'type' => 'radio', 'options' => $selectoptions, - 'default' => 1 + 'default' => $hasCustomLanguageSet ? 2 : 1 ]; // Building a language selector @@ -86,7 +94,15 @@ class SpecialPageLanguage extends FormSpecialPage { 'type' => 'select', 'options' => $options, 'label-message' => 'pagelang-language', - 'default' => $this->getConfig()->get( 'LanguageCode' ), + 'default' => $title ? + $title->getPageLanguage()->getCode() : + $this->getConfig()->get( 'LanguageCode' ), + ]; + + // Allow user to enter a comment explaining the change + $page['reason'] = [ + 'type' => 'text', + 'label-message' => 'pagelang-reason' ]; return $page; @@ -111,68 +127,120 @@ class SpecialPageLanguage extends FormSpecialPage { /** * * @param array $data - * @return bool + * @return Status */ public function onSubmit( array $data ) { - $title = Title::newFromText( $data['pagename'] ); + $pageName = $data['pagename']; + + // Check if user wants to use default language + if ( $data['selectoptions'] == 1 ) { + $newLanguage = 'default'; + } else { + $newLanguage = $data['language']; + } - // Check if title is valid - if ( !$title ) { - return false; + try { + $title = Title::newFromTextThrow( $pageName ); + } catch ( MalformedTitleException $ex ) { + return Status::newFatal( $ex->getMessageObject() ); } + // Check permissions and make sure the user has permission to edit the page + $errors = $title->getUserPermissionsErrors( 'edit', $this->getUser() ); + + if ( $errors ) { + $out = $this->getOutput(); + $wikitext = $out->formatPermissionsErrorMessage( $errors ); + // Hack to get our wikitext parsed + return Status::newFatal( new RawMessage( '$1', [ $wikitext ] ) ); + } + + // Url to redirect to after the operation + $this->goToUrl = $title->getFullUrlForRedirect( + $title->isRedirect() ? [ 'redirect' => 'no' ] : [] + ); + + return self::changePageLanguage( + $this->getContext(), + $title, + $newLanguage, + $data['reason'] === null ? '' : $data['reason'] + ); + } + + /** + * @param IContextSource $context + * @param Title $title + * @param string $newLanguage Language code + * @param string $reason Reason for the change + * @param array $tags Change tags to apply to the log entry + * @return Status + */ + public static function changePageLanguage( IContextSource $context, Title $title, + $newLanguage, $reason, array $tags = [] ) { // Get the default language for the wiki - $defLang = $this->getConfig()->get( 'LanguageCode' ); + $defLang = $context->getConfig()->get( 'LanguageCode' ); $pageId = $title->getArticleID(); // Check if article exists if ( !$pageId ) { - return false; + return Status::newFatal( + 'pagelang-nonexistent-page', + wfEscapeWikiText( $title->getPrefixedText() ) + ); } // Load the page language from DB $dbw = wfGetDB( DB_MASTER ); - $langOld = $dbw->selectField( + $oldLanguage = $dbw->selectField( 'page', 'page_lang', [ 'page_id' => $pageId ], __METHOD__ ); - // Url to redirect to after the operation - $this->goToUrl = $title->getFullURL(); - - // Check if user wants to use default language - if ( $data['selectoptions'] == 1 ) { - $langNew = null; - } else { - $langNew = $data['language']; + // Check if user wants to use the default language + if ( $newLanguage === 'default' ) { + $newLanguage = null; } // No change in language - if ( $langNew === $langOld ) { - return false; + if ( $newLanguage === $oldLanguage ) { + // Check if old language does not exist + if ( !$oldLanguage ) { + return Status::newFatal( ApiMessage::create( + [ + 'pagelang-unchanged-language-default', + wfEscapeWikiText( $title->getPrefixedText() ) + ], + 'pagelang-unchanged-language' + ) ); + } + return Status::newFatal( + 'pagelang-unchanged-language', + wfEscapeWikiText( $title->getPrefixedText() ), + $oldLanguage + ); } // Hardcoded [def] if the language is set to null - $logOld = $langOld ? $langOld : $defLang . '[def]'; - $logNew = $langNew ? $langNew : $defLang . '[def]'; + $logOld = $oldLanguage ? $oldLanguage : $defLang . '[def]'; + $logNew = $newLanguage ? $newLanguage : $defLang . '[def]'; // Writing new page language to database - $dbw = wfGetDB( DB_MASTER ); $dbw->update( 'page', - [ 'page_lang' => $langNew ], + [ 'page_lang' => $newLanguage ], [ 'page_id' => $pageId, - 'page_lang' => $langOld + 'page_lang' => $oldLanguage ], __METHOD__ ); if ( !$dbw->affectedRows() ) { - return false; + return Status::newFatal( 'pagelang-db-failed' ); } // Logging change of language @@ -181,9 +249,11 @@ class SpecialPageLanguage extends FormSpecialPage { '5::newlanguage' => $logNew ]; $entry = new ManualLogEntry( 'pagelang', 'pagelang' ); - $entry->setPerformer( $this->getUser() ); + $entry->setPerformer( $context->getUser() ); $entry->setTarget( $title ); $entry->setParameters( $logParams ); + $entry->setComment( $reason ); + $entry->setTags( $tags ); $logid = $entry->insert(); $entry->publish( $logid ); @@ -191,7 +261,11 @@ class SpecialPageLanguage extends FormSpecialPage { // Force re-render so that language-based content (parser functions etc.) gets updated $title->invalidateCache(); - return true; + return Status::newGood( (object)[ + 'oldLanguage' => $logOld, + 'newLanguage' => $logNew, + 'logId' => $logid, + ] ); } public function onSuccess() {