MediaWiki REL1_31
PageDataRequestHandler.php
Go to the documentation of this file.
1<?php
23
31
45 public function canHandleRequest( $subPage, WebRequest $request ) {
46 if ( $subPage === '' || $subPage === null ) {
47 if ( $request->getText( 'target', '' ) === '' ) {
48 return false;
49 } else {
50 return true;
51 }
52 }
53
54 $parts = explode( '/', $subPage, 2 );
55 if ( $parts !== 2 ) {
56 $slot = $parts[0];
57 if ( $slot === 'main' || $slot === '' ) {
58 return true;
59 }
60 }
61
62 return false;
63 }
64
80 public function handleRequest( $subPage, WebRequest $request, OutputPage $output ) {
81 // No matter what: The response is always public
82 $output->getRequest()->response()->header( 'Access-Control-Allow-Origin: *' );
83
84 if ( !$this->canHandleRequest( $subPage, $request ) ) {
85 throw new HttpError( 400, wfMessage( 'pagedata-bad-title', $subPage ) );
86 }
87
88 $revision = 0;
89
90 $parts = explode( '/', $subPage, 2 );
91 if ( $subPage !== '' ) {
92 $title = $parts[1];
93 } else {
94 $title = $request->getText( 'target', '' );
95 }
96
97 $revision = $request->getInt( 'oldid', $revision );
98 $revision = $request->getInt( 'revision', $revision );
99
100 if ( $title === null || $title === '' ) {
101 //TODO: different error message?
102 throw new HttpError( 400, wfMessage( 'pagedata-bad-title', $title ) );
103 }
104
105 try {
106 $title = Title::newFromTextThrow( $title );
107 } catch ( MalformedTitleException $ex ) {
108 throw new HttpError( 400, wfMessage( 'pagedata-bad-title', $title ) );
109 }
110
111 $this->httpContentNegotiation( $request, $output, $title, $revision );
112 }
113
126 public function httpContentNegotiation(
129 Title $title,
130 $revision = 0
131 ) {
132 $contentHandler = ContentHandler::getForTitle( $title );
133 $mimeTypes = $contentHandler->getSupportedFormats();
134
135 $headers = $request->getAllHeaders();
136 if ( isset( $headers['ACCEPT'] ) ) {
138 $accept = $parser->parseWeights( $headers['ACCEPT'] );
139 } else {
140 // anything goes
141 $accept = [
142 '*' => 0.1 // just to make extra sure
143 ];
144 // prefer the default
145 $accept[$mimeTypes[0]] = 1;
146 }
147
148 $negotiator = new HttpAcceptNegotiator( $mimeTypes );
149 $format = $negotiator->getBestSupportedKey( $accept, null );
150
151 if ( $format === null ) {
152 $format = isset( $accept['text/html'] ) ? 'text/html' : null;
153 }
154
155 if ( $format === null ) {
156 $msg = wfMessage( 'pagedata-not-acceptable', implode( ', ', $mimeTypes ) );
157 throw new HttpError( 406, $msg );
158 }
159
160 $url = $this->getDocUrl( $title, $format, $revision );
161 $output->redirect( $url, 303 );
162 }
163
172 private function getDocUrl( Title $title, $format = '', $revision = 0 ) {
173 $params = [];
174
175 if ( $revision > 0 ) {
176 $params['oldid'] = $revision;
177 }
178
179 if ( $format === 'text/html' ) {
180 return $title->getFullURL( $params );
181 }
182
183 $params[ 'action' ] = 'raw';
184
185 return $title->getFullURL( $params );
186 }
187
188}
Show an error that looks like an HTTP server error.
Definition HttpError.php:30
MalformedTitleException is thrown when a TitleParser is unable to parse a title string.
This class should be covered by a general architecture document which does not exist as of January 20...
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.
getDocUrl(Title $title, $format='', $revision=0)
Returns a url representing the given title.
httpContentNegotiation(WebRequest $request, OutputPage $output, Title $title, $revision=0)
Applies HTTP content negotiation.
Represents a title within MediaWiki.
Definition Title.php:39
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Utility for negotiating a value from a set of supported values using a preference list.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2806
do that in ParserLimitReportFormat instead $parser
Definition hooks.txt:2603
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2255
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
$params