MediaWiki master
Wikimedia\ParamValidator\TypeDef\TimestampDef Class Reference

Type definition for timestamp types. More...

Inherits Wikimedia\ParamValidator\TypeDef.

Collaboration diagram for Wikimedia\ParamValidator\TypeDef\TimestampDef:

Public Member Functions

 __construct (Callbacks $callbacks, array $options=[])
 
 checkSettings (string $name, $settings, array $options, array $ret)
 Validate a parameter settings array.
 
 getHelpInfo ( $name, array $settings, array $options)
 Describe parameter settings in human-readable format.
 
 stringifyValue ( $name, $value, array $settings, array $options)
 Convert a value to a string representation.
 
 validate ( $name, $value, array $settings, array $options)
 Validate the value.
 
- Public Member Functions inherited from Wikimedia\ParamValidator\TypeDef
 __construct (Callbacks $callbacks)
 
 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.
 
 normalizeSettings (array $settings)
 Normalize a settings array.
 
 supportsArrays ()
 Whether the value may be an array.
 

Public Attributes

const PARAM_TIMESTAMP_FORMAT = 'param-timestamp-format'
 (string|int) Timestamp format to return from validate()
 

Protected Attributes

string int $defaultFormat
 
int $stringifyFormat
 
- Protected Attributes inherited from Wikimedia\ParamValidator\TypeDef
Callbacks $callbacks
 

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.
 

Detailed Description

Type definition for timestamp types.

This uses the wikimedia/timestamp library for parsing and formatting the timestamps.

The result from validate() is a ConvertibleTimestamp by default, but this may be changed by both a constructor option and a PARAM constant.

Failure codes:

  • 'badtimestamp': The timestamp is not valid. No data, but the TimestampException is available via Exception::getPrevious().
  • 'unclearnowtimestamp': Non-fatal. The value is the empty string or "0". Use 'now' instead if you really want the current timestamp. No data.
Since
1.34
Stability: unstable

Definition at line 32 of file TimestampDef.php.

Constructor & Destructor Documentation

◆ __construct()

Wikimedia\ParamValidator\TypeDef\TimestampDef::__construct ( Callbacks $callbacks,
array $options = [] )
Parameters
Callbacks$callbacks
array$optionsOptions:
  • defaultFormat: (string|int) Default for PARAM_TIMESTAMP_FORMAT. Default if not specified is 'ConvertibleTimestamp'.
  • stringifyFormat: (int) Format to use for stringifyValue(). Default is TS_ISO_8601.

Definition at line 60 of file TimestampDef.php.

References Wikimedia\ParamValidator\TypeDef\$callbacks.

Member Function Documentation

◆ checkSettings()

Wikimedia\ParamValidator\TypeDef\TimestampDef::checkSettings ( string $name,
$settings,
array $options,
array $ret )

Validate a parameter settings array.

This is intended for validation of parameter settings during unit or integration testing, and should implement strict checks.

The rest of the code should generally be more permissive.

See also
ParamValidator::checkSettings()
Stability: stable
to override
Parameters
string$nameParameter name
array | mixed$settingsDefault value or an array of settings using PARAM_* constants.
array$optionsOptions array, passed through to the TypeDef and Callbacks.
array$ret
  • 'issues': (string[]) Errors detected in $settings, as English text. If the settings are valid, this will be the empty array. Keys on input are ParamValidator constants, allowing the typedef to easily override core validation; this need not be preserved when returned.
  • 'allowedKeys': (string[]) ParamValidator keys that are allowed in $settings.
  • 'messages': (MessageValue[]) Messages to be checked for existence.
Returns
array $ret, with any relevant changes.

Reimplemented from Wikimedia\ParamValidator\TypeDef.

Definition at line 113 of file TimestampDef.php.

◆ getHelpInfo()

Wikimedia\ParamValidator\TypeDef\TimestampDef::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.

Stability: 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 137 of file TimestampDef.php.

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

◆ stringifyValue()

Wikimedia\ParamValidator\TypeDef\TimestampDef::stringifyValue ( $name,
$value,
array $settings,
array $options )

Convert a value to a string representation.

This is intended as the inverse of getValue() and validate(): this should accept anything returned by those methods or expected to be used as PARAM_DEFAULT, and if the string from this method is passed in as client input or PARAM_DEFAULT it should give equivalent output from validate().

Parameters
string$nameParameter name being converted.
mixed$valueParameter value being converted. Do not pass null.
array$settingsParameter settings array.
array$optionsOptions array.
Returns
string|null Return null if there is no representation of $value reasonably satisfying the description given.

Reimplemented from Wikimedia\ParamValidator\TypeDef.

Definition at line 130 of file TimestampDef.php.

◆ validate()

Wikimedia\ParamValidator\TypeDef\TimestampDef::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 77 of file TimestampDef.php.

References Wikimedia\ParamValidator\TypeDef\TimestampDef\$defaultFormat, Wikimedia\ParamValidator\TypeDef\failure(), Wikimedia\ParamValidator\TypeDef\failureMessage(), and Wikimedia\ParamValidator\TypeDef\TimestampDef\PARAM_TIMESTAMP_FORMAT.

Member Data Documentation

◆ $defaultFormat

string int Wikimedia\ParamValidator\TypeDef\TimestampDef::$defaultFormat
protected

◆ $stringifyFormat

int Wikimedia\ParamValidator\TypeDef\TimestampDef::$stringifyFormat
protected

Definition at line 50 of file TimestampDef.php.

◆ PARAM_TIMESTAMP_FORMAT

const Wikimedia\ParamValidator\TypeDef\TimestampDef::PARAM_TIMESTAMP_FORMAT = 'param-timestamp-format'

(string|int) Timestamp format to return from validate()

Values include:

  • 'ConvertibleTimestamp': A ConvertibleTimestamp object.
  • 'DateTime': A PHP DateTime object
  • One of ConvertibleTimestamp's TS_* constants.

This does not affect the format returned by stringifyValue().

Definition at line 44 of file TimestampDef.php.

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


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