MediaWiki REL1_35
|
Public Member Functions | |
__construct (Config $config, PermissionManager $permissionManager, RevisionLookup $revisionLookup, TitleFormatter $titleFormatter) | |
getParamSettings () | |
Fetch ParamValidator settings for parameters. | |
needsWriteAccess () | |
Indicates whether this route requires write access. | |
Public Member Functions inherited from MediaWiki\Rest\SimpleHandler | |
execute () | |
Execute the handler. | |
Public Member Functions inherited from MediaWiki\Rest\Handler | |
applyConditionalResponseHeaders (ResponseInterface $response) | |
Modify the response, adding Last-Modified and ETag headers as indicated the values previously returned by ETag and getLastModified(). | |
checkPreconditions () | |
Check the conditional request headers and generate a response if appropriate. | |
getBodyValidator ( $contentType) | |
Fetch the BodyValidator. | |
getConfig () | |
Get the configuration array for the current route. | |
getRequest () | |
Get the current request. | |
getResponseFactory () | |
Get the ResponseFactory which can be used to generate Response objects. | |
getValidatedBody () | |
Fetch the validated body. | |
getValidatedParams () | |
Fetch the validated parameters. | |
init (Router $router, RequestInterface $request, array $config, ResponseFactory $responseFactory, HookContainer $hookContainer) | |
Initialise with dependencies from the Router. | |
needsReadAccess () | |
Indicates whether this route requires read rights. | |
validate (Validator $restValidator) | |
Validate the request parameters/attributes and body. | |
Protected Member Functions | |
constructMetadata (Title $titleObject, RevisionRecord $revision) | |
getLatestRevision () | |
getTitle () | |
isAccessible ( $titleObject) | |
Protected Member Functions inherited from MediaWiki\Rest\Handler | |
getConditionalHeaderUtil () | |
Get a ConditionalHeaderUtil object. | |
getETag () | |
The subclass should override this to provide an ETag for the current request. | |
getHookContainer () | |
Get a HookContainer, for running extension hooks or for hook metadata. | |
getHookRunner () | |
Get a HookRunner for running core hooks. | |
getLastModified () | |
The subclass should override this to provide the maximum last modified timestamp for the current request. | |
getRouter () | |
Get the Router. | |
getRouteUrl ( $pathParams=[], $queryParams=[]) | |
Get the URL of this handler's endpoint. | |
hasRepresentation () | |
The subclass should override this to indicate whether the resource exists. | |
postInitSetup () | |
The handler can override this to do any necessary setup after init() is called to inject the dependencies. | |
urlEncodeTitle ( $title) | |
URL-encode titles in a "pretty" way. | |
Protected Attributes | |
Config | $config |
PermissionManager | $permissionManager |
RevisionLookup | $revisionLookup |
TitleFormatter | $titleFormatter |
User | $user |
Private Attributes | |
RevisionRecord bool | $latestRevision |
Title bool | $titleObject |
Additional Inherited Members | |
Public Attributes inherited from MediaWiki\Rest\Handler | |
const | PARAM_SOURCE = 'rest-param-source' |
(string) ParamValidator constant to specify the source of the parameter. | |
Definition at line 16 of file LatestPageContentHandler.php.
MediaWiki\Rest\Handler\LatestPageContentHandler::__construct | ( | Config | $config, |
PermissionManager | $permissionManager, | ||
RevisionLookup | $revisionLookup, | ||
TitleFormatter | $titleFormatter | ||
) |
Config | $config | |
PermissionManager | $permissionManager | |
RevisionLookup | $revisionLookup | |
TitleFormatter | $titleFormatter |
Definition at line 45 of file LatestPageContentHandler.php.
References MediaWiki\Rest\Handler\LatestPageContentHandler\$config, MediaWiki\Rest\Handler\LatestPageContentHandler\$permissionManager, MediaWiki\Rest\Handler\LatestPageContentHandler\$revisionLookup, and MediaWiki\Rest\Handler\LatestPageContentHandler\$titleFormatter.
|
protected |
Definition at line 89 of file LatestPageContentHandler.php.
|
protected |
Definition at line 73 of file LatestPageContentHandler.php.
References MediaWiki\Rest\Handler\LatestPageContentHandler\$latestRevision, $title, and MediaWiki\Rest\Handler\LatestPageContentHandler\getTitle().
MediaWiki\Rest\Handler\LatestPageContentHandler::getParamSettings | ( | ) |
Fetch ParamValidator settings for parameters.
Every setting must include self::PARAM_SOURCE to specify which part of the request is to contain the parameter.
Stable to override
Reimplemented from MediaWiki\Rest\Handler.
Definition at line 113 of file LatestPageContentHandler.php.
|
protected |
Definition at line 63 of file LatestPageContentHandler.php.
References MediaWiki\Rest\Handler\LatestPageContentHandler\$titleObject, and MediaWiki\Rest\Handler\getValidatedParams().
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\getLatestRevision().
|
protected |
Definition at line 85 of file LatestPageContentHandler.php.
MediaWiki\Rest\Handler\LatestPageContentHandler::needsWriteAccess | ( | ) |
Indicates whether this route requires write access.
The handler should override this if the route does not need to write to the database.
This should return true for routes that may require synchronous database writes. Modules that do not need such writes should also not rely on master database access, since only read queries are needed and each master DB is a single point of failure.
Stable to override
Reimplemented from MediaWiki\Rest\Handler.
Definition at line 109 of file LatestPageContentHandler.php.
|
protected |
Definition at line 19 of file LatestPageContentHandler.php.
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\__construct(), and MediaWiki\Rest\Handler\PageHTMLHandler\__construct().
|
private |
Definition at line 34 of file LatestPageContentHandler.php.
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\getLatestRevision().
|
protected |
Definition at line 22 of file LatestPageContentHandler.php.
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\__construct(), and MediaWiki\Rest\Handler\PageHTMLHandler\__construct().
|
protected |
Definition at line 25 of file LatestPageContentHandler.php.
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\__construct(), and MediaWiki\Rest\Handler\PageHTMLHandler\__construct().
|
protected |
Definition at line 28 of file LatestPageContentHandler.php.
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\__construct(), and MediaWiki\Rest\Handler\PageHTMLHandler\__construct().
|
private |
Definition at line 37 of file LatestPageContentHandler.php.
Referenced by MediaWiki\Rest\Handler\LatestPageContentHandler\getTitle().
|
protected |
Definition at line 31 of file LatestPageContentHandler.php.