lib/mymoip/request.rb

Summary

Maintainability
A
25 mins
Test Coverage
module MyMoip
  class Request
    include HTTParty

    attr_reader :id, :response

    def initialize(id)
      @id = id
    end

    def api_call(params, opts = {})
      opts[:logger]   ||= MyMoip.logger
      opts[:username] ||= MyMoip.token
      opts[:password] ||= MyMoip.key

      unless opts[:username].present? && opts[:password].present?
        MyMoip.ensure_key_and_token_set!
      end

      opts[:logger].info  "New #{self.class} being sent to MoIP."
      opts[:logger].debug "#{self.class} of ##{@id} with #{params.inspect}"

      url = MyMoip.api_url + params.delete(:path)
      params[:basic_auth] = { username: opts[:username], password: opts[:password] }

      @response = HTTParty.send params.delete(:http_method), url, params

      opts[:logger].debug "#{self.class} of ##{@id} to #{url} had response #{@response.inspect}"
    end
  end
end

requests = Dir[File.dirname(__FILE__) + "/requests/*.rb"]
requests.each { |f| require f }