MediaWiki REL1_39
PageDataRequestHandler.php
Go to the documentation of this file.
1<?php
24
32
45 public function canHandleRequest( $subPage, WebRequest $request ) {
46 if ( $subPage === '' || $subPage === null ) {
47 return $request->getText( 'target' ) !== '';
48 }
49
50 $parts = explode( '/', $subPage, 2 );
51 $slot = $parts[0];
52 $title = $parts[1] ?? '';
53 return ( $slot === 'main' || $slot === '' ) && $title !== '';
54 }
55
71 public function handleRequest( $subPage, WebRequest $request, OutputPage $output ) {
72 // No matter what: The response is always public
73 $output->getRequest()->response()->header( 'Access-Control-Allow-Origin: *' );
74
75 if ( !$this->canHandleRequest( $subPage, $request ) ) {
76 throw new HttpError( 400, wfMessage( 'pagedata-bad-title', $subPage ) );
77 }
78
79 $revision = 0;
80
81 if ( $subPage !== '' ) {
82 $parts = explode( '/', $subPage, 2 );
83 $title = $parts[1] ?? '';
84 } else {
85 $title = $request->getText( 'target' );
86 }
87
88 $revision = $request->getInt( 'oldid', $revision );
89 $revision = $request->getInt( 'revision', $revision );
90
91 if ( $title === null || $title === '' ) {
92 // TODO: different error message?
93 throw new HttpError( 400, wfMessage( 'pagedata-bad-title', $title ) );
94 }
95
96 try {
97 $title = Title::newFromTextThrow( $title );
98 } catch ( MalformedTitleException $ex ) {
99 throw new HttpError( 400, wfMessage( 'pagedata-bad-title', $title ) );
100 }
101
102 $this->httpContentNegotiation( $request, $output, $title, $revision );
103 }
104
117 public function httpContentNegotiation(
118 WebRequest $request,
119 OutputPage $output,
121 $revision = 0
122 ) {
123 $mimeTypes = MediaWikiServices::getInstance()
124 ->getContentHandlerFactory()
125 ->getContentHandler( $title->getContentModel() )
126 ->getSupportedFormats();
127
128 $acceptHeader = $request->getHeader( 'Accept' );
129 if ( $acceptHeader !== false ) {
130 $parser = new HttpAcceptParser();
131 $accept = $parser->parseWeights( $acceptHeader );
132 } else {
133 // anything goes
134 $accept = [
135 '*' => 0.1 // just to make extra sure
136 ];
137 // prefer the default
138 $accept[$mimeTypes[0]] = 1;
139 }
140
141 $negotiator = new HttpAcceptNegotiator( $mimeTypes );
142 $format = $negotiator->getBestSupportedKey( $accept );
143
144 if ( $format === null ) {
145 $format = isset( $accept['text/html'] ) ? 'text/html' : null;
146 }
147
148 if ( $format === null ) {
149 throw new HttpError( 406, wfMessage( 'pagedata-not-acceptable', implode( ', ', $mimeTypes ) ) );
150 }
151
152 $url = $this->getDocUrl( $title, $format, $revision );
153 $output->redirect( $url, 303 );
154 }
155
164 private function getDocUrl( Title $title, $format = '', $revision = 0 ) {
165 $params = [];
166
167 if ( $revision > 0 ) {
168 $params['oldid'] = $revision;
169 }
170
171 if ( $format === 'text/html' ) {
172 return $title->getFullURL( $params );
173 }
174
175 $params[ 'action' ] = 'raw';
176
177 return $title->getFullURL( $params );
178 }
179
180}
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
Show an error that looks like an HTTP server error.
Definition HttpError.php:32
MalformedTitleException is thrown when a TitleParser is unable to parse a title string.
Service locator for MediaWiki core services.
This is one of the Core classes and should be read at least once by any new developers.
redirect( $url, $responsecode='302')
Redirect to $url rather than displaying the normal page.
Request handler implementing a data interface for mediawiki pages.
canHandleRequest( $subPage, WebRequest $request)
Checks whether the request is complete, i.e.
handleRequest( $subPage, WebRequest $request, OutputPage $output)
Main method for handling requests.
httpContentNegotiation(WebRequest $request, OutputPage $output, Title $title, $revision=0)
Applies HTTP content negotiation.
Represents a title within MediaWiki.
Definition Title.php:49
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
getInt( $name, $default=0)
Fetch an integer value from the input or return $default if not set.
getText( $name, $default='')
Fetch a text string and return it in normalized form.
getHeader( $name, $flags=0)
Get a request header, or false if it isn't set.
Utility for negotiating a value from a set of supported values using a preference list.