require 'rest_client' require_relative 'uber_client' module IronWorker class RequestError < StandardError def initialize(msg, options={}) super(msg) @options = options end def status @options[:status] end end module Api module Signatures def self.generate_timestamp(gmtime) return gmtime.strftime("%Y-%m-%dT%H:%M:%SZ") end def self.generate_signature(operation, timestamp, secret_key) my_sha_hmac = Digest::HMAC.digest(operation + timestamp, secret_key, Digest::SHA1) my_b64_hmac_digest = Base64.encode64(my_sha_hmac).strip return my_b64_hmac_digest end def self.hash_to_s(hash) str = "" hash.sort.each { |a| str+= "#{a[0]}#{a[1]}" } #removing all characters that could differ after parsing with rails return str.delete "\"\/:{}[]\' T" end end # Subclass must define: # host: endpoint url for service class Client attr_accessor :scheme, :host, :port, :token, :version, :config def initialize(host, token, options={}) @config = options[:config] @scheme = options[:scheme] || @config.scheme || "https" @host = options[:host] || @config.host || host @port = options[:port] || @config.port || 443 @token = options[:token] || @config.token || token @version = options[:version] #@logger = options[:logger] @base_url = "#{@scheme}://#{@host}:#{@port}/#{@version}" @uber_client = Uber::Client.new end def base_url @base_url end def url(command_path) # @logger.debug "url: " + url.to_s "/#{command_path}" end def url_full(command_path) url = "#{base_url}/#{command_path}" # @logger.debug "url: " + url.to_s url end def common_req_hash { :headers=>{"Content-Type" => 'application/json', "Authorization"=>"OAuth #{@token}", "User-Agent"=>"IronWorker Ruby Client"} } end def process_ex(ex) logger.error "EX #{ex.class.name}: #{ex.message}" body = ex.http_body logger.debug 'EX http_code: ' + ex.http_code.to_s logger.debug 'EX BODY=' + body.to_s decoded_ex = JSON.parse(body) exception = Exception.new(ex.message + ": " + decoded_ex["msg"]) exception.set_backtrace(decoded_ex["backtrace"].split(",")) if decoded_ex["backtrace"] raise exception end def check_response(response, options={}) # response.code # http status code #response.time # time in seconds the request took #response.headers # the http headers #response.headers_hash # http headers put into a hash #response.body # the response body status = response.code body = response.body # todo: check content-type == application/json before parsing logger.debug "response code=" + status.to_s logger.debug "response body=" + body.inspect res = nil unless options[:parse] == false res = JSON.parse(body) end if status < 400 else raise IronWorker::RequestError.new((res ? "#{status}: #{res["msg"]}" : "#{status} Error! parse=false so no msg"), :status=>status) end res || body end def get(method, params={}, options={}) full_url = url_full(method) #all_params = add_params(method, params) #url_plus_params = append_params(full_url, all_params) logger.debug 'get url=' + full_url req_hash = common_req_hash req_hash[:params] = params response = @uber_client.get(full_url, req_hash) # could let typhoeus add params, using :params=>x #response = @http_sess.request(:get, url_plus_params, # {}, # {}) check_response(response, options) body = response.body parse_response(body, options) end def post_file(method, file, params={}, options={}) begin data = add_params(method, params).to_json url = url_full(method) logger.debug "post_file url = " + url logger.debug "data = " + data logger.debug "params = " + params.inspect logger.debug "options = " + options.inspect # todo: replace with uber_client parse_response(RestClient.post(append_params(url, add_params(method, params)), {:data => data, :file => file}, :content_type => 'application/json'), options) rescue RestClient::Exception => ex process_ex(ex) end end def post(method, params={}, options={}) logger.debug "params = " + params.inspect logger.debug "options = " + options.inspect logger.debug "params.payload = " + params[:payload].inspect logger.debug "token = "+ token.inspect begin url = url_full(method) logger.debug 'post url=' + url json = add_params(method, params).to_json logger.debug 'body=' + json req_hash = common_req_hash req_hash[:body] = json response = @uber_client.post(url, req_hash) #response = @http_sess.post(url, json, {"Content-Type" => 'application/json'}) check_response(response) logger.debug 'response: ' + response.inspect body = response.body parse_response(body, options) rescue IronWorker::RequestError => ex # let it throw, came from check_response raise ex rescue RestClient::Exception => ex logger.warn("Exception in post! #{ex.message}") logger.warn(ex.backtrace.join("\n")) process_ex(ex) end end def put(method, body, options={}) begin # todo: replace with uber_client parse_response RestClient.put(url_full(method), add_params(method, body).to_json, headers), options rescue RestClient::Exception => ex process_ex(ex) end end def delete(method, params={}, options={}) begin # todo: replace with uber_client parse_response RestClient.delete(append_params(url_full(method), add_params(method, params))), options rescue RestClient::Exception => ex process_ex(ex) end end def add_params(command_path, hash) extra_params = {'oauth' => token} hash.merge!(extra_params) end def append_params(host, params) host += "?" i = 0 params.each_pair do |k, v| #puts "k=#{k} v=#{v}" host += "&" if i > 0 host += k + "=" + (v.is_a?(String) ? CGI.escape(v) : v.to_s) i +=1 end return host end def headers user_agent = "IronWorker Ruby Client" headers = {'User-Agent' => user_agent} end def parse_response(response, options={}) #puts 'PARSE RESPONSE: ' + response.to_s unless options[:parse] == false begin return JSON.parse(response.to_s) rescue => ex puts 'parse_response: response that caused error = ' + response.to_s raise ex end else response end end end end end