Class: ChartMogul::ResourcePath
- Inherits:
-
Object
- Object
- ChartMogul::ResourcePath
- Defined in:
- lib/chartmogul/resource_path.rb
Defined Under Namespace
Classes: RequiredParameterMissing
Constant Summary collapse
- DEPRECATED_PARAMETER =
'page'
Instance Attribute Summary collapse
-
#named_params ⇒ Object
readonly
Returns the value of attribute named_params.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #apply(params = {}) ⇒ Object
-
#apply_with_get_params(params = {}) ⇒ Object
For path = ‘/hello/:hello_id/say’ & params = { hello_id: 1, search: ‘cat’ } it will return ‘/hello/1/say?search=cat’.
-
#initialize(path) ⇒ ResourcePath
constructor
A new instance of ResourcePath.
Constructor Details
#initialize(path) ⇒ ResourcePath
Returns a new instance of ResourcePath.
14 15 16 17 18 19 |
# File 'lib/chartmogul/resource_path.rb', line 14 def initialize(path) @path = path @named_params = path.scan(/:\w+/).each_with_object({}) do |named_param, hash| hash[named_param] = named_param.delete(':').to_sym end end |
Instance Attribute Details
#named_params ⇒ Object (readonly)
Returns the value of attribute named_params.
8 9 10 |
# File 'lib/chartmogul/resource_path.rb', line 8 def named_params @named_params end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
7 8 9 |
# File 'lib/chartmogul/resource_path.rb', line 7 def path @path end |
Instance Method Details
#apply(params = {}) ⇒ Object
21 22 23 |
# File 'lib/chartmogul/resource_path.rb', line 21 def apply(params = {}) apply_named_params(params) end |
#apply_with_get_params(params = {}) ⇒ Object
For path = ‘/hello/:hello_id/say’ & params = { hello_id: 1, search: ‘cat’ } it will return ‘/hello/1/say?search=cat’
27 28 29 30 31 32 |
# File 'lib/chartmogul/resource_path.rb', line 27 def apply_with_get_params(params = {}) base_path = apply_named_params(params) get_params = params.reject { |param_name| named_params.values.include?(param_name) } get_params.empty? ? base_path : "#{base_path}?#{URI.encode_www_form(get_params)}" end |