MediaWiki REL1_41
|
Request handler implementing a data interface for mediawiki pages. More...
Public Member Functions | |
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. | |
Request handler implementing a data interface for mediawiki pages.
Definition at line 36 of file PageDataRequestHandler.php.
PageDataRequestHandler::canHandleRequest | ( | $subPage, | |
WebRequest | $request ) |
Checks whether the request is complete, i.e.
whether it contains all information needed to reply with page data.
This does not check whether the request is valid and will actually produce a successful response.
string | null | $subPage | |
WebRequest | $request |
Definition at line 50 of file PageDataRequestHandler.php.
References MediaWiki\Request\WebRequest\getText().
Referenced by handleRequest().
PageDataRequestHandler::handleRequest | ( | $subPage, | |
WebRequest | $request, | ||
OutputPage | $output ) |
Main method for handling requests.
string | null | $subPage | |
WebRequest | $request | The request parameters. Known parameters are:
|
OutputPage | $output |
HttpError |
Definition at line 76 of file PageDataRequestHandler.php.
References canHandleRequest(), MediaWiki\Request\WebRequest\getInt(), ContextSource\getRequest(), MediaWiki\Request\WebRequest\getText(), httpContentNegotiation(), and wfMessage().
PageDataRequestHandler::httpContentNegotiation | ( | WebRequest | $request, |
OutputPage | $output, | ||
Title | $title, | ||
$revision = 0 ) |
Applies HTTP content negotiation.
If the negotiation is successful, this method will set the appropriate redirect in the OutputPage object and return. Otherwise, an HttpError is thrown.
WebRequest | $request | |
OutputPage | $output | |
Title | $title | |
int | $revision | The desired revision |
HttpError |
Definition at line 122 of file PageDataRequestHandler.php.
References MediaWiki\Title\Title\getContentModel(), MediaWiki\Request\WebRequest\getHeader(), MediaWiki\Output\OutputPage\redirect(), and wfMessage().
Referenced by handleRequest().