Module: Eligible::Util

Defined in:
lib/eligible/util.rb

Class Method Summary collapse

Class Method Details

.convert_to_eligible_object(resp, api_key) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/eligible/util.rb', line 12

def self.convert_to_eligible_object(resp, api_key)
  case resp
  when Array
    if resp[0] && resp[0][:enrollment_npi]
      Enrollment.construct_from({ enrollments: resp }, api_key)
    else
      resp.map { |i| convert_to_eligible_object(i, api_key) }
    end
  when Hash
    if resp[:enrollment_npi]
      klass = Enrollment
    elsif resp[:demographics]
      klass = Coverage
    elsif resp[:subscriber] && resp[:dependent]
      klass = Demographic
    end
    klass ||= EligibleObject
    klass.construct_from(resp, api_key)
  else
    resp
  end
end

.flatten_params(params, parent_key = nil) ⇒ Object



61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/eligible/util.rb', line 61

def self.flatten_params(params, parent_key = nil)
  result = []
  params.each do |key, value|
    calculated_key = parent_key ? "#{parent_key}[#{url_encode(key)}]" : url_encode(key)
    if value.is_a?(Hash)
      result += flatten_params(value, calculated_key)
    elsif value.is_a?(Array)
      result += flatten_params_array(value, calculated_key)
    else
      result << [calculated_key, value]
    end
  end
  result
end

.flatten_params_array(value, calculated_key) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/eligible/util.rb', line 76

def self.flatten_params_array(value, calculated_key)
  result = []
  value.each_with_index do |elem, index|
    if elem.is_a?(Hash)
      result += flatten_params(elem, "#{calculated_key}[]")
    elsif elem.is_a?(Array)
      result += flatten_params_array(elem, calculated_key)
    else
      result << ["#{calculated_key}[#{index}]", elem]
    end
  end
  result
end

.key?(params, key) ⇒ Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/eligible/util.rb', line 4

def self.key?(params, key)
  [key.to_sym, key.to_s].any? { |k| params.key?(k) }
end

.symbolize_name(key) ⇒ Object

Converts a key into a symbol if it is possible, returns the key if it is not



36
37
38
39
# File 'lib/eligible/util.rb', line 36

def self.symbolize_name(key)
  return key unless key.respond_to?(:to_sym)
  return key.to_sym
end

.symbolize_names(object) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/eligible/util.rb', line 41

def self.symbolize_names(object)
  case object
  when Hash
    {}.tap do |new_hash|
      object.each do |key, value|
        key = symbolize_name(key)
        new_hash[key] = symbolize_names(value)
      end
    end
  when Array
    object.map { |value| symbolize_names(value) }
  else
    object
  end
end

.url_encode(key) ⇒ Object



57
58
59
# File 'lib/eligible/util.rb', line 57

def self.url_encode(key)
  CGI.escape(key.to_s)
end

.value(params, key) ⇒ Object



8
9
10
# File 'lib/eligible/util.rb', line 8

def self.value(params, key)
  params[key.to_sym] || params[key.to_s]
end