Sha256: b683ec3f1d2a43482db28bfb5d86e61aa7ec3243d8788c4ae4b9a6c3a4a283f3

Contents?: true

Size: 1.15 KB

Versions: 14

Compression:

Stored size: 1.15 KB

Contents

require 'uri'

module ChartMogul
  class ResourcePath
    attr_reader :path
    attr_reader :named_params

    class RequiredParameterMissing < StandardError; end

    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

    def apply(params = {})
      apply_named_params(params)
    end

    # For path = '/hello/:hello_id/say' & params = { hello_id: 1, search: 'cat' }
    # it will return '/hello/1/say?search=cat'

    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

    private

    def apply_named_params(params)
      path.dup.tap do |path|
        named_params.each do |named_param, param_key|
          raise(RequiredParameterMissing, "#{named_param} is required") unless params.key?(param_key)
          path.gsub!(named_param, params[param_key].to_s)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
chartmogul-ruby-1.5.1 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.5.0 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.4.1 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.4.0 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.3.3 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.3.2 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.3.1 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.3.0 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.2.2 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.2.1 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.2.0 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.1.9 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.1.8 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.1.7 lib/chartmogul/resource_path.rb