Class: Customerio::ParamEncoder
- Inherits:
-
Object
- Object
- Customerio::ParamEncoder
- Defined in:
- lib/customerio/param_encoder.rb
Class Method Summary collapse
-
.escape_value(value) ⇒ Object
Prefer ERB::Util.url_encode, fall back to deprecation URI.encode for old Ruby support.
-
.normalize_param(key, value) ⇒ String
This key value pair as a param.
-
.to_params(hash) ⇒ String
This hash as a query string.
Class Method Details
.escape_value(value) ⇒ Object
Prefer ERB::Util.url_encode, fall back to deprecation URI.encode for old Ruby support
60 61 62 63 64 65 66 |
# File 'lib/customerio/param_encoder.rb', line 60 def self.escape_value(value) if ERB::Util.respond_to? :url_encode ERB::Util.url_encode(value.to_s) else URI.encode(value.to_s, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]")) end end |
.normalize_param(key, value) ⇒ String
Returns This key value pair as a param.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/customerio/param_encoder.rb', line 33 def self.normalize_param(key, value) param = '' stack = [] if value.respond_to?(:to_ary) param << value.to_ary.map { |element| normalize_param("#{key}[]", element) }.join elsif value.respond_to?(:to_hash) stack << [key, value.to_hash] else param << "#{key}=#{escape_value(value)}&" end stack.each do |parent, hash| hash.each do |k, v| if v.respond_to?(:to_hash) stack << ["#{parent}[#{k}]", v.to_hash] else param << normalize_param("#{parent}[#{k}]", v) end end end param end |
.to_params(hash) ⇒ String
Returns This hash as a query string.
23 24 25 |
# File 'lib/customerio/param_encoder.rb', line 23 def self.to_params(hash) hash.to_hash.map { |k, v| normalize_param(k, v) }.join.chop end |