Module: BoffinIO::Util

Defined in:
lib/boffinio/util.rb

Class Method Summary collapse

Class Method Details

.convert_to_boffinio_object(resp, api_key) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
# File 'lib/boffinio/util.rb', line 75

def self.convert_to_boffinio_object(resp, api_key)
  case resp
  when Array
    resp.map { |i| convert_to_boffinio_object(i, api_key) }
  when Hash
    # Try converting to a known object class.  If none available, fall back to generic BoffinIOObject
    object_classes.fetch(resp[:object], BoffinIOObject).construct_from(resp, api_key)
  else
    resp
  end
end

.flatten_params(params, parent_key = nil) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/boffinio/util.rb', line 46

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



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

def self.flatten_params_array(value, calculated_key)
  result = []
  value.each do |elem|
    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}[]", elem]
    end
  end
  result
end

.object_classesObject



17
18
19
20
21
22
23
24
# File 'lib/boffinio/util.rb', line 17

def self.object_classes
  @object_classes ||= {
    'list' => ListObject,
    'customer' => Customer,
    'subscription' => Subscription,
    'plan' => Plan
  }
end

.objects_to_ids(h) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/boffinio/util.rb', line 4

def self.objects_to_ids(h)
  case h
  when Hash
    res = {}
    h.each { |k, v| res[k] = objects_to_ids(v) unless v.nil? }
    res
  when Array
    h.map { |v| objects_to_ids(v) }
  else
    h
  end
end

.symbolize_names(object) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/boffinio/util.rb', line 26

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

.url_encode(key) ⇒ Object



42
43
44
# File 'lib/boffinio/util.rb', line 42

def self.url_encode(key)
  URI.escape(key.to_s, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))
end