MediaWiki
1.34.0
|
Service for formatting and validating API parameters. More...
Public Member Functions | |
__construct (Callbacks $callbacks, ObjectFactory $objectFactory, array $options=[]) | |
addTypeDef ( $name, $typeDef) | |
Register a type handler. More... | |
addTypeDefs (array $typeDefs) | |
Register multiple type handlers. More... | |
getTypeDef ( $type) | |
Get the TypeDef for a type. More... | |
getValue ( $name, $settings, array $options=[]) | |
Fetch and valiate a parameter value using a settings array. More... | |
hasTypeDef ( $name) | |
Test if a type is registered. More... | |
knownTypes () | |
List known type names. More... | |
normalizeSettings ( $settings) | |
Normalize a parameter settings array. More... | |
overrideTypeDef ( $name, $typeDef) | |
Register a type handler, overriding any existing handler. More... | |
validateValue ( $name, $value, $settings, array $options=[]) | |
Valiate a parameter value using a settings array. More... | |
Static Public Member Functions | |
static | explodeMultiValue ( $value, $limit) |
Split a multi-valued parameter string, like explode() More... | |
Public Attributes | |
const | ALL_DEFAULT_STRING = '*' |
Magic "all values" value when PARAM_ALL is true. More... | |
Constants for parameter settings arrays | |
These constants are keys in the settings array that define how the parameters coming in from the request are to be interpreted. If a constant is associated with a ValidationException, the failure code and data are described. ValidationExceptions are typically thrown, but those indicated as "non-fatal" are instead passed to Callbacks::recordCondition(). Additional constants may be defined by TypeDef subclasses, or by other libraries for controlling things like auto-generated parameter documentation. For purposes of namespacing the constants, the values of all constants defined by this library begin with 'param-'. | |
const | PARAM_DEFAULT = 'param-default' |
(mixed) Default value of the parameter. More... | |
const | PARAM_TYPE = 'param-type' |
(string|array) Type of the parameter. More... | |
const | PARAM_REQUIRED = 'param-required' |
(bool) Indicate that the parameter is required. More... | |
const | PARAM_ISMULTI = 'param-ismulti' |
(bool) Indicate that the parameter is multi-valued. More... | |
const | PARAM_ISMULTI_LIMIT1 = 'param-ismulti-limit1' |
(int) Maximum number of multi-valued parameter values allowed More... | |
const | PARAM_ISMULTI_LIMIT2 = 'param-ismulti-limit2' |
(int) Maximum number of multi-valued parameter values allowed for users allowed high limits. More... | |
const | PARAM_ALL = 'param-all' |
(bool|string) Whether a magic "all values" value exists for multi-valued enumerated types, and if so what that value is. More... | |
const | PARAM_ALLOW_DUPLICATES = 'param-allow-duplicates' |
(bool) Allow the same value to be set more than once when PARAM_ISMULTI is true? More... | |
const | PARAM_SENSITIVE = 'param-sensitive' |
(bool) Indicate that the parameter's value should not be logged. More... | |
const | PARAM_DEPRECATED = 'param-deprecated' |
(bool) Indicate that a deprecated parameter was used. More... | |
const | PARAM_IGNORE_INVALID_VALUES = 'param-ignore-invalid-values' |
(bool) Whether to ignore invalid values. More... | |
Static Public Attributes | |
static | $STANDARD_TYPES |
A list of standard type names and types that may be passed as $typeDefs to __construct(). More... | |
Private Attributes | |
Callbacks | $callbacks |
int | $ismultiLimit1 |
Default values for PARAM_ISMULTI_LIMIT1. More... | |
int | $ismultiLimit2 |
Default values for PARAM_ISMULTI_LIMIT2. More... | |
ObjectFactory | $objectFactory |
TypeDef array[] | $typeDefs = [] |
Map parameter type names to TypeDef objects or ObjectFactory specs. More... | |
Service for formatting and validating API parameters.
A settings array is simply an array with keys being the relevant PARAM_* constants from this class, TypeDef, and its subclasses.
As a general overview of the architecture here:
Definition at line 38 of file ParamValidator.php.
Wikimedia\ParamValidator\ParamValidator::__construct | ( | Callbacks | $callbacks, |
ObjectFactory | $objectFactory, | ||
array | $options = [] |
||
) |
Callbacks | $callbacks | |
ObjectFactory | $objectFactory | To turn specs into TypeDef objects |
array | $options | Associative array of additional settings
|
Definition at line 220 of file ParamValidator.php.
References Wikimedia\ParamValidator\ParamValidator\$callbacks, Wikimedia\ParamValidator\ParamValidator\$objectFactory, and Wikimedia\ParamValidator\ParamValidator\addTypeDefs().
Wikimedia\ParamValidator\ParamValidator::addTypeDef | ( | $name, | |
$typeDef | |||
) |
Register a type handler.
To allow code to omit PARAM_TYPE in settings arrays to derive the type from PARAM_DEFAULT, it is strongly recommended that the following types be registered: "boolean", "integer", "double", "string", "NULL", and "enum".
When using ObjectFactory specs, the following extra arguments are passed:
string | $name | Type name |
TypeDef | array | $typeDef | Type handler or ObjectFactory spec to create one. |
Definition at line 266 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\addTypeDefs().
Wikimedia\ParamValidator\ParamValidator::addTypeDefs | ( | array | $typeDefs | ) |
Register multiple type handlers.
array | $typeDefs | Associative array mapping $name to $typeDef . |
Definition at line 247 of file ParamValidator.php.
References Wikimedia\ParamValidator\ParamValidator\$typeDefs, and Wikimedia\ParamValidator\ParamValidator\addTypeDef().
Referenced by Wikimedia\ParamValidator\ParamValidator\__construct().
|
static |
Split a multi-valued parameter string, like explode()
Note that, unlike explode(), this will return an empty array when given an empty string.
string | $value | |
int | $limit |
Definition at line 508 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\TypeDef\EnumDef\validate(), and Wikimedia\ParamValidator\ParamValidator\validateValue().
Wikimedia\ParamValidator\ParamValidator::getTypeDef | ( | $type | ) |
Get the TypeDef for a type.
string | array | $type | Any array is considered equivalent to the string "enum". |
Definition at line 313 of file ParamValidator.php.
References $type.
Referenced by Wikimedia\ParamValidator\ParamValidator\getValue(), Wikimedia\ParamValidator\ParamValidator\normalizeSettings(), and Wikimedia\ParamValidator\ParamValidator\validateValue().
Wikimedia\ParamValidator\ParamValidator::getValue | ( | $name, | |
$settings, | |||
array | $options = [] |
||
) |
Fetch and valiate a parameter value using a settings array.
string | $name | Parameter name |
array | mixed | $settings | Default value or an array of settings using PARAM_* constants. |
array | $options | Options array, passed through to the TypeDef and Callbacks. |
ValidationException | if the value is invalid |
Definition at line 371 of file ParamValidator.php.
References Wikimedia\ParamValidator\ParamValidator\getTypeDef(), Wikimedia\ParamValidator\ParamValidator\normalizeSettings(), Wikimedia\ParamValidator\ParamValidator\PARAM_DEFAULT, and Wikimedia\ParamValidator\ParamValidator\validateValue().
Wikimedia\ParamValidator\ParamValidator::hasTypeDef | ( | $name | ) |
Test if a type is registered.
string | $name | Type name |
Definition at line 304 of file ParamValidator.php.
Wikimedia\ParamValidator\ParamValidator::knownTypes | ( | ) |
Wikimedia\ParamValidator\ParamValidator::normalizeSettings | ( | $settings | ) |
Normalize a parameter settings array.
array | mixed | $settings | Default value or an array of settings using PARAM_* constants. |
Definition at line 340 of file ParamValidator.php.
References Wikimedia\ParamValidator\ParamValidator\getTypeDef(), and Wikimedia\ParamValidator\ParamValidator\PARAM_TYPE.
Referenced by Wikimedia\ParamValidator\ParamValidator\getValue(), and Wikimedia\ParamValidator\ParamValidator\validateValue().
Wikimedia\ParamValidator\ParamValidator::overrideTypeDef | ( | $name, | |
$typeDef | |||
) |
Register a type handler, overriding any existing handler.
string | $name | Type name |
TypeDef | array | null | $typeDef | As for addTypeDef, or null to unregister a type. |
Definition at line 285 of file ParamValidator.php.
Wikimedia\ParamValidator\ParamValidator::validateValue | ( | $name, | |
$value, | |||
$settings, | |||
array | $options = [] |
||
) |
Valiate a parameter value using a settings array.
string | $name | Parameter name |
null | mixed | $value | Parameter value |
array | mixed | $settings | Default value or an array of settings using PARAM_* constants. |
array | $options | Options array, passed through to the TypeDef and Callbacks.
|
ValidationException | if the value is invalid |
Definition at line 418 of file ParamValidator.php.
References Wikimedia\ParamValidator\ParamValidator\$ismultiLimit1, Wikimedia\ParamValidator\ParamValidator\$ismultiLimit2, Wikimedia\ParamValidator\ParamValidator\ALL_DEFAULT_STRING, Wikimedia\ParamValidator\ParamValidator\explodeMultiValue(), Wikimedia\ParamValidator\ParamValidator\getTypeDef(), Wikimedia\ParamValidator\ParamValidator\normalizeSettings(), Wikimedia\ParamValidator\ParamValidator\PARAM_ALL, Wikimedia\ParamValidator\ParamValidator\PARAM_ISMULTI_LIMIT1, and Wikimedia\ParamValidator\ParamValidator\PARAM_ISMULTI_LIMIT2.
Referenced by Wikimedia\ParamValidator\ParamValidator\getValue().
|
private |
Definition at line 197 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\__construct().
|
private |
Default values for PARAM_ISMULTI_LIMIT1.
Definition at line 206 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\validateValue().
|
private |
Default values for PARAM_ISMULTI_LIMIT2.
Definition at line 209 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\validateValue().
|
private |
Definition at line 200 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\__construct().
|
static |
A list of standard type names and types that may be passed as $typeDefs
to __construct().
Definition at line 176 of file ParamValidator.php.
|
private |
Map parameter type names to TypeDef objects or ObjectFactory specs.
Definition at line 203 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\addTypeDefs().
const Wikimedia\ParamValidator\ParamValidator::ALL_DEFAULT_STRING = '*' |
Magic "all values" value when PARAM_ALL is true.
Definition at line 173 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\validateValue().
const Wikimedia\ParamValidator\ParamValidator::PARAM_ALL = 'param-all' |
(bool|string) Whether a magic "all values" value exists for multi-valued enumerated types, and if so what that value is.
When PARAM_TYPE has a defined set of values and PARAM_ISMULTI is true, this allows for an asterisk ('*') to be passed in place of a pipe-separated list of every possible value. If a string is set, it will be used in place of the asterisk.
Definition at line 136 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\validateValue().
const Wikimedia\ParamValidator\ParamValidator::PARAM_ALLOW_DUPLICATES = 'param-allow-duplicates' |
(bool) Allow the same value to be set more than once when PARAM_ISMULTI is true?
If not truthy, the set of values will be passed through array_values( array_unique() )
. The default is falsey.
Definition at line 144 of file ParamValidator.php.
const Wikimedia\ParamValidator\ParamValidator::PARAM_DEFAULT = 'param-default' |
(mixed) Default value of the parameter.
If omitted, null is the default.
Definition at line 59 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\TypeDef\describeSettings(), and Wikimedia\ParamValidator\ParamValidator\getValue().
const Wikimedia\ParamValidator\ParamValidator::PARAM_DEPRECATED = 'param-deprecated' |
(bool) Indicate that a deprecated parameter was used.
ValidationException codes: (non-fatal)
Definition at line 160 of file ParamValidator.php.
const Wikimedia\ParamValidator\ParamValidator::PARAM_IGNORE_INVALID_VALUES = 'param-ignore-invalid-values' |
(bool) Whether to ignore invalid values.
This controls whether certain ValidationExceptions are considered fatal or non-fatal. The default is false.
Definition at line 168 of file ParamValidator.php.
const Wikimedia\ParamValidator\ParamValidator::PARAM_ISMULTI = 'param-ismulti' |
(bool) Indicate that the parameter is multi-valued.
A multi-valued parameter may be submitted in one of several formats. All of the following result a value of ‘[ 'a’, 'b', 'c' ]`.
Each of the multiple values is passed individually to the TypeDef. $options will contain a 'values-list' key holding the entire list.
By default duplicates are removed from the resulting parameter list. Use PARAM_ALLOW_DUPLICATES to override that behavior.
ValidationException codes:
Definition at line 101 of file ParamValidator.php.
const Wikimedia\ParamValidator\ParamValidator::PARAM_ISMULTI_LIMIT1 = 'param-ismulti-limit1' |
(int) Maximum number of multi-valued parameter values allowed
PARAM_ISMULTI_LIMIT1 is the normal limit, and PARAM_ISMULTI_LIMIT2 is the limit when useHighLimits() returns true.
ValidationException codes:
Definition at line 113 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\validateValue().
const Wikimedia\ParamValidator\ParamValidator::PARAM_ISMULTI_LIMIT2 = 'param-ismulti-limit2' |
(int) Maximum number of multi-valued parameter values allowed for users allowed high limits.
PARAM_ISMULTI_LIMIT1 is the normal limit, and PARAM_ISMULTI_LIMIT2 is the limit when useHighLimits() returns true.
ValidationException codes:
Definition at line 126 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\ParamValidator\validateValue().
const Wikimedia\ParamValidator\ParamValidator::PARAM_REQUIRED = 'param-required' |
(bool) Indicate that the parameter is required.
ValidationException codes:
Definition at line 75 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\TypeDef\StringDef\validate().
const Wikimedia\ParamValidator\ParamValidator::PARAM_SENSITIVE = 'param-sensitive' |
(bool) Indicate that the parameter's value should not be logged.
ValidationException codes: (non-fatal)
Definition at line 152 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\TypeDef\PasswordDef\normalizeSettings().
const Wikimedia\ParamValidator\ParamValidator::PARAM_TYPE = 'param-type' |
(string|array) Type of the parameter.
Must be a registered type or an array of enumerated values (in which case the "enum" type must be registered). If omitted, the default is the PHP type of the default value (see PARAM_DEFAULT).
Definition at line 67 of file ParamValidator.php.
Referenced by Wikimedia\ParamValidator\TypeDef\EnumDef\getEnumValues(), and Wikimedia\ParamValidator\ParamValidator\normalizeSettings().