Module: Queries::Helpers

Instance Method Summary collapse

Instance Method Details

#boolean_param(params, attribute) ⇒ Boolean?

Returns:

  • (Boolean, nil)


6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/queries/helpers.rb', line 6

def boolean_param(params, attribute)
  return nil if attribute.nil? || params[attribute].nil?
  case params[attribute].class.name
  when 'TrueClass', 'FalseClass'
    params[attribute]
  when 'String'
    params[attribute].downcase == 'true' ? true : false
  when 'Symbol'
    params[attribute].to_s.downcase == 'true' ? true : false
  else
    puts Rainbow(params[attribute].class.name.to_s).purple
    raise
  end
end

#integer_param(params, attribute) ⇒ Boolean?

Returns:

  • (Boolean, nil)


24
25
26
27
28
29
30
31
32
# File 'lib/queries/helpers.rb', line 24

def integer_param(params, attribute)
  return nil if attribute.nil? || params[attribute].nil?

  [params[attribute]].flatten.each do |v|
    next if Utilities::Strings.only_integer(v)
    raise TaxonWorks::Error::API, "values of #{attribute} must be integers (provided: #{params[attribute]})"
  end
  params[attribute]
end