titleFormatter = $titleFormatter; $this->contentHelper = $helperFactory->newPageContentHelper(); $this->helperFactory = $helperFactory; } private function getRedirectHelper(): PageRedirectHelper { return $this->helperFactory->newPageRedirectHelper( $this->getResponseFactory(), $this->getRouter(), $this->getPath(), $this->getRequest() ); } protected function postValidationSetup() { $this->contentHelper->init( $this->getAuthority(), $this->getValidatedParams() ); } /** * @param PageReference $page * @return string */ private function constructHtmlUrl( PageReference $page ): string { return $this->getRouter()->getRouteUrl( '/v1/page/{title}/html', [ 'title' => $this->titleFormatter->getPrefixedText( $page ) ] ); } /** * @return Response * @throws LocalizedHttpException */ public function run(): Response { $this->contentHelper->checkAccess(); $page = $this->contentHelper->getPageIdentity(); if ( !$page->exists() ) { // We may get here for "known" but non-existing pages, such as // message pages. Since there is no page, we should still return // a 404. See T349677 for discussion. $titleText = $this->contentHelper->getTitleText() ?? '(unknown)'; throw new LocalizedHttpException( MessageValue::new( 'rest-nonexistent-title' ) ->plaintextParams( $titleText ), 404 ); } $redirectHelper = $this->getRedirectHelper(); '@phan-var \MediaWiki\Page\ExistingPageRecord $page'; $redirectResponse = $redirectHelper->createNormalizationRedirectResponseIfNeeded( $page, $this->contentHelper->getTitleText() ); if ( $redirectResponse !== null ) { return $redirectResponse; } $outputMode = $this->getOutputMode(); switch ( $outputMode ) { case 'bare': $body = $this->contentHelper->constructMetadata(); $body['html_url'] = $this->constructHtmlUrl( $page ); break; case 'source': $content = $this->contentHelper->getContent(); $body = $this->contentHelper->constructMetadata(); $body['source'] = $content->getText(); break; default: throw new LogicException( "Unknown HTML type $outputMode" ); } // If param redirect=no is present, that means this page can be a redirect // check for a redirectTargetUrl and send it to the body as `redirect_target` '@phan-var \MediaWiki\Page\ExistingPageRecord $page'; $redirectTargetUrl = $redirectHelper->getWikiRedirectTargetUrl( $page ); if ( $redirectTargetUrl ) { $body['redirect_target'] = $redirectTargetUrl; } $response = $this->getResponseFactory()->createJson( $body ); $this->contentHelper->setCacheControl( $response ); return $response; } /** * Returns an ETag representing a page's source. The ETag assumes a page's source has changed * if the latest revision of a page has been made private, un-readable for another reason, * or a newer revision exists. * @return string|null */ protected function getETag(): ?string { return $this->contentHelper->getETag(); } /** * @return string|null */ protected function getLastModified(): ?string { return $this->contentHelper->getLastModified(); } private function getOutputMode(): string { return $this->getConfig()['format']; } public function needsWriteAccess(): bool { return false; } public function getParamSettings(): array { return $this->contentHelper->getParamSettings(); } /** * @return bool */ protected function hasRepresentation() { return $this->contentHelper->hasContent(); } }