MediaWiki REL1_37
|
This interface represents the authority associated the current execution context, such as a web request. More...
Public Member Functions | |
authorizeRead (string $action, PageIdentity $target, PermissionStatus $status=null) | |
Authorize read access. | |
authorizeWrite (string $action, PageIdentity $target, PermissionStatus $status=null) | |
Authorize write access. | |
definitelyCan (string $action, PageIdentity $target, PermissionStatus $status=null) | |
Checks whether this authority can perform the given action on the given target page. | |
getBlock (int $freshness=self::READ_NORMAL) | |
Returns any user block affecting the Authority. | |
getUser () | |
Returns the performer of the actions associated with this authority. | |
isAllowed (string $permission) | |
Checks whether this authority has the given permission in general. | |
isAllowedAll (... $permissions) | |
Checks whether this authority has any of the given permissions in general. | |
isAllowedAny (... $permissions) | |
Checks whether this authority has any of the given permissions in general. | |
probablyCan (string $action, PageIdentity $target, PermissionStatus $status=null) | |
Checks whether this authority can probably perform the given action on the given target page. | |
This interface represents the authority associated the current execution context, such as a web request.
The authority determines which actions can or cannot be performed withing that execution context.
See the individual implementations for information on how that authority is determined.
Definition at line 37 of file Authority.php.
MediaWiki\Permissions\Authority::authorizeRead | ( | string | $action, |
PageIdentity | $target, | ||
PermissionStatus | $status = null |
||
) |
Authorize read access.
This should be used immediately before performing read access on restricted information.
Calling this method may have non-trivial side-effects, such as incrementing a rate limit counter.
string | $action | |
PageIdentity | $target | |
PermissionStatus | null | $status | aggregator for failures |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by DifferenceEngine\getPermissionErrors(), EditPage\isPageExistingAndViewable(), and MediaWiki\Revision\RevisionRecord\userCanBitfield().
MediaWiki\Permissions\Authority::authorizeWrite | ( | string | $action, |
PageIdentity | $target, | ||
PermissionStatus | $status = null |
||
) |
Authorize write access.
This should be used immediately before updating persisted information.
Calling this method may have non-trivial side-effects, such as incrementing a rate limit counter.
string | $action | |
PageIdentity | $target | |
PermissionStatus | null | $status | aggregator for failures |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by MergeHistory\authorizeMerge(), MovePage\authorizeMove(), MediaWiki\Auth\AuthManager\checkAccountCreatePermissions(), RecentChange\doMarkPatrolled(), WikiPage\doUserEditContent(), MovePage\moveSubpagesIfAllowed(), and UploadBase\verifyTitlePermissions().
MediaWiki\Permissions\Authority::definitelyCan | ( | string | $action, |
PageIdentity | $target, | ||
PermissionStatus | $status = null |
||
) |
Checks whether this authority can perform the given action on the given target page.
This method performs a thorough check, but does not protect against race conditions. It is intended to be used when a user is intending to perform an action, but has not yet committed to it. For example, when a user goes to the edit page of an article, this method may be used to determine whether the user should be presented with a warning and a read-only view instead.
string | $action | |
PageIdentity | $target | |
PermissionStatus | null | $status | aggregator for failures |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by MovePage\checkPermissions().
MediaWiki\Permissions\Authority::getBlock | ( | int | $freshness = self::READ_NORMAL | ) |
Returns any user block affecting the Authority.
int | $freshness | Indicates whether slightly stale data is acceptable in, exchange for a fast response. |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, and MediaWiki\Permissions\UserAuthority.
MediaWiki\Permissions\Authority::getUser | ( | ) |
Returns the performer of the actions associated with this authority.
Actions performed under this authority should generally be attributed to the user identity returned by this method.
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by ChangeTags\activateTagWithChecks(), EmailNotification\actuallyNotifyOnPageChange(), MediaWiki\Auth\AuthManager\beginAccountCreation(), SkinTemplate\buildContentNavigationUrls(), CleanupSpam\cleanupArticle(), ChangeTags\createTagWithChecks(), ChangeTags\deactivateTagWithChecks(), ChangeTags\deleteTagWithChecks(), RecentChange\doMarkPatrolled(), WatchAction\doWatch(), MediaWiki\Watchlist\WatchlistManager\isTempWatched(), MediaWiki\Watchlist\WatchlistManager\isWatched(), MergeHistory\merge(), MovePage\moveIfAllowed(), SpecialBlock\processFormInternal(), ChangesList\revDateLink(), and ChangeTags\updateTagsWithChecks().
MediaWiki\Permissions\Authority::isAllowed | ( | string | $permission | ) |
Checks whether this authority has the given permission in general.
For some permissions, exceptions may exist, both positive and negative, on a per-target basis.
string | $permission |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by EmailNotification\actuallyNotifyOnPageChange(), MergeHistory\authorizeInternal(), RecentChange\doMarkPatrolled(), WikiPage\doUserEditContent(), WatchedItemQueryService\getExtraDeletedPageLogEntryRelatedCond(), Linker\getRevDeleteLink(), WatchedItemQueryService\getUserRelatedConds(), UploadBase\isAllowed(), UploadFromUrl\isAllowed(), MovePage\moveIfAllowed(), ChangeTags\showTagEditingUI(), LogEventsList\userCanBitfield(), and LogEventsList\userCanViewLogType().
MediaWiki\Permissions\Authority::isAllowedAll | ( | $permissions | ) |
Checks whether this authority has any of the given permissions in general.
Implementations must ensure that this method returns false if isAllowed would return false for any of the given permissions. Calling isAllowedAll() with one parameter must be equivalent to calling isAllowed(). Calling isAllowedAny() with no parameter is not allowed.
string | ...$permissions Permissions to test. At least one must be given. |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
MediaWiki\Permissions\Authority::isAllowedAny | ( | $permissions | ) |
Checks whether this authority has any of the given permissions in general.
Implementations must ensure that this method returns true if isAllowed would return true for any of the given permissions. Calling isAllowedAny() with one parameter must be equivalent to calling isAllowed(). Calling isAllowedAny() with no parameter is not allowed.
string | ...$permissions Permissions to test. At least one must be given. |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by WatchedItemQueryService\getExtraDeletedPageLogEntryRelatedCond(), WatchedItemQueryService\getUserRelatedConds(), LogEventsList\userCanBitfield(), and MediaWiki\Revision\RevisionRecord\userCanBitfield().
MediaWiki\Permissions\Authority::probablyCan | ( | string | $action, |
PageIdentity | $target, | ||
PermissionStatus | $status = null |
||
) |
Checks whether this authority can probably perform the given action on the given target page.
This method offers a fast, lightweight check, and may produce false positives. It is intended for determining which UI elements should be offered to the user.
string | $action | |
PageIdentity | $target | |
PermissionStatus | null | $status | aggregator for failures |
Implemented in MediaWiki\Permissions\SimpleAuthority, MediaWiki\Permissions\UltimateAuthority, MediaWiki\Permissions\UserAuthority, and User.
Referenced by MergeHistory\probablyCanMerge(), and MovePage\probablyCanMove().