Class: RequestType::Validator

Inherits:
ApplicationRecord show all
Defined in:
app/models/request_type/validator.rb

Overview

A request type validator belongs to a request type, and is responsible for validating a single request option request_option => The option that will be validated valid_options => A serialized object that responds to include? Returning true if the option is present It should also return an array of valid options in response to to_a

Defined Under Namespace

Classes: ArrayWithDefault, FlowcellTypeValidator, LibraryTypeValidator, NullValidator

Instance Method Summary collapse

Methods inherited from ApplicationRecord

alias_association, convert_labware_to_receptacle_for, find_by_id_or_name, find_by_id_or_name!

Methods included from Squishify

extended

Instance Method Details

#allow_blank?Boolean

Returns:

  • (Boolean)


129
130
131
132
# File 'app/models/request_type/validator.rb', line 129

def allow_blank?
  return false unless valid_options.respond_to? :allow_blank?
  valid_options.allow_blank?
end

#defaultObject



121
122
123
# File 'app/models/request_type/validator.rb', line 121

def default
  valid_options.respond_to?(:default) ? valid_options.default : nil
end

#optionsObject



117
118
119
# File 'app/models/request_type/validator.rb', line 117

def options
  valid_options.to_a
end

#type_castObject



125
126
127
# File 'app/models/request_type/validator.rb', line 125

def type_cast
  { 'read_length' => :to_i, 'insert_size' => :to_i }[request_option]
end

#validate?(value) ⇒ Boolean

Returns:

  • (Boolean)


113
114
115
# File 'app/models/request_type/validator.rb', line 113

def validate?(value)
  valid_options.include?(value)
end