MediaWiki REL1_35
Wikimedia\ParamValidator\TypeDef\ExpiryDef Class Reference

Type definition for expiry timestamps. More...

Inheritance diagram for Wikimedia\ParamValidator\TypeDef\ExpiryDef:
Collaboration diagram for Wikimedia\ParamValidator\TypeDef\ExpiryDef:

Public Member Functions

 getHelpInfo ( $name, array $settings, array $options)
 Describe parameter settings in human-readable format.
 
 validate ( $name, $value, array $settings, array $options)
 Validate the value.
 
- Public Member Functions inherited from Wikimedia\ParamValidator\TypeDef
 __construct (Callbacks $callbacks)
 Stable to call.
 
 checkSettings (string $name, $settings, array $options, array $ret)
 Validate a parameter settings array.
 
 getEnumValues ( $name, array $settings, array $options)
 Get the values for enum-like parameters.
 
 getParamInfo ( $name, array $settings, array $options)
 Describe parameter settings in a machine-readable format.
 
 getValue ( $name, array $settings, array $options)
 Get the value from the request Stable to override.
 
 normalizeSettings (array $settings)
 Normalize a settings array Stable to override.
 
 stringifyValue ( $name, $value, array $settings, array $options)
 Convert a value to a string representation.
 

Static Public Member Functions

static normalizeExpiry (?string $expiry=null, ?int $style=null)
 Normalize a user-inputted expiry in ConvertibleTimestamp.
 
static normalizeUsingMaxExpiry (?string $expiry, ?string $maxExpiryDuration, ?int $style)
 Returns a normalized expiry or the max expiry if the given expiry exceeds it.
 

Public Attributes

const PARAM_MAX = 'param-max'
 (int|float) Maximum non-infinity duration.
 
const PARAM_USE_MAX = 'param-use-max'
 (bool) If truthy, the value given for the PARAM_MAX setting is used if the provided expiry exceeds it, and the 'badexpiry-duration' message is shown as a warning.
 

Static Private Member Functions

static expiryExceedsMax (?string $expiry, ?string $max=null)
 Given an expiry, test if the normalized value exceeds the given maximum.
 

Additional Inherited Members

- Protected Member Functions inherited from Wikimedia\ParamValidator\TypeDef
 failure ( $failure, $name, $value, array $settings, array $options, $fatal=true)
 Record a failure message.
 
 failureMessage ( $code, array $data=null, $suffix=null)
 Create a DataMessageValue representing a failure.
 
- Protected Attributes inherited from Wikimedia\ParamValidator\TypeDef
Callbacks $callbacks
 

Detailed Description

Type definition for expiry timestamps.

Since
1.35

Definition at line 17 of file ExpiryDef.php.

Member Function Documentation

◆ expiryExceedsMax()

static Wikimedia\ParamValidator\TypeDef\ExpiryDef::expiryExceedsMax ( ?string  $expiry,
?string  $max = null 
)
staticprivate

Given an expiry, test if the normalized value exceeds the given maximum.

Parameters
string | null$expiry
string | null$maxRelative maximum duration acceptable by strtotime() (i.e. '6 months')
Returns
bool

Definition at line 142 of file ExpiryDef.php.

◆ getHelpInfo()

Wikimedia\ParamValidator\TypeDef\ExpiryDef::getHelpInfo (   $name,
array  $settings,
array  $options 
)

Describe parameter settings in human-readable format.

Keys in the returned array should generally correspond to PARAM constants.

If relevant, a MessageValue describing the type itself should be returned with key ParamValidator::PARAM_TYPE.

The default messages for other ParamValidator-defined PARAM constants may be suppressed by returning null as the value for those constants, or replaced by returning a replacement MessageValue. Normally, however, the default messages should not be changed.

MessageValues describing any other constraints applied via PARAM constants specific to this class should also be returned. Stable to override

Parameters
string$nameParameter name being described.
array$settingsParameter settings array.
array$optionsOptions array.
Returns
(MessageValue|null)[]

Reimplemented from Wikimedia\ParamValidator\TypeDef.

Definition at line 65 of file ExpiryDef.php.

References Wikimedia\ParamValidator\ParamValidator\PARAM_ISMULTI, and Wikimedia\ParamValidator\ParamValidator\PARAM_TYPE.

◆ normalizeExpiry()

static Wikimedia\ParamValidator\TypeDef\ExpiryDef::normalizeExpiry ( ?string  $expiry = null,
?int  $style = null 
)
static

Normalize a user-inputted expiry in ConvertibleTimestamp.

Parameters
string | null$expiry
int | null$stylenull or in a format acceptable to ConvertibleTimestamp (TS_* constants)
Returns
ConvertibleTimestamp|string|null Timestamp as ConvertibleTimestamp if $style is null, a string timestamp in $style is not null, 'infinity' if $expiry is one of the self::INFINITY_VALS, or null if $expiry is null.
Exceptions
InvalidArgumentExceptionif $expiry is invalid

Definition at line 92 of file ExpiryDef.php.

Referenced by Wikimedia\ParamValidator\TypeDef\ExpiryDef\normalizeUsingMaxExpiry(), and Wikimedia\ParamValidator\TypeDef\ExpiryDef\validate().

◆ normalizeUsingMaxExpiry()

static Wikimedia\ParamValidator\TypeDef\ExpiryDef::normalizeUsingMaxExpiry ( ?string  $expiry,
?string  $maxExpiryDuration,
?int  $style 
)
static

Returns a normalized expiry or the max expiry if the given expiry exceeds it.

Parameters
string | null$expiry
string | null$maxExpiryDuration
int | null$stylenull or in a format acceptable to ConvertibleTimestamp (TS_* constants)
Returns
ConvertibleTimestamp|string|null Timestamp as ConvertibleTimestamp if $style is null, a string timestamp in $style is not null, 'infinity' if $expiry is one of the self::INFINITY_VALS, or null if $expiry is null.

Definition at line 128 of file ExpiryDef.php.

References Wikimedia\ParamValidator\TypeDef\ExpiryDef\normalizeExpiry().

◆ validate()

Wikimedia\ParamValidator\TypeDef\ExpiryDef::validate (   $name,
  $value,
array  $settings,
array  $options 
)

Validate the value.

When ParamValidator is processing a multi-valued parameter, this will be called once for each of the supplied values. Which may mean zero calls.

When getValue() returned null, this will not be called.

Parameters
string$nameParameter name being validated.
mixed$valueValue to validate, from getValue().
array$settingsParameter settings array.
array$optionsOptions array. Note the following values that may be set by ParamValidator:
  • is-default: (bool) If present and true, the value was taken from PARAM_DEFAULT rather that being supplied by the client.
  • values-list: (string[]) If defined, values of a multi-valued parameter are being processed (and this array holds the full set of values).
Returns
mixed Validated value
Exceptions
ValidationExceptionif the value is invalid

Reimplemented from Wikimedia\ParamValidator\TypeDef.

Definition at line 35 of file ExpiryDef.php.

References Wikimedia\ParamValidator\TypeDef\failure(), Wikimedia\ParamValidator\TypeDef\ExpiryDef\normalizeExpiry(), and Wikimedia\ParamValidator\TypeDef\ExpiryDef\PARAM_MAX.

Member Data Documentation

◆ PARAM_MAX

const Wikimedia\ParamValidator\TypeDef\ExpiryDef::PARAM_MAX = 'param-max'

(int|float) Maximum non-infinity duration.

Definition at line 33 of file ExpiryDef.php.

Referenced by Wikimedia\ParamValidator\TypeDef\ExpiryDef\validate().

◆ PARAM_USE_MAX

const Wikimedia\ParamValidator\TypeDef\ExpiryDef::PARAM_USE_MAX = 'param-use-max'

(bool) If truthy, the value given for the PARAM_MAX setting is used if the provided expiry exceeds it, and the 'badexpiry-duration' message is shown as a warning.

If false, 'badexpiry-duration' is shown and is fatal.

Definition at line 28 of file ExpiryDef.php.


The documentation for this class was generated from the following file: