Sha256: 748509f7e227d986c29b447b4c8b24355ca24f58785b9fcbe4e2b49807796358

Contents?: true

Size: 1.15 KB

Versions: 10

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.gsub(':', '').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

10 entries across 10 versions & 1 rubygems

Version Path
chartmogul-ruby-1.1.3 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.1.1 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.1.0 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.0.2 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.0.1 lib/chartmogul/resource_path.rb
chartmogul-ruby-1.0.0 lib/chartmogul/resource_path.rb
chartmogul-ruby-0.1.4 lib/chartmogul/resource_path.rb
chartmogul-ruby-0.1.3 lib/chartmogul/resource_path.rb
chartmogul-ruby-0.1.2 lib/chartmogul/resource_path.rb
chartmogul-ruby-0.1.1 lib/chartmogul/resource_path.rb