MediaWiki REL1_35
|
Handler class for Core REST API endpoints that perform operations on revisions. More...
Public Member Functions | |
__construct (RevisionStore $revisionStore, NameTableStoreFactory $nameTableStoreFactory, PermissionManager $permissionManager, ILoadBalancer $loadBalancer, WANObjectCache $cache) | |
getParamSettings () | |
Fetch ParamValidator settings for parameters. | |
needsWriteAccess () | |
Indicates whether this route requires write access. | |
run ( $title, $type) | |
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 | |
getAnonCount ( $pageId, RevisionRecord $fromRev=null) | |
getBotCount ( $pageId, RevisionRecord $fromRev=null) | |
getEditorsCount ( $pageId, RevisionRecord $fromRev=null, RevisionRecord $toRev=null) | |
getEditsCount ( $pageId, RevisionRecord $fromRev=null, RevisionRecord $toRev=null) | |
getEtag () | |
Choosing to not implement etags in this handler. | |
getLastModified () | |
Returns latest of 2 timestamps: | |
getLastModifiedTimes () | |
Returns array with 2 timestamps: | |
getMinorCount ( $pageId, RevisionRecord $fromRev=null) | |
getRevertedCount ( $pageId, RevisionRecord $fromRev=null) | |
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. | |
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. | |
Private Member Functions | |
getCachedCount ( $type, callable $fetchCount) | |
getCount ( $type) | |
getCurrentRevision () | |
getRevisionOrThrow ( $revId) | |
getTitle () | |
loggingTableTime ( $pageId) | |
Return timestamp of latest entry in logging table for given page id. | |
normalizeType ( $type) | |
orderRevisions (RevisionRecord $fromRev=null, RevisionRecord $toRev=null) | |
Reorders revisions if they are present. | |
validateParameterCombination ( $type) | |
Validates that the provided parameter combination is supported. | |
Private Attributes | |
WANObjectCache | $cache |
NameTableStore | $changeTagDefStore |
array | $lastModifiedTimes |
ILoadBalancer | $loadBalancer |
PermissionManager | $permissionManager |
RevisionRecord bool | $revision |
RevisionStore | $revisionStore |
Title | $titleObject |
User | $user |
const | COUNT_LIMITS |
The maximum number of counts to return per type of revision. | |
const | DEPRECATED_COUNT_TYPES |
const | MAX_AGE_200 = 60 |
const | REVERTED_TAG_NAMES = [ 'mw-undo', 'mw-rollback' ] |
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. | |
Handler class for Core REST API endpoints that perform operations on revisions.
Definition at line 27 of file PageHistoryCountHandler.php.
MediaWiki\Rest\Handler\PageHistoryCountHandler::__construct | ( | RevisionStore | $revisionStore, |
NameTableStoreFactory | $nameTableStoreFactory, | ||
PermissionManager | $permissionManager, | ||
ILoadBalancer | $loadBalancer, | ||
WANObjectCache | $cache | ||
) |
RevisionStore | $revisionStore | |
NameTableStoreFactory | $nameTableStoreFactory | |
PermissionManager | $permissionManager | |
ILoadBalancer | $loadBalancer | |
WANObjectCache | $cache |
Definition at line 82 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\$cache, MediaWiki\Rest\Handler\PageHistoryCountHandler\$loadBalancer, MediaWiki\Rest\Handler\PageHistoryCountHandler\$permissionManager, MediaWiki\Rest\Handler\PageHistoryCountHandler\$revisionStore, and MediaWiki\Storage\NameTableStoreFactory\getChangeTagDef().
|
protected |
int | $pageId | the id of the page to load history for |
RevisionRecord | null | $fromRev |
Definition at line 416 of file PageHistoryCountHandler.php.
References $dbr, and DB_REPLICA.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
protected |
int | $pageId | the id of the page to load history for |
RevisionRecord | null | $fromRev |
Definition at line 461 of file PageHistoryCountHandler.php.
References $dbr, and DB_REPLICA.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
private |
string | $type | |
callable | $fetchCount |
Definition at line 366 of file PageHistoryCountHandler.php.
References $type, MediaWiki\Rest\Handler\PageHistoryCountHandler\getCurrentRevision(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModified(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModifiedTimes(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\getTitle().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
private |
string | $type | the validated count type |
LocalizedHttpException |
Definition at line 184 of file PageHistoryCountHandler.php.
References $type, MediaWiki\Rest\Handler\PageHistoryCountHandler\getAnonCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getBotCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getCachedCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getEditorsCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getEditsCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getMinorCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getRevertedCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getRevisionOrThrow(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getTitle(), and MediaWiki\Rest\Handler\getValidatedParams().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\run().
|
private |
Definition at line 275 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\$revision, $title, and MediaWiki\Rest\Handler\PageHistoryCountHandler\getTitle().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCachedCount(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModifiedTimes().
|
protected |
int | $pageId | the id of the page to load history for |
RevisionRecord | null | $fromRev | |
RevisionRecord | null | $toRev |
Definition at line 517 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\orderRevisions().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
protected |
int | $pageId | the id of the page to load history for |
RevisionRecord | null | $fromRev | |
RevisionRecord | null | $toRev |
Definition at line 613 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\orderRevisions().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
protected |
Choosing to not implement etags in this handler.
Generating an etag when getting revision counts must account for things like visibility settings (e.g. rev_deleted bit) which requires hitting the database anyway. The response for these requests are so small that we wouldn't be gaining much efficiency. Etags are strong validators and if provided would take precendence over last modified time, a weak validator. We want to ensure only last modified time is used since it is more efficient than using etags for this particular case.
Definition at line 357 of file PageHistoryCountHandler.php.
|
protected |
Returns latest of 2 timestamps:
Reimplemented from MediaWiki\Rest\Handler.
Definition at line 303 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\$lastModifiedTimes, and MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModifiedTimes().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCachedCount().
|
protected |
Returns array with 2 timestamps:
Definition at line 316 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\$lastModifiedTimes, MediaWiki\Rest\Handler\PageHistoryCountHandler\getCurrentRevision(), MediaWiki\Rest\Handler\PageHistoryCountHandler\loggingTableTime(), and wfTimestampOrNull().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCachedCount(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModified().
|
protected |
int | $pageId | the id of the page to load history for |
RevisionRecord | null | $fromRev |
Definition at line 586 of file PageHistoryCountHandler.php.
References $dbr, and DB_REPLICA.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
MediaWiki\Rest\Handler\PageHistoryCountHandler::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 667 of file PageHistoryCountHandler.php.
|
protected |
int | $pageId | the id of the page to load history for |
RevisionRecord | null | $fromRev |
Definition at line 531 of file PageHistoryCountHandler.php.
References $dbr, and DB_REPLICA.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
private |
int | $revId |
LocalizedHttpException |
Definition at line 632 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount().
|
private |
Definition at line 290 of file PageHistoryCountHandler.php.
References MediaWiki\Rest\Handler\PageHistoryCountHandler\$titleObject, and MediaWiki\Rest\Handler\getValidatedParams().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCachedCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getCurrentRevision(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\run().
|
private |
Return timestamp of latest entry in logging table for given page id.
int | $pageId |
Definition at line 337 of file PageHistoryCountHandler.php.
References $res, DB_REPLICA, and wfTimestamp().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModifiedTimes().
MediaWiki\Rest\Handler\PageHistoryCountHandler::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 663 of file PageHistoryCountHandler.php.
|
private |
Definition at line 99 of file PageHistoryCountHandler.php.
References $type.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\run().
|
private |
Reorders revisions if they are present.
RevisionRecord | null | $fromRev | |
RevisionRecord | null | $toRev |
Definition at line 650 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getEditorsCount(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\getEditsCount().
MediaWiki\Rest\Handler\PageHistoryCountHandler::run | ( | $title, | |
$type | |||
) |
Title | $title | the title of the page to load history for |
string | $type | the validated count type |
LocalizedHttpException |
Definition at line 138 of file PageHistoryCountHandler.php.
References $title, $type, MediaWiki\Rest\Handler\PageHistoryCountHandler\getCount(), MediaWiki\Rest\Handler\getResponseFactory(), MediaWiki\Rest\Handler\PageHistoryCountHandler\getTitle(), MediaWiki\Rest\Handler\PageHistoryCountHandler\normalizeType(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\validateParameterCombination().
|
private |
Validates that the provided parameter combination is supported.
string | $type |
LocalizedHttpException |
Definition at line 109 of file PageHistoryCountHandler.php.
References $type, and MediaWiki\Rest\Handler\getValidatedParams().
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\run().
|
private |
Definition at line 61 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\__construct().
|
private |
Definition at line 52 of file PageHistoryCountHandler.php.
|
private |
Definition at line 70 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModified(), and MediaWiki\Rest\Handler\PageHistoryCountHandler\getLastModifiedTimes().
|
private |
Definition at line 58 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\__construct().
|
private |
Definition at line 55 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\__construct().
|
private |
Definition at line 67 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getCurrentRevision().
|
private |
Definition at line 49 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\__construct().
|
private |
Definition at line 73 of file PageHistoryCountHandler.php.
Referenced by MediaWiki\Rest\Handler\PageHistoryCountHandler\getTitle().
|
private |
Definition at line 64 of file PageHistoryCountHandler.php.
|
private |
The maximum number of counts to return per type of revision.
Definition at line 29 of file PageHistoryCountHandler.php.
|
private |
Definition at line 38 of file PageHistoryCountHandler.php.
|
private |
Definition at line 44 of file PageHistoryCountHandler.php.
|
private |
Definition at line 46 of file PageHistoryCountHandler.php.