Class: OpenActive::Validators::TimeValidator

Inherits:
BaseValidator show all
Defined in:
lib/openactive/validators/time_validator.rb

Overview

Constant Summary collapse

REGEX =
/(?<hour>2[0-3]|[01][0-9]):?(?<minute>[0-5][0-9]):?(?<second>[0-5][0-9])?(?<timezone>Z|[+-](?:2[0-3]|[01][0-9])(?::?(?:[0-5][0-9]))?)?/

Instance Method Summary collapse

Methods inherited from BaseValidator

get_validator

Instance Method Details

#coerce(value) ⇒ mixed

Coerce given value to the type the validator is validating against. PLEASE NOTE: no checks are performed on the given value. It is therefore recommended to call the “run” method first before this.

Parameters:

  • value (mixed)

    The value to coerce.

Returns:

  • (mixed)

    The same value.



16
17
18
# File 'lib/openactive/validators/time_validator.rb', line 16

def coerce(value)
  value
end

#run(value) ⇒ Boolean

Run validation on the given value.

Parameters:

  • value (mixed)

    The value to validate.

Returns:

  • (Boolean)

    Whether validation passes or not.



24
25
26
# File 'lib/openactive/validators/time_validator.rb', line 24

def run(value)
  REGEX =~ value
end