Class: OpenActive::Validators::UriValidator

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

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.



10
11
12
13
14
# File 'lib/openactive/validators/uri_validator.rb', line 10

def coerce(value)
  return value if value.is_a?(::URI)

  URI.parse(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.



20
21
22
23
24
# File 'lib/openactive/validators/uri_validator.rb', line 20

def run(value)
  return true if value.is_a?(::URI)

  value =~ ::URI::DEFAULT_PARSER.make_regexp
end