Skip to content

Instantly share code, notes, and snippets.

@subelsky
Created September 8, 2011 19:01
Show Gist options
  • Save subelsky/1204333 to your computer and use it in GitHub Desktop.
Save subelsky/1204333 to your computer and use it in GitHub Desktop.
Using Goliath as an API Proxy
require 'goliath'
require 'em-synchrony/em-http'
class TwilioResponse < Goliath::API
use Goliath::Rack::Params
use Goliath::Rack::JSONP
HEADERS = { authorization: ENV.values_at("TWILIO_SID","TWILIO_AUTH_TOKEN") }
BASE_URL = "https://api.twilio.com/2010-04-01/Accounts/#{ENV['TWILIO_SID']}/AvailablePhoneNumbers/US"
def response(env)
url = "#{BASE_URL}#{env['REQUEST_PATH']}?#{env['QUERY_STRING']}"
logger.debug "Proxying #{url}"
http = EM::HttpRequest.new(url).get head: HEADERS
logger.info "Received #{http.response_header.status} from Twilio"
[200, {'X-Goliath' => 'Proxy','Content-Type' => 'application/javascript'}, http.response]
end
end
class Twilio < Goliath::API
get %r{^/(Local|TollFree)}, TwilioResponse
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment