ContentContainerControllerAccess
extends StrictAccess
in package
Class ContentContainerControllerAccess
Adds a container permission check to
Table of Contents
Constants
- ACTION_SETTING_TYPE_BOTH = 1
- Allows the action rule setting by extra option ['myRule', 'actions' => ['action1', 'action2']] or immediate ['myRule' => ['action1', 'action2']]
- ACTION_SETTING_TYPE_OPTION_ONLY = 0
- Allows the action rule setting only by extra option ['myRule', 'actions' => ['action1', 'action2']]
- RULE_ADMIN_ONLY = 'admin'
- Only admins have access to the given set of actions e.g.: ['admin' => ['action1']]
- RULE_AJAX_ONLY = 'ajax'
- Only AJAX request is allowed for the actions
- RULE_CONTAINER_ACCESS = 'containerAccess'
- RULE_DISABLED_USER = 'disabledUser'
- Check guest if user is disabled
- RULE_JSON = 'json'
- Make sure response type is json
- RULE_LOGGED_IN_ONLY = 'login'
- Only logged in user have access e.g.: ['login' => ['action1', 'action2']]
- RULE_MAINTENANCE_MODE = 'maintenance'
- Maintenance mode is active
- RULE_MUST_CHANGE_PASSWORD = 'mustChangePassword'
- Check guest if user must change password
- RULE_PERMISSION = 'permission'
- Validate against a given set of permissions e.g.: ['permission' => [MyPermission::class], 'actions' => ['action1']]
- RULE_POST = 'post'
- Check guest if request method is post
- RULE_PROFILE_ONLY = 'profile'
- RULE_SPACE_ONLY = 'space'
- RULE_STRICT = 'strict'
- Check guest mode e.g.: ['strict'] (mainly used as global)
- RULE_UNAPPROVED_USER = 'unapprovedUser'
- Check guest if user is unnapproved
- RULE_USER_GROUP_ONLY = 'userGroup'
Properties
- $action : string
- $code : int
- $codeCallback : string
- $contentContainer : ContentContainerActiveRecord
- $owner : Controller
- $reason : string
- $user : User
- $fixedRules : array<string|int, mixed>
- $rules : array<string|int, mixed>
- $validators : array<string|int, mixed>
- $_membership : mixed
Methods
- __call() : mixed
- Calls the named method which is not a class method.
- __construct() : mixed
- Constructor.
- __get() : mixed
- Returns the value of an object property.
- __isset() : bool
- Checks if a property is set, i.e. defined and not null.
- __set() : mixed
- Sets value of an object property.
- __unset() : mixed
- Sets an object property to null.
- canGetProperty() : bool
- Returns a value indicating whether a property can be read.
- canSetProperty() : bool
- Returns a value indicating whether a property can be set.
- className() : string
- Returns the fully qualified name of this class.
- getFixedRules() : array<string|int, mixed>
- getMaintenanceModeWarningText() : string
- getRules() : array<string|int, mixed>
- hasMethod() : bool
- Returns a value indicating whether a method is defined.
- hasProperty() : bool
- Returns a value indicating whether a property is defined.
- init() : mixed
- Initializes the object.
- isAdmin() : mixed
- isGuest() : bool
- run() : bool
- Runs the current $rule setting against all available validators
- setRules() : mixed
- Sets the current set of rules.
- validateAdminOnly() : bool
- validateAjaxOnlyRequest() : mixed
- validateContainerAccess() : bool
- validateDisabledUser() : bool
- validateJsonResponse() : bool
- validateLoggedInOnly() : bool
- validateMaintenanceMode() : bool
- validateMustChangePassword() : bool
- validatePostRequest() : mixed
- validateProfileOnlyRule() : bool
- validateSpaceOnlyRule() : bool
- validateStrictMode() : bool
- validateUnapprovedUser() : bool
- findValidator() : mixed
- getCustomValidator() : mixed
- getName() : mixed|null
- Extracts the ruleName from a given rule option array.
- isProfileController() : mixed
- isSpaceController() : mixed
- registerValidator() : mixed
- Adds a new validator to the available validators and sets some default values.
- canAccessSpace() : bool
- canAccessUser() : bool
- getSpaceMembership() : Membership
Constants
ACTION_SETTING_TYPE_BOTH
Allows the action rule setting by extra option ['myRule', 'actions' => ['action1', 'action2']] or immediate ['myRule' => ['action1', 'action2']]
public
mixed
ACTION_SETTING_TYPE_BOTH
= 1
ACTION_SETTING_TYPE_OPTION_ONLY
Allows the action rule setting only by extra option ['myRule', 'actions' => ['action1', 'action2']]
public
mixed
ACTION_SETTING_TYPE_OPTION_ONLY
= 0
RULE_ADMIN_ONLY
Only admins have access to the given set of actions e.g.: ['admin' => ['action1']]
public
mixed
RULE_ADMIN_ONLY
= 'admin'
RULE_AJAX_ONLY
Only AJAX request is allowed for the actions
public
mixed
RULE_AJAX_ONLY
= 'ajax'
RULE_CONTAINER_ACCESS
public
mixed
RULE_CONTAINER_ACCESS
= 'containerAccess'
RULE_DISABLED_USER
Check guest if user is disabled
public
mixed
RULE_DISABLED_USER
= 'disabledUser'
RULE_JSON
Make sure response type is json
public
mixed
RULE_JSON
= 'json'
RULE_LOGGED_IN_ONLY
Only logged in user have access e.g.: ['login' => ['action1', 'action2']]
public
mixed
RULE_LOGGED_IN_ONLY
= 'login'
RULE_MAINTENANCE_MODE
Maintenance mode is active
public
mixed
RULE_MAINTENANCE_MODE
= 'maintenance'
RULE_MUST_CHANGE_PASSWORD
Check guest if user must change password
public
mixed
RULE_MUST_CHANGE_PASSWORD
= 'mustChangePassword'
Tags
RULE_PERMISSION
Validate against a given set of permissions e.g.: ['permission' => [MyPermission::class], 'actions' => ['action1']]
public
mixed
RULE_PERMISSION
= 'permission'
RULE_POST
Check guest if request method is post
public
mixed
RULE_POST
= 'post'
RULE_PROFILE_ONLY
public
mixed
RULE_PROFILE_ONLY
= 'profile'
RULE_SPACE_ONLY
public
mixed
RULE_SPACE_ONLY
= 'space'
RULE_STRICT
Check guest mode e.g.: ['strict'] (mainly used as global)
public
mixed
RULE_STRICT
= 'strict'
RULE_UNAPPROVED_USER
Check guest if user is unnapproved
public
mixed
RULE_UNAPPROVED_USER
= 'unapprovedUser'
RULE_USER_GROUP_ONLY
public
mixed
RULE_USER_GROUP_ONLY
= 'userGroup'
Properties
$action
public
string
$action
the controller action id to test
$code
public
int
$code
http code, can be changed in verify checks for specific error codes
$codeCallback
public
string
$codeCallback
Name of callback method to run after failed validation
Tags
$contentContainer
public
ContentContainerActiveRecord
$contentContainer
$owner
public
Controller
$owner
owner object of this ControllerAccess the owner is mainly used to find custom validation handler
$reason
public
string
$reason
actual decline message, can be changed in verify checks for specific error messages
$user
public
User
$user
identity to test against
$fixedRules
protected
array<string|int, mixed>
$fixedRules
= [[self::RULE_DISABLED_USER], [self::RULE_UNAPPROVED_USER], [self::RULE_MUST_CHANGE_PASSWORD], [self::RULE_MAINTENANCE_MODE]]
fixed rules will always be added to the current rule set
$rules
protected
array<string|int, mixed>
$rules
= []
access rule array
$validators
protected
array<string|int, mixed>
$validators
= []
defines all available validators, this list can be extended by calling registerValidator()
$_membership
private
mixed
$_membership
= false
Methods
__call()
Calls the named method which is not a class method.
public
__call(string $name, array<string|int, mixed> $params) : mixed
Do not call this method directly as it is a PHP magic method that will be implicitly called when an unknown method is being invoked.
Parameters
- $name : string
-
the method name
- $params : array<string|int, mixed>
-
method parameters
Tags
Return values
mixed —the method return value
__construct()
Constructor.
public
__construct([array<string|int, mixed> $config = [] ]) : mixed
The default implementation does two things:
- Initializes the object with the given configuration
$config
. - Call [[init()]].
If this method is overridden in a child class, it is recommended that
- the last parameter of the constructor is a configuration array, like
$config
here. - call the parent implementation at the end of the constructor.
Parameters
- $config : array<string|int, mixed> = []
-
name-value pairs that will be used to initialize the object properties
__get()
Returns the value of an object property.
public
__get(string $name) : mixed
Do not call this method directly as it is a PHP magic method that
will be implicitly called when executing $value = $object->property;
.
Parameters
- $name : string
-
the property name
Tags
Return values
mixed —the property value
__isset()
Checks if a property is set, i.e. defined and not null.
public
__isset(string $name) : bool
Do not call this method directly as it is a PHP magic method that
will be implicitly called when executing isset($object->property)
.
Note that if the property is not defined, false will be returned.
Parameters
- $name : string
-
the property name or the event name
Tags
Return values
bool —whether the named property is set (not null).
__set()
Sets value of an object property.
public
__set(string $name, mixed $value) : mixed
Do not call this method directly as it is a PHP magic method that
will be implicitly called when executing $object->property = $value;
.
Parameters
- $name : string
-
the property name or the event name
- $value : mixed
-
the property value
Tags
__unset()
Sets an object property to null.
public
__unset(string $name) : mixed
Do not call this method directly as it is a PHP magic method that
will be implicitly called when executing unset($object->property)
.
Note that if the property is not defined, this method will do nothing. If the property is read-only, it will throw an exception.
Parameters
- $name : string
-
the property name
Tags
canGetProperty()
Returns a value indicating whether a property can be read.
public
canGetProperty(string $name[, bool $checkVars = true ]) : bool
A property is readable if:
- the class has a getter method associated with the specified name (in this case, property name is case-insensitive);
- the class has a member variable with the specified name (when
$checkVars
is true);
Parameters
- $name : string
-
the property name
- $checkVars : bool = true
-
whether to treat member variables as properties
Tags
Return values
bool —whether the property can be read
canSetProperty()
Returns a value indicating whether a property can be set.
public
canSetProperty(string $name[, bool $checkVars = true ]) : bool
A property is writable if:
- the class has a setter method associated with the specified name (in this case, property name is case-insensitive);
- the class has a member variable with the specified name (when
$checkVars
is true);
Parameters
- $name : string
-
the property name
- $checkVars : bool = true
-
whether to treat member variables as properties
Tags
Return values
bool —whether the property can be written
className()
Returns the fully qualified name of this class.
public
static className() : string
Tags
Return values
string —the fully qualified name of this class.
getFixedRules()
public
getFixedRules() : array<string|int, mixed>
Return values
array<string|int, mixed> —returns array of rules which will always be added to the rule set
getMaintenanceModeWarningText()
public
static getMaintenanceModeWarningText([string $beforeCustomInfo = ' ' ]) : string
Parameters
- $beforeCustomInfo : string = ' '
Tags
Return values
string —returns the maintenance mode warning text
getRules()
public
getRules() : array<string|int, mixed>
Return values
array<string|int, mixed> —set of rules
hasMethod()
Returns a value indicating whether a method is defined.
public
hasMethod(string $name) : bool
The default implementation is a call to php function method_exists()
.
You may override this method when you implemented the php magic method __call()
.
Parameters
- $name : string
-
the method name
Return values
bool —whether the method is defined
hasProperty()
Returns a value indicating whether a property is defined.
public
hasProperty(string $name[, bool $checkVars = true ]) : bool
A property is defined if:
- the class has a getter or setter method associated with the specified name (in this case, property name is case-insensitive);
- the class has a member variable with the specified name (when
$checkVars
is true);
Parameters
- $name : string
-
the property name
- $checkVars : bool = true
-
whether to treat member variables as properties
Tags
Return values
bool —whether the property is defined
init()
Initializes the object.
public
init() : mixed
Tags
isAdmin()
public
isAdmin() : mixed
Tags
isGuest()
public
isGuest() : bool
Return values
bool —Checks if the given $user is set.
run()
Runs the current $rule setting against all available validators
public
run() : bool
Return values
boolsetRules()
Sets the current set of rules.
public
setRules([array<string|int, mixed> $rules = [] ]) : mixed
Note: This will merge the given set of rules with the fixed rules.
Parameters
- $rules : array<string|int, mixed> = []
-
sets th
validateAdminOnly()
public
validateAdminOnly() : bool
Return values
bool —makes sure the current user has administration rights
validateAjaxOnlyRequest()
public
validateAjaxOnlyRequest() : mixed
Return values
mixed —checks if the current request is an ajax request
validateContainerAccess()
public
validateContainerAccess() : bool
Return values
bool —Additional ContentContainerActiveRecord specific checks
validateDisabledUser()
public
validateDisabledUser() : bool
Return values
bool —checks if the current user is a disabled user
validateJsonResponse()
public
validateJsonResponse() : bool
Return values
bool —makes sure the response type is json
validateLoggedInOnly()
public
validateLoggedInOnly() : bool
Return values
bool —makes sure if the current user is loggedIn
validateMaintenanceMode()
public
validateMaintenanceMode() : bool
Tags
Return values
bool —makes sure the current user has an access on maintenance mode
validateMustChangePassword()
public
validateMustChangePassword() : bool
Tags
Return values
bool —checks if the current user must change password
validatePostRequest()
public
validatePostRequest() : mixed
Return values
mixed —checks if the current request is a post request
validateProfileOnlyRule()
public
validateProfileOnlyRule() : bool
Return values
bool —verifies 'userOnly' rules
validateSpaceOnlyRule()
public
validateSpaceOnlyRule() : bool
Return values
bool —verifies 'spaceOnly' rules
validateStrictMode()
public
validateStrictMode() : bool
Return values
bool —checks if guest mode is activated for guestaccess
validateUnapprovedUser()
public
validateUnapprovedUser() : bool
Return values
bool —checks if the current user is an unapproved user
findValidator()
protected
findValidator(mixed $ruleName) : mixed
Parameters
- $ruleName : mixed
getCustomValidator()
protected
getCustomValidator(mixed $ruleName) : mixed
Parameters
- $ruleName : mixed
getName()
Extracts the ruleName from a given rule option array.
protected
getName(mixed $arr) : mixed|null
Parameters
- $arr : mixed
Return values
mixed|nullisProfileController()
protected
isProfileController() : mixed
isSpaceController()
protected
isSpaceController() : mixed
registerValidator()
Adds a new validator to the available validators and sets some default values.
protected
registerValidator(mixed $options) : mixed
A validator shoud have the following form
['ruleName' => 'handler', 'code' => 401, 'reason' => 'Some message in case the validation failed']
to allow other direct settings required by the action validator e.g. direct permission settings.
Parameters
- $options : mixed
Tags
canAccessSpace()
private
canAccessSpace() : bool
Return values
bool —Space related access checks
canAccessUser()
private
canAccessUser() : bool
Return values
bool —User related access checks
getSpaceMembership()
private
getSpaceMembership() : Membership