Module: Investolink::Util
- Defined in:
- lib/investolink/util.rb
Class Method Summary collapse
- .convert_to_investolink_object(resp, api_key, api_token) ⇒ Object
- .encode_key(key) ⇒ Object
- .file_readable(file) ⇒ Object
- .flatten_params(params, parent_key = nil) ⇒ Object
- .flatten_params_array(value, calculated_key) ⇒ Object
- .objects_to_ids(h) ⇒ Object
- .symbolize_names(object) ⇒ Object
- .to_underscore(text) ⇒ Object
Class Method Details
.convert_to_investolink_object(resp, api_key, api_token) ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/investolink/util.rb', line 18 def self.convert_to_investolink_object(resp, api_key, api_token) types = { 'issuer' => Issuer, 'issue' => Issue, 'issue-transaction' => IssueTransaction, 'issuer-ownership' => IssuerOwnership, 'project' => Project, 'reward' => Reward, 'donation' => Donation, 'asset' => Asset, 'fundallocation' => Fundallocation, 'sociallink' => Sociallink, } case resp when Array resp.map { |i| convert_to_investolink_object(i, api_key, api_token) } when Hash # Try converting to a known object class. If none available, fall back to generic Resource if klass_name = resp[:object] klass = types[klass_name] end klass ||= InvestolinkObject klass.construct_from(resp, api_key, api_token) else resp end end |
.encode_key(key) ⇒ Object
72 73 74 |
# File 'lib/investolink/util.rb', line 72 def self.encode_key(key) URI.escape(key.to_s, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]")) end |
.file_readable(file) ⇒ Object
46 47 48 49 50 51 52 53 54 |
# File 'lib/investolink/util.rb', line 46 def self.file_readable(file) begin File.open(file) { |f| } rescue false else true end end |
.flatten_params(params, parent_key = nil) ⇒ Object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/investolink/util.rb', line 76 def self.flatten_params(params, parent_key=nil) result = [] params.each do |key, value| calculated_key = parent_key ? "#{parent_key}[#{encode_key(key)}]" : encode_key(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
91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/investolink/util.rb', line 91 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 |
.objects_to_ids(h) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/investolink/util.rb', line 3 def self.objects_to_ids(h) case h when Resource h.id 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
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/investolink/util.rb', line 56 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 |
.to_underscore(text) ⇒ Object
105 106 107 |
# File 'lib/investolink/util.rb', line 105 def self.to_underscore(text) text.gsub(/(.)([A-Z])/,'\1-\2').downcase end |