Skip to content

Instantly share code, notes, and snippets.

@amro
Created September 2, 2011 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amro/1189359 to your computer and use it in GitHub Desktop.
Save amro/1189359 to your computer and use it in GitHub Desktop.
require 'httparty'
require 'json'
require 'cgi'
require File.join(File.dirname(__FILE__), 'handlers', 'uakari_delivery_handler')
class Uakari
include HTTParty
default_timeout 30
attr_accessor :apikey, :timeout, :options
def initialize(apikey = nil, extra_params = {})
@apikey = apikey || ENV['MC_API_KEY']
@default_params = {
:apikey => @apikey,
:options => {
:track_opens => true,
:track_clicks => true
}
}.merge(extra_params)
end
def apikey=(value)
@apikey = value
@default_params = @default_params.merge({:apikey => @apikey})
end
def base_api_url
dc = @apikey.blank? ? '' : "#{@apikey.split("-").last}."
"https://#{dc}sts.mailchimp.com/1.0/"
end
def call(method, params = {})
url = "#{base_api_url}#{method}"
params = @default_params.merge(params)
response = self.class.post(url, :body => params, :timeout => @timeout)
begin
response = JSON.parse(response.body)
rescue
response = response.body
end
response
end
def method_missing(method, *args)
method = method.to_s.gsub(/\/(.?)/) { "::#{$1.upcase}" }.gsub(/(?:^|_)(.)/) { $1.upcase } #Thanks for the gsub, Rails
args = {} unless args.length > 0
args = args[0] if (args.class.to_s == "Array")
call(method, args)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment