From b6064799f28467520986aca9e20eb6651d05eb7a Mon Sep 17 00:00:00 2001 From: MarioRuiz Date: Fri, 15 Feb 2019 10:49:20 +0000 Subject: [PATCH] reorganized source code --- .gitignore | 1 + .travis.yml | 2 +- Gemfile | 1 + lib/nice_http.rb | 942 +------------------------------ lib/nice_http/http_methods.rb | 529 +++++++++++++++++ lib/nice_http/manage_request.rb | 233 ++++++++ lib/nice_http/manage_response.rb | 179 ++++++ nice_http.gemspec | 2 +- spec/spec_helper.rb | 2 +- 9 files changed, 954 insertions(+), 937 deletions(-) create mode 100644 lib/nice_http/http_methods.rb create mode 100644 lib/nice_http/manage_request.rb create mode 100644 lib/nice_http/manage_response.rb diff --git a/.gitignore b/.gitignore index c21e6b9..d32b764 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.rbc *.log Gemfile.lock +.covered.msgpack /.idea /.vscode /.config diff --git a/.travis.yml b/.travis.yml index e60c2c6..d3ce6fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ before_install: matrix: allow_failures: - rvm: ruby-head - - rvm: 2.6 + env: COVERAGE-PartialSummary,Coveralls script: - bundle exec rake spec \ No newline at end of file diff --git a/Gemfile b/Gemfile index 3af68d3..c668e4a 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,7 @@ source 'https://rubygems.org' group :test do gem 'rake' gem 'rspec' + gem 'covered' end # Specify your gem's dependencies in mygem.gemspec diff --git a/lib/nice_http.rb b/lib/nice_http.rb index 315a45d..419bd2c 100644 --- a/lib/nice_http.rb +++ b/lib/nice_http.rb @@ -1,6 +1,9 @@ require "logger" require "nice_hash" require_relative "nice_http/utils" +require_relative "nice_http/manage_request" +require_relative "nice_http/manage_response" +require_relative "nice_http/http_methods" ###################################################### # Attributes you can access using NiceHttp.the_attribute: @@ -38,6 +41,11 @@ # @see https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html ###################################################### class NiceHttp + + include NiceHttpManageRequest + include NiceHttpManageResponse + include NiceHttpHttpMethods + Error = Class.new StandardError InfoMissing = Class.new Error do @@ -290,533 +298,6 @@ def initialize(args = {}) end end - ###################################################### - # Get data from path - # - # @param arg [Hash] containing at least key :path - # @param arg [String] the path - # - # @return [Hash] response - # Including at least the symbol keys: - # :data = the response data body. - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # data, message and code can also be accessed as attributes like .message .code .data. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } - # - # @example - # resp = @http.get(Requests::Customer.get_profile) - # assert resp.code == 200 - # @example - # resp = @http.get("/customers/1223") - # assert resp.message == "OK" - ###################################################### - def get(arg) - begin - path, data, headers_t = manage_request(arg) - - @start_time = Time.now if @start_time.nil? - if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) - data = "" - if arg[:mock_response].keys.include?(:data) - data = arg[:mock_response][:data] - if data.kind_of?(Hash) #to json - begin - require "json" - data = data.to_json - rescue - @logger.fatal "There was a problem converting to json: #{data}" - end - end - end - @logger.warn "Pay attention!!! This is a mock response:" - @start_time_net = Time.now if @start_time_net.nil? - manage_response(arg[:mock_response], data.to_s) - return @response - end - begin - if path.start_with?("http:") or path.start_with?("https:") #server included on path problably because of a redirection to a different server - require "uri" - uri = URI.parse(path) - ssl = false - ssl = true if path.include?("https:") - - server = "http://" - server = "https://" if path.start_with?("https:") - if uri.port != 443 - server += "#{uri.host}:#{uri.port}" - else - server += "#{uri.host}" - end - - http_redir = nil - self.class.connections.each { |conn| - if conn.host == uri.host and conn.port == uri.port - http_redir = conn - break - end - } - - if !http_redir.nil? - path, data, headers_t = manage_request(arg) - http_redir.cookies.merge!(@cookies) - http_redir.headers.merge!(headers_t) - #todo: remove only the server at the begining in case in query is the server it will be replaced when it should not be - resp = http_redir.get(path.gsub(server, "")) - @response = http_redir.response - else - @logger.warn "It seems like the http connection cannot redirect to #{server} because there is no active connection for that server. You need to create previously one." - end - else - @start_time_net = Time.now if @start_time_net.nil? - resp = @http.get(path, headers_t) - data = resp.body - manage_response(resp, data) - end - rescue Exception => stack - @logger.warn stack - @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" - @http.finish() - @http.start() - @start_time_net = Time.now if @start_time_net.nil? - resp = @http.get(path) - data = resp.body - manage_response(resp, data) - end - if @auto_redirect and @response[:code].to_i >= 300 and @response[:code].to_i < 400 and @response.include?(:location) - if @num_redirects <= 30 - @num_redirects += 1 - current_server = "http" - current_server += "s" if @ssl == true - current_server += "://#{@host}" - location = @response[:location].gsub(current_server, "") - @logger.info "(#{@num_redirects}) Redirecting NiceHttp to #{location}" - get(location) - else - @logger.fatal "(#{@num_redirects}) Maximum number of redirections for a single request reached. Be sure everything is correct, it seems there is a non ending loop" - @num_redirects = 0 - end - else - @num_redirects = 0 - end - return @response - rescue Exception => stack - @logger.fatal stack - return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} - end - end - - ###################################################### - # Post data to path - # @param arguments [Hash] containing at least keys :data and :path. - # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. - # @param arguments [Array] - # path (string). - # data (json data for example). - # additional_headers (Hash key=>value). - # @return [Hash] response - # Including at least the symbol keys: - # :data = the response data body. - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # data, message and code can also be accessed as attributes like .message .code .data. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } - # @example - # resp = @http.post(Requests::Customer.update_customer) - # assert resp.code == 201 - # @example - # resp = http.post( { - # path: "/api/users", - # data: {name: "morpheus", job: "leader"} - # } ) - # pp resp.data.json - ###################################################### - def post(*arguments) - begin - path, data, headers_t = manage_request(*arguments) - @start_time = Time.now if @start_time.nil? - if arguments.size > 0 and arguments[0].kind_of?(Hash) - arg = arguments[0] - if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) - data = "" - if arg[:mock_response].keys.include?(:data) - data = arg[:mock_response][:data] - if data.kind_of?(Hash) #to json - begin - require "json" - data = data.to_json - rescue - @logger.fatal "There was a problem converting to json: #{data}" - end - end - end - @logger.warn "Pay attention!!! This is a mock response:" - @start_time_net = Time.now if @start_time_net.nil? - manage_response(arg[:mock_response], data.to_s) - return @response - end - end - - begin - @start_time_net = Time.now if @start_time_net.nil? - if headers_t["Content-Type"] == "multipart/form-data" - require "net/http/post/multipart" - headers_t.each { |key, value| - arguments[0][:data].add_field(key, value) #add to Headers - } - resp = @http.request(arguments[0][:data]) - else - resp = @http.post(path, data, headers_t) - data = resp.body - end - rescue Exception => stack - @logger.warn stack - @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" - @http.finish() - @http.start() - @start_time_net = Time.now if @start_time_net.nil? - resp, data = @http.post(path, data, headers_t) - end - manage_response(resp, data) - if @auto_redirect and @response[:code].to_i >= 300 and @response[:code].to_i < 400 and @response.include?(:location) - if @num_redirects <= 30 - @num_redirects += 1 - current_server = "http" - current_server += "s" if @ssl == true - current_server += "://#{@host}" - location = @response[:location].gsub(current_server, "") - @logger.info "(#{@num_redirects}) Redirecting NiceHttp to #{location}" - get(location) - else - @logger.fatal "(#{@num_redirects}) Maximum number of redirections for a single request reached. Be sure everything is correct, it seems there is a non ending loop" - @num_redirects = 0 - end - else - @num_redirects = 0 - end - return @response - rescue Exception => stack - @logger.fatal stack - return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} - end - end - - ###################################################### - # Put data to path - # @param arguments [Hash] containing at least keys :data and :path. - # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. - # @param arguments [Array] - # path (string). - # data (json data for example). - # additional_headers (Hash key=>value). - # @return [Hash] response - # Including at least the symbol keys: - # :data = the response data body. - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # data, message and code can also be accessed as attributes like .message .code .data. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } - # @example - # resp = @http.put(Requests::Customer.remove_phone) - ###################################################### - def put(*arguments) - begin - path, data, headers_t = manage_request(*arguments) - @start_time = Time.now if @start_time.nil? - if arguments.size > 0 and arguments[0].kind_of?(Hash) - arg = arguments[0] - if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) - data = "" - if arg[:mock_response].keys.include?(:data) - data = arg[:mock_response][:data] - if data.kind_of?(Hash) #to json - begin - require "json" - data = data.to_json - rescue - @logger.fatal "There was a problem converting to json: #{data}" - end - end - end - @logger.warn "Pay attention!!! This is a mock response:" - @start_time_net = Time.now if @start_time_net.nil? - manage_response(arg[:mock_response], data.to_s) - return @response - end - end - - begin - @start_time_net = Time.now if @start_time_net.nil? - resp = @http.send_request("PUT", path, data, headers_t) - data = resp.body - rescue Exception => stack - @logger.warn stack - @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" - @http.finish() - @http.start() - @start_time_net = Time.now if @start_time_net.nil? - resp, data = @http.send_request("PUT", path, data, headers_t) - end - manage_response(resp, data) - - return @response - rescue Exception => stack - @logger.fatal stack - return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} - end - end - - ###################################################### - # Patch data to path - # @param arguments [Hash] containing at least keys :data and :path. - # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. - # @param arguments [Array] - # path (string). - # data (json data for example). - # additional_headers (Hash key=>value). - # @return [Hash] response - # Including at least the symbol keys: - # :data = the response data body. - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # data, message and code can also be accessed as attributes like .message .code .data. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } - # @example - # resp = @http.patch(Requests::Customer.unrelease_account) - ###################################################### - def patch(*arguments) - begin - path, data, headers_t = manage_request(*arguments) - @start_time = Time.now if @start_time.nil? - if arguments.size > 0 and arguments[0].kind_of?(Hash) - arg = arguments[0] - if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) - data = "" - if arg[:mock_response].keys.include?(:data) - data = arg[:mock_response][:data] - if data.kind_of?(Hash) #to json - begin - require "json" - data = data.to_json - rescue - @logger.fatal "There was a problem converting to json: #{data}" - end - end - end - @logger.warn "Pay attention!!! This is a mock response:" - @start_time_net = Time.now if @start_time_net.nil? - manage_response(arg[:mock_response], data.to_s) - return @response - end - end - - begin - @start_time_net = Time.now if @start_time_net.nil? - resp = @http.patch(path, data, headers_t) - data = resp.body - rescue Exception => stack - @logger.warn stack - @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" - @http.finish() - @http.start() - @start_time_net = Time.now if @start_time_net.nil? - resp, data = @http.patch(path, data, headers_t) - end - manage_response(resp, data) - if @auto_redirect and @response[:code].to_i >= 300 and @response[:code].to_i < 400 and @response.include?(:location) - if @num_redirects <= 30 - @num_redirects += 1 - current_server = "http" - current_server += "s" if @ssl == true - current_server += "://#{@host}" - location = @response[:location].gsub(current_server, "") - @logger.info "(#{@num_redirects}) Redirecting NiceHttp to #{location}" - get(location) - else - @logger.fatal "(#{@num_redirects}) Maximum number of redirections for a single request reached. Be sure everything is correct, it seems there is a non ending loop" - @num_redirects = 0 - end - else - @num_redirects = 0 - end - return @response - rescue Exception => stack - @logger.fatal stack - return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} - end - end - - ###################################################### - # Delete an existing resource - # @param arg [Hash] containing at least key :path - # @param arg [String] the path - # - # @return [Hash] response - # Including at least the symbol keys: - # :data = the response data body. - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # data, message and code can also be accessed as attributes like .message .code .data. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } - # @example - # resp = @http.delete(Requests::Customer.remove_session) - # assert resp.code == 204 - ###################################################### - def delete(argument) - begin - if argument.kind_of?(String) - argument = {:path => argument} - end - path, data, headers_t = manage_request(argument) - @start_time = Time.now if @start_time.nil? - if argument.kind_of?(Hash) - arg = argument - if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) - data = "" - if arg[:mock_response].keys.include?(:data) - data = arg[:mock_response][:data] - if data.kind_of?(Hash) #to json - begin - require "json" - data = data.to_json - rescue - @logger.fatal "There was a problem converting to json: #{data}" - end - end - end - @logger.warn "Pay attention!!! This is a mock response:" - @start_time_net = Time.now if @start_time_net.nil? - manage_response(arg[:mock_response], data.to_s) - return @response - end - end - - begin - @start_time_net = Time.now if @start_time_net.nil? - resp = @http.delete(path, headers_t) - data = resp.body - rescue Exception => stack - @logger.warn stack - @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" - @http.finish() - @http.start() - @start_time_net = Time.now if @start_time_net.nil? - resp, data = @http.delete(path) - end - manage_response(resp, data) - - return @response - rescue Exception => stack - @logger.fatal stack - return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} - end - end - - ###################################################### - # Implementation of the http HEAD method. - # Asks for the response identical to the one that would correspond to a GET request, but without the response body. - # This is useful for retrieving meta-information written in response headers, without having to transport the entire content. - # @param arg [Hash] containing at least key :path - # @param arg [String] the path - # - # @return [Hash] response - # Including at least the symbol keys: - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # message and code can also be accessed as attributes like .message .code. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil } - ###################################################### - def head(argument) - begin - if argument.kind_of?(String) - argument = {:path => argument} - end - path, data, headers_t = manage_request(argument) - @start_time = Time.now if @start_time.nil? - if argument.kind_of?(Hash) - arg = argument - if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) - @logger.warn "Pay attention!!! This is a mock response:" - @start_time_net = Time.now if @start_time_net.nil? - manage_response(arg[:mock_response], "") - return @response - end - end - - begin - @start_time_net = Time.now if @start_time_net.nil? - resp = @http.head(path, headers_t) - data = resp.body - rescue Exception => stack - @logger.warn stack - @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" - @http.finish() - @http.start() - @start_time_net = Time.now if @start_time_net.nil? - resp, data = @http.head(path) - end - manage_response(resp, data) - return @response - rescue Exception => stack - @logger.fatal stack - return {fatal_error: stack.to_s, code: nil, message: nil} - end - end - - ###################################################### - # It will send the request depending on the :method declared on the request hash - # Take a look at https://github.com/MarioRuiz/Request-Hash - # - # @param request_hash [Hash] containing at least key :path and :method. The methods that are accepted are: :get, :head, :post, :put, :delete, :patch - # - # @return [Hash] response - # Including at least the symbol keys: - # :data = the response data body. - # :message = plain text response. - # :code = code response (200=ok,500=wrong...). - # All keys in response are lowercase. - # data, message and code can also be accessed as attributes like .message .code .data. - # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } - # @example - # resp = @http.send_request Requests::Customer.remove_session - # assert resp.code == 204 - ###################################################### - def send_request(request_hash) - unless request_hash.is_a?(Hash) and request_hash.key?(:method) and request_hash.key?(:path) and - request_hash[:method].is_a?(Symbol) and - [:get, :head, :post, :put, :delete, :patch].include?(request_hash[:method]) - - message = "send_request: it needs to be supplied a Request Hash that includes a :method and :path. " - message += "Supported methods: :get, :head, :post, :put, :delete, :patch" - @logger.fatal message - return {fatal_error: message, code: nil, message: nil} - else - case request_hash[:method] - when :get - resp = get request_hash - when :post - resp = post request_hash - when :head - resp = head request_hash - when :put - resp = put request_hash - when :delete - resp = delete request_hash - when :patch - resp = patch request_hash - end - return resp - end - - - end - ###################################################### # Close HTTP connection ###################################################### @@ -854,412 +335,5 @@ def close self.class.active -= 1 end - ###################################################### - # private method to manage Request - # input: - # 3 args: path, data, headers - # 1 arg: Hash containg at least keys :path and :data - # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. - # output: - # path, data, headers - ###################################################### - def manage_request(*arguments) - require "json" - begin - content_type_included = false - path = "" - data = "" - - @response = Hash.new() - headers_t = @headers.dup() - cookies_to_set_str = "" - if arguments.size == 3 - path = arguments[0] - elsif arguments.size == 1 and arguments[0].kind_of?(Hash) - path = arguments[0][:path] - elsif arguments.size == 1 and arguments[0].kind_of?(String) - path = arguments[0].to_s() - end - path = (@prepath + path).gsub('//','/') unless path.nil? or path.start_with?('http:') or path.start_with?('https:') - @cookies.each { |cookie_path, cookies_hash| - cookie_path = "" if cookie_path == "/" - path_to_check = path - if path == "/" or path[-1] != "/" - path_to_check += "/" - end - if path_to_check.scan(/^#{cookie_path}\//).size > 0 - cookies_hash.each { |key, value| - cookies_to_set_str += "#{key}=#{value}; " - } - end - } - headers_t["Cookie"] = cookies_to_set_str - - method_s = caller[0].to_s().scan(/:in `(.*)'/).join - - if arguments.size == 3 - data = arguments[1] - if arguments[2].kind_of?(Hash) - headers_t.merge!(arguments[2]) - end - elsif arguments.size == 1 and arguments[0].kind_of?(Hash) - if arguments[0][:data].nil? - if arguments[0].keys.include?(:data) - data = "" - elsif arguments[0].keys.include?(:data_examples) and - arguments[0][:data_examples].kind_of?(Array) - data = arguments[0][:data_examples][0] #the first example by default - else - data = "" - end - else - data = arguments[0][:data] - end - if arguments[0].include?(:headers) - headers_t.merge!(arguments[0][:headers]) - end - - if headers_t["Content-Type"].to_s() == "" and headers_t["content-type"].to_s() == "" and - headers_t[:"content-type"].to_s() == "" and headers_t[:"Content-Type"].to_s() == "" - content_type_included = false - elsif headers_t["content-type"].to_s() != "" - content_type_included = true - headers_t["Content-Type"] = headers_t["content-type"] - elsif headers_t[:"content-type"].to_s() != "" - content_type_included = true - headers_t["Content-Type"] = headers_t[:"content-type"] - headers_t.delete(:"content-type") - elsif headers_t[:"Content-Type"].to_s() != "" - content_type_included = true - headers_t["Content-Type"] = headers_t[:"Content-Type"] - headers_t.delete(:"Content-Type") - elsif headers_t["Content-Type"].to_s() != "" - content_type_included = true - end - if !content_type_included and data.kind_of?(Hash) - headers_t["Content-Type"] = "application/json" - content_type_included = true - end - # to be backwards compatible since before was :values - if arguments[0].include?(:values) and !arguments[0].include?(:values_for) - arguments[0][:values_for] = arguments[0][:values] - end - if content_type_included and (!headers_t["Content-Type"][/text\/xml/].nil? or - !headers_t["Content-Type"]["application/soap+xml"].nil? or - !headers_t["Content-Type"][/application\/jxml/].nil?) - if arguments[0].include?(:values_for) - arguments[0][:values_for].each { |key, value| - data = NiceHttpUtils.set_value_xml_tag(key.to_s(), data, value.to_s(), true) - } - end - elsif content_type_included and !headers_t["Content-Type"][/application\/json/].nil? and data.to_s() != "" - require "json" - if data.kind_of?(String) - if arguments[0].include?(:values_for) - arguments[0][:values_for].each { |key, value| - data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *")(.*)(" *, *$)/, '\1' + value + '\4') # "key":"value", or key:"value", - data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *")(.*)(" *$)/, '\1' + value + '\4') # "key":"value" or key:"value" - data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *[^"])([^"].*)([^"] *, *$)/, '\1' + value + '\4') # "key":456, or key:456, - data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *[^"])([^"].*)([^"] * *$)/, '\1' + value + '\4') # "key":456 or key:456 - } - end - elsif data.kind_of?(Hash) - data_n = Hash.new() - data.each { |key, value| - data_n[key.to_s()] = value - } - if arguments[0].include?(:values_for) - #req[:values_for][:loginName] or req[:values_for]["loginName"] - new_values_hash = Hash.new() - arguments[0][:values_for].each { |kv, vv| - if data_n.keys.include?(kv.to_s()) - new_values_hash[kv.to_s()] = vv - end - } - data_n.merge!(new_values_hash) - end - data = data_n.to_json() - elsif data.kind_of?(Array) - data_arr = Array.new() - data.each_with_index { |row, indx| - unless row.kind_of?(Hash) - @logger.fatal("Wrong format on request application/json, be sure is a Hash, Array of Hashes or JSON string") - return :error, :error, :error - end - data_n = Hash.new() - row.each { |key, value| - data_n[key.to_s()] = value - } - if arguments[0].include?(:values_for) - #req[:values_for][:loginName] or req[:values_for]["loginName"] - new_values_hash = Hash.new() - if arguments[0][:values_for].kind_of?(Hash) #values[:mykey][3] - arguments[0][:values_for].each { |kv, vv| - if data_n.keys.include?(kv.to_s()) and !vv[indx].nil? - new_values_hash[kv.to_s()] = vv[indx] - end - } - elsif arguments[0][:values_for].kind_of?(Array) #values[5][:mykey] - if !arguments[0][:values_for][indx].nil? - arguments[0][:values_for][indx].each { |kv, vv| - if data_n.keys.include?(kv.to_s()) - new_values_hash[kv.to_s()] = vv - end - } - end - else - @logger.fatal("Wrong format on request application/json when supplying values, the data is an array of Hashes but the values supplied are not") - return :error, :error, :error - end - data_n.merge!(new_values_hash) - end - data_arr.push(data_n) - } - data = data_arr.to_json() - else - @logger.fatal("Wrong format on request application/json, be sure is a Hash, Array of Hashes or JSON string") - return :error, :error, :error - end - elsif content_type_included and arguments[0].include?(:values_for) - if arguments[0][:values_for].kind_of?(Hash) and arguments[0][:values_for].keys.size > 0 - if !headers_t.nil? and headers_t.kind_of?(Hash) and headers_t["Content-Type"] != "application/x-www-form-urlencoded" and headers_t["content-type"] != "application/x-www-form-urlencoded" - @logger.warn(":values_for key given without a valid content-type or data for request. No values modified on the request") - end - end - end - elsif arguments.size == 1 and arguments[0].kind_of?(String) - #path=arguments[0].to_s() - data = "" - else - @logger.fatal("Invalid number of arguments or wrong arguments in #{method_s}") - return :error, :error, :error - end - if headers_t.keys.include?("Content-Type") and !headers_t["Content-Type"]["multipart/form-data"].nil? and headers_t["Content-Type"] != ["multipart/form-data"] #only for the case raw multipart request - encoding = "UTF-8" - data_s = "" - else - encoding = data.to_s().scan(/encoding='(.*)'/i).join - if encoding.to_s() == "" - encoding = data.to_s().scan(/charset='(.*)'/i).join - end - if encoding.to_s() == "" and headers_t.include?("Content-Type") - encoding = headers_t["Content-Type"].scan(/charset='?(.*)'?/i).join - if encoding.to_s() == "" - encoding = headers_t["Content-Type"].scan(/encoding='?(.*)'?/i).join - end - end - - begin - data_s = JSON.pretty_generate(JSON.parse(data)) - rescue - data_s = data - end - data_s = data_s.to_s().gsub("<", "<") - end - if headers_t.keys.include?("Accept-Encoding") - headers_t["Accept-Encoding"].gsub!("gzip", "") #removed so the response is in plain text - end - - headers_ts = "" - headers_t.each { |key, val| headers_ts += key.to_s + ":" + val.to_s() + ", " } - message = "#{method_s} REQUEST: \npath= " + path.to_s() + "\n" - message += "headers= " + headers_ts.to_s() + "\n" - message += "data= " + data_s.to_s() + "\n" - message = @message_server + "\n" + message - if path.to_s().scan(/^https?:\/\//).size > 0 and path.to_s().scan(/^https?:\/\/#{@host}/).size == 0 - # the path is for another server than the current - else - self.class.last_request = message - @logger.info(message) - end - - if data.to_s() != "" and encoding.to_s().upcase != "UTF-8" and encoding != "" - data = data.to_s().encode(encoding, "UTF-8") - end - return path, data, headers_t - rescue Exception => stack - @logger.fatal(stack) - @logger.fatal("manage_request Error on method #{method_s} . path:#{path.to_s()}. data:#{data.to_s()}. headers:#{headers_t.to_s()}") - return :error - end - end - - ###################################################### - # private method to manage Response - # input: - # resp - # data - # output: - # @response updated - ###################################################### - def manage_response(resp, data) - require "json" - begin - if @start_time.kind_of?(Time) - @response[:time_elapsed_total] = Time.now - @start_time - @start_time = nil - else - @response[:time_elapsed_total] = nil - end - if @start_time_net.kind_of?(Time) - @response[:time_elapsed] = Time.now - @start_time_net - @start_time_net = nil - else - @response[:time_elapsed] = nil - end - begin - # this is to be able to access all keys as symbols - new_resp = Hash.new() - resp.each { |key, value| - if key.kind_of?(String) - new_resp[key.to_sym] = value - end - } - new_resp.each { |key, value| - resp[key] = value - } - rescue - end - #for mock_responses to be able to add outside of the header like content-type for example - if resp.kind_of?(Hash) and !resp.has_key?(:header) - resp[:header] = {} - end - if resp.kind_of?(Hash) - resp.each { |k, v| - if k != :code and k != :message and k != :data and k != :'set-cookie' and k != :header - resp[:header][k] = v - end - } - resp[:header].each { |k, v| - resp.delete(k) if resp.has_key?(k) - } - end - - method_s = caller[0].to_s().scan(/:in `(.*)'/).join - if resp.header.kind_of?(Hash) and (resp.header["content-type"].to_s() == "application/x-deflate" or resp.header[:"content-type"].to_s() == "application/x-deflate") - data = Zlib::Inflate.inflate(data) - end - encoding_response = "" - if resp.header.kind_of?(Hash) and (resp.header["content-type"].to_s() != "" or resp.header[:"content-type"].to_s() != "") - encoding_response = resp.header["content-type"].scan(/;charset=(.*)/i).join if resp.header.has_key?("content-type") - encoding_response = resp.header[:"content-type"].scan(/;charset=(.*)/i).join if resp.header.has_key?(:"content-type") - end - if encoding_response.to_s() == "" - encoding_response = "UTF-8" - end - - if encoding_response.to_s() != "" and encoding_response.to_s().upcase != "UTF-8" - data.encode!("UTF-8", encoding_response.to_s()) - end - - if encoding_response != "" and encoding_response.to_s().upcase != "UTF-8" - @response[:message] = resp.message.to_s().encode("UTF-8", encoding_response.to_s()) - #todo: response data in here for example is convert into string, verify if that is correct or needs to maintain the original data type (hash, array...) - resp.each { |key, val| @response[key.to_sym] = val.to_s().encode("UTF-8", encoding_response.to_s()) } - else - @response[:message] = resp.message - resp.each { |key, val| - @response[key.to_sym] = val - } - end - - if !defined?(Net::HTTP::Post::Multipart) or (defined?(Net::HTTP::Post::Multipart) and !data.kind_of?(Net::HTTP::Post::Multipart)) - @response[:data] = data - else - @response[:data] = "" - end - - @response[:code] = resp.code - - unless @response.nil? - message = "\nRESPONSE: \n" + @response[:code].to_s() + ":" + @response[:message].to_s() - #if @debug - self.class.last_response = message if @debug - @response.each { |key, value| - if value.to_s() != "" - value_orig = value - if key.kind_of?(Symbol) - if key == :code or key == :data or key == :header or key == :message - if key == :data - begin - JSON.parse(value_orig) - data_s = JSON.pretty_generate(JSON.parse(value_orig)) - rescue - data_s = value_orig - end - if @debug - self.class.last_response += "\nresponse." + key.to_s() + " = '" + data_s.gsub("<", "<") + "'\n" - end - if value_orig != value - message += "\nresponse." + key.to_s() + " = '" + value.gsub("<", "<") + "'\n" - else - message += "\nresponse." + key.to_s() + " = '" + data_s.gsub("<", "<") + "'\n" - end - else - if @debug - self.class.last_response += "\nresponse." + key.to_s() + " = '" + value.to_s().gsub("<", "<") + "'" - message += "\nresponse." + key.to_s() + " = '" + value.to_s().gsub("<", "<") + "'" - end - end - else - if @debug - self.class.last_response += "\nresponse[:" + key.to_s() + "] = '" + value.to_s().gsub("<", "<") + "'" - end - message += "\nresponse[:" + key.to_s() + "] = '" + value.to_s().gsub("<", "<") + "'" - end - elsif !@response.include?(key.to_sym) - if @debug - self.class.last_response += "\nresponse['" + key.to_s() + "'] = '" + value.to_s().gsub("<", "<") + "'" - end - message += "\nresponse['" + key.to_s() + "'] = '" + value.to_s().gsub("<", "<") + "'" - end - end - } - #end - @logger.info message - if @response.kind_of?(Hash) - if @response.keys.include?(:requestid) - @headers["requestId"] = @response[:requestid] - self.class.request_id = @response[:requestid] - @logger.info "requestId was found on the response header and it has been added to the headers for the next request" - end - end - end - - if resp[:'set-cookie'].to_s() != "" - if resp.kind_of?(Hash) #mock_response - cookies_to_set = resp[:'set-cookie'].to_s().split(", ") - else #Net::Http - cookies_to_set = resp.get_fields("set-cookie") - end - cookies_to_set.each { |cookie| - cookie_pair = cookie.split("; ")[0].split("=") - cookie_path = cookie.scan(/; path=([^;]+)/i).join - @cookies[cookie_path] = Hash.new() unless @cookies.keys.include?(cookie_path) - @cookies[cookie_path][cookie_pair[0]] = cookie_pair[1] - } - - @logger.info "set-cookie added to Cookie header as required" - - if @headers.has_key?("X-CSRFToken") - csrftoken = resp[:"set-cookie"].to_s().scan(/csrftoken=([\da-z]+);/).join - if csrftoken.to_s() != "" - @headers["X-CSRFToken"] = csrftoken - @logger.info "X-CSRFToken exists on headers and has been overwritten" - end - else - csrftoken = resp[:"set-cookie"].to_s().scan(/csrftoken=([\da-z]+);/).join - if csrftoken.to_s() != "" - @headers["X-CSRFToken"] = csrftoken - @logger.info "X-CSRFToken added to header as required" - end - end - end - rescue Exception => stack - @logger.fatal stack - @logger.fatal "manage_response Error on method #{method_s} " - end - end - private :manage_request, :manage_response end diff --git a/lib/nice_http/http_methods.rb b/lib/nice_http/http_methods.rb new file mode 100644 index 0000000..07e18d5 --- /dev/null +++ b/lib/nice_http/http_methods.rb @@ -0,0 +1,529 @@ +module NiceHttpHttpMethods + + ###################################################### + # Get data from path + # + # @param arg [Hash] containing at least key :path + # @param arg [String] the path + # + # @return [Hash] response + # Including at least the symbol keys: + # :data = the response data body. + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # data, message and code can also be accessed as attributes like .message .code .data. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } + # + # @example + # resp = @http.get(Requests::Customer.get_profile) + # assert resp.code == 200 + # @example + # resp = @http.get("/customers/1223") + # assert resp.message == "OK" + ###################################################### + def get(arg) + begin + path, data, headers_t = manage_request(arg) + + @start_time = Time.now if @start_time.nil? + if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) + data = "" + if arg[:mock_response].keys.include?(:data) + data = arg[:mock_response][:data] + if data.kind_of?(Hash) #to json + begin + require "json" + data = data.to_json + rescue + @logger.fatal "There was a problem converting to json: #{data}" + end + end + end + @logger.warn "Pay attention!!! This is a mock response:" + @start_time_net = Time.now if @start_time_net.nil? + manage_response(arg[:mock_response], data.to_s) + return @response + end + begin + if path.start_with?("http:") or path.start_with?("https:") #server included on path problably because of a redirection to a different server + require "uri" + uri = URI.parse(path) + ssl = false + ssl = true if path.include?("https:") + + server = "http://" + server = "https://" if path.start_with?("https:") + if uri.port != 443 + server += "#{uri.host}:#{uri.port}" + else + server += "#{uri.host}" + end + + http_redir = nil + self.class.connections.each { |conn| + if conn.host == uri.host and conn.port == uri.port + http_redir = conn + break + end + } + + if !http_redir.nil? + path, data, headers_t = manage_request(arg) + http_redir.cookies.merge!(@cookies) + http_redir.headers.merge!(headers_t) + #todo: remove only the server at the begining in case in query is the server it will be replaced when it should not be + resp = http_redir.get(path.gsub(server, "")) + @response = http_redir.response + else + @logger.warn "It seems like the http connection cannot redirect to #{server} because there is no active connection for that server. You need to create previously one." + end + else + @start_time_net = Time.now if @start_time_net.nil? + resp = @http.get(path, headers_t) + data = resp.body + manage_response(resp, data) + end + rescue Exception => stack + @logger.warn stack + @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" + @http.finish() + @http.start() + @start_time_net = Time.now if @start_time_net.nil? + resp = @http.get(path) + data = resp.body + manage_response(resp, data) + end + if @auto_redirect and @response[:code].to_i >= 300 and @response[:code].to_i < 400 and @response.include?(:location) + if @num_redirects <= 30 + @num_redirects += 1 + current_server = "http" + current_server += "s" if @ssl == true + current_server += "://#{@host}" + location = @response[:location].gsub(current_server, "") + @logger.info "(#{@num_redirects}) Redirecting NiceHttp to #{location}" + get(location) + else + @logger.fatal "(#{@num_redirects}) Maximum number of redirections for a single request reached. Be sure everything is correct, it seems there is a non ending loop" + @num_redirects = 0 + end + else + @num_redirects = 0 + end + return @response + rescue Exception => stack + @logger.fatal stack + return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} + end + end + + ###################################################### + # Post data to path + # @param arguments [Hash] containing at least keys :data and :path. + # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. + # @param arguments [Array] + # path (string). + # data (json data for example). + # additional_headers (Hash key=>value). + # @return [Hash] response + # Including at least the symbol keys: + # :data = the response data body. + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # data, message and code can also be accessed as attributes like .message .code .data. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } + # @example + # resp = @http.post(Requests::Customer.update_customer) + # assert resp.code == 201 + # @example + # resp = http.post( { + # path: "/api/users", + # data: {name: "morpheus", job: "leader"} + # } ) + # pp resp.data.json + ###################################################### + def post(*arguments) + begin + path, data, headers_t = manage_request(*arguments) + @start_time = Time.now if @start_time.nil? + if arguments.size > 0 and arguments[0].kind_of?(Hash) + arg = arguments[0] + if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) + data = "" + if arg[:mock_response].keys.include?(:data) + data = arg[:mock_response][:data] + if data.kind_of?(Hash) #to json + begin + require "json" + data = data.to_json + rescue + @logger.fatal "There was a problem converting to json: #{data}" + end + end + end + @logger.warn "Pay attention!!! This is a mock response:" + @start_time_net = Time.now if @start_time_net.nil? + manage_response(arg[:mock_response], data.to_s) + return @response + end + end + + begin + @start_time_net = Time.now if @start_time_net.nil? + if headers_t["Content-Type"] == "multipart/form-data" + require "net/http/post/multipart" + headers_t.each { |key, value| + arguments[0][:data].add_field(key, value) #add to Headers + } + resp = @http.request(arguments[0][:data]) + else + resp = @http.post(path, data, headers_t) + data = resp.body + end + rescue Exception => stack + @logger.warn stack + @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" + @http.finish() + @http.start() + @start_time_net = Time.now if @start_time_net.nil? + resp, data = @http.post(path, data, headers_t) + end + manage_response(resp, data) + if @auto_redirect and @response[:code].to_i >= 300 and @response[:code].to_i < 400 and @response.include?(:location) + if @num_redirects <= 30 + @num_redirects += 1 + current_server = "http" + current_server += "s" if @ssl == true + current_server += "://#{@host}" + location = @response[:location].gsub(current_server, "") + @logger.info "(#{@num_redirects}) Redirecting NiceHttp to #{location}" + get(location) + else + @logger.fatal "(#{@num_redirects}) Maximum number of redirections for a single request reached. Be sure everything is correct, it seems there is a non ending loop" + @num_redirects = 0 + end + else + @num_redirects = 0 + end + return @response + rescue Exception => stack + @logger.fatal stack + return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} + end + end + + ###################################################### + # Put data to path + # @param arguments [Hash] containing at least keys :data and :path. + # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. + # @param arguments [Array] + # path (string). + # data (json data for example). + # additional_headers (Hash key=>value). + # @return [Hash] response + # Including at least the symbol keys: + # :data = the response data body. + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # data, message and code can also be accessed as attributes like .message .code .data. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } + # @example + # resp = @http.put(Requests::Customer.remove_phone) + ###################################################### + def put(*arguments) + begin + path, data, headers_t = manage_request(*arguments) + @start_time = Time.now if @start_time.nil? + if arguments.size > 0 and arguments[0].kind_of?(Hash) + arg = arguments[0] + if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) + data = "" + if arg[:mock_response].keys.include?(:data) + data = arg[:mock_response][:data] + if data.kind_of?(Hash) #to json + begin + require "json" + data = data.to_json + rescue + @logger.fatal "There was a problem converting to json: #{data}" + end + end + end + @logger.warn "Pay attention!!! This is a mock response:" + @start_time_net = Time.now if @start_time_net.nil? + manage_response(arg[:mock_response], data.to_s) + return @response + end + end + + begin + @start_time_net = Time.now if @start_time_net.nil? + resp = @http.send_request("PUT", path, data, headers_t) + data = resp.body + rescue Exception => stack + @logger.warn stack + @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" + @http.finish() + @http.start() + @start_time_net = Time.now if @start_time_net.nil? + resp, data = @http.send_request("PUT", path, data, headers_t) + end + manage_response(resp, data) + + return @response + rescue Exception => stack + @logger.fatal stack + return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} + end + end + + ###################################################### + # Patch data to path + # @param arguments [Hash] containing at least keys :data and :path. + # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. + # @param arguments [Array] + # path (string). + # data (json data for example). + # additional_headers (Hash key=>value). + # @return [Hash] response + # Including at least the symbol keys: + # :data = the response data body. + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # data, message and code can also be accessed as attributes like .message .code .data. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } + # @example + # resp = @http.patch(Requests::Customer.unrelease_account) + ###################################################### + def patch(*arguments) + begin + path, data, headers_t = manage_request(*arguments) + @start_time = Time.now if @start_time.nil? + if arguments.size > 0 and arguments[0].kind_of?(Hash) + arg = arguments[0] + if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) + data = "" + if arg[:mock_response].keys.include?(:data) + data = arg[:mock_response][:data] + if data.kind_of?(Hash) #to json + begin + require "json" + data = data.to_json + rescue + @logger.fatal "There was a problem converting to json: #{data}" + end + end + end + @logger.warn "Pay attention!!! This is a mock response:" + @start_time_net = Time.now if @start_time_net.nil? + manage_response(arg[:mock_response], data.to_s) + return @response + end + end + + begin + @start_time_net = Time.now if @start_time_net.nil? + resp = @http.patch(path, data, headers_t) + data = resp.body + rescue Exception => stack + @logger.warn stack + @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" + @http.finish() + @http.start() + @start_time_net = Time.now if @start_time_net.nil? + resp, data = @http.patch(path, data, headers_t) + end + manage_response(resp, data) + if @auto_redirect and @response[:code].to_i >= 300 and @response[:code].to_i < 400 and @response.include?(:location) + if @num_redirects <= 30 + @num_redirects += 1 + current_server = "http" + current_server += "s" if @ssl == true + current_server += "://#{@host}" + location = @response[:location].gsub(current_server, "") + @logger.info "(#{@num_redirects}) Redirecting NiceHttp to #{location}" + get(location) + else + @logger.fatal "(#{@num_redirects}) Maximum number of redirections for a single request reached. Be sure everything is correct, it seems there is a non ending loop" + @num_redirects = 0 + end + else + @num_redirects = 0 + end + return @response + rescue Exception => stack + @logger.fatal stack + return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} + end + end + + ###################################################### + # Delete an existing resource + # @param arg [Hash] containing at least key :path + # @param arg [String] the path + # + # @return [Hash] response + # Including at least the symbol keys: + # :data = the response data body. + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # data, message and code can also be accessed as attributes like .message .code .data. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } + # @example + # resp = @http.delete(Requests::Customer.remove_session) + # assert resp.code == 204 + ###################################################### + def delete(argument) + begin + if argument.kind_of?(String) + argument = {:path => argument} + end + path, data, headers_t = manage_request(argument) + @start_time = Time.now if @start_time.nil? + if argument.kind_of?(Hash) + arg = argument + if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) + data = "" + if arg[:mock_response].keys.include?(:data) + data = arg[:mock_response][:data] + if data.kind_of?(Hash) #to json + begin + require "json" + data = data.to_json + rescue + @logger.fatal "There was a problem converting to json: #{data}" + end + end + end + @logger.warn "Pay attention!!! This is a mock response:" + @start_time_net = Time.now if @start_time_net.nil? + manage_response(arg[:mock_response], data.to_s) + return @response + end + end + + begin + @start_time_net = Time.now if @start_time_net.nil? + resp = @http.delete(path, headers_t) + data = resp.body + rescue Exception => stack + @logger.warn stack + @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" + @http.finish() + @http.start() + @start_time_net = Time.now if @start_time_net.nil? + resp, data = @http.delete(path) + end + manage_response(resp, data) + + return @response + rescue Exception => stack + @logger.fatal stack + return {fatal_error: stack.to_s, code: nil, message: nil, data: ""} + end + end + + ###################################################### + # Implementation of the http HEAD method. + # Asks for the response identical to the one that would correspond to a GET request, but without the response body. + # This is useful for retrieving meta-information written in response headers, without having to transport the entire content. + # @param arg [Hash] containing at least key :path + # @param arg [String] the path + # + # @return [Hash] response + # Including at least the symbol keys: + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # message and code can also be accessed as attributes like .message .code. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil } + ###################################################### + def head(argument) + begin + if argument.kind_of?(String) + argument = {:path => argument} + end + path, data, headers_t = manage_request(argument) + @start_time = Time.now if @start_time.nil? + if argument.kind_of?(Hash) + arg = argument + if @use_mocks and arg.kind_of?(Hash) and arg.keys.include?(:mock_response) + @logger.warn "Pay attention!!! This is a mock response:" + @start_time_net = Time.now if @start_time_net.nil? + manage_response(arg[:mock_response], "") + return @response + end + end + + begin + @start_time_net = Time.now if @start_time_net.nil? + resp = @http.head(path, headers_t) + data = resp.body + rescue Exception => stack + @logger.warn stack + @logger.warn "The connection seems to be closed in the host machine. Trying to reconnect" + @http.finish() + @http.start() + @start_time_net = Time.now if @start_time_net.nil? + resp, data = @http.head(path) + end + manage_response(resp, data) + return @response + rescue Exception => stack + @logger.fatal stack + return {fatal_error: stack.to_s, code: nil, message: nil} + end + end + + ###################################################### + # It will send the request depending on the :method declared on the request hash + # Take a look at https://github.com/MarioRuiz/Request-Hash + # + # @param request_hash [Hash] containing at least key :path and :method. The methods that are accepted are: :get, :head, :post, :put, :delete, :patch + # + # @return [Hash] response + # Including at least the symbol keys: + # :data = the response data body. + # :message = plain text response. + # :code = code response (200=ok,500=wrong...). + # All keys in response are lowercase. + # data, message and code can also be accessed as attributes like .message .code .data. + # In case of fatal error returns { fatal_error: "the error description", code: nil, message: nil, data: '' } + # @example + # resp = @http.send_request Requests::Customer.remove_session + # assert resp.code == 204 + ###################################################### + def send_request(request_hash) + unless request_hash.is_a?(Hash) and request_hash.key?(:method) and request_hash.key?(:path) and + request_hash[:method].is_a?(Symbol) and + [:get, :head, :post, :put, :delete, :patch].include?(request_hash[:method]) + + message = "send_request: it needs to be supplied a Request Hash that includes a :method and :path. " + message += "Supported methods: :get, :head, :post, :put, :delete, :patch" + @logger.fatal message + return {fatal_error: message, code: nil, message: nil} + else + case request_hash[:method] + when :get + resp = get request_hash + when :post + resp = post request_hash + when :head + resp = head request_hash + when :put + resp = put request_hash + when :delete + resp = delete request_hash + when :patch + resp = patch request_hash + end + return resp + end + + end + +end \ No newline at end of file diff --git a/lib/nice_http/manage_request.rb b/lib/nice_http/manage_request.rb new file mode 100644 index 0000000..9f3f6c0 --- /dev/null +++ b/lib/nice_http/manage_request.rb @@ -0,0 +1,233 @@ +module NiceHttpManageRequest + + ###################################################### + # private method to manage Request + # input: + # 3 args: path, data, headers + # 1 arg: Hash containg at least keys :path and :data + # In case :data not supplied and :data_examples array supplied, it will be taken the first example as :data. + # output: + # path, data, headers + ###################################################### + def manage_request(*arguments) + require "json" + begin + content_type_included = false + path = "" + data = "" + + @response = Hash.new() + headers_t = @headers.dup() + cookies_to_set_str = "" + if arguments.size == 3 + path = arguments[0] + elsif arguments.size == 1 and arguments[0].kind_of?(Hash) + path = arguments[0][:path] + elsif arguments.size == 1 and arguments[0].kind_of?(String) + path = arguments[0].to_s() + end + path = (@prepath + path).gsub('//','/') unless path.nil? or path.start_with?('http:') or path.start_with?('https:') + @cookies.each { |cookie_path, cookies_hash| + cookie_path = "" if cookie_path == "/" + path_to_check = path + if path == "/" or path[-1] != "/" + path_to_check += "/" + end + if path_to_check.scan(/^#{cookie_path}\//).size > 0 + cookies_hash.each { |key, value| + cookies_to_set_str += "#{key}=#{value}; " + } + end + } + headers_t["Cookie"] = cookies_to_set_str + + method_s = caller[0].to_s().scan(/:in `(.*)'/).join + + if arguments.size == 3 + data = arguments[1] + if arguments[2].kind_of?(Hash) + headers_t.merge!(arguments[2]) + end + elsif arguments.size == 1 and arguments[0].kind_of?(Hash) + if arguments[0][:data].nil? + if arguments[0].keys.include?(:data) + data = "" + elsif arguments[0].keys.include?(:data_examples) and + arguments[0][:data_examples].kind_of?(Array) + data = arguments[0][:data_examples][0] #the first example by default + else + data = "" + end + else + data = arguments[0][:data] + end + if arguments[0].include?(:headers) + headers_t.merge!(arguments[0][:headers]) + end + + if headers_t["Content-Type"].to_s() == "" and headers_t["content-type"].to_s() == "" and + headers_t[:"content-type"].to_s() == "" and headers_t[:"Content-Type"].to_s() == "" + content_type_included = false + elsif headers_t["content-type"].to_s() != "" + content_type_included = true + headers_t["Content-Type"] = headers_t["content-type"] + elsif headers_t[:"content-type"].to_s() != "" + content_type_included = true + headers_t["Content-Type"] = headers_t[:"content-type"] + headers_t.delete(:"content-type") + elsif headers_t[:"Content-Type"].to_s() != "" + content_type_included = true + headers_t["Content-Type"] = headers_t[:"Content-Type"] + headers_t.delete(:"Content-Type") + elsif headers_t["Content-Type"].to_s() != "" + content_type_included = true + end + if !content_type_included and data.kind_of?(Hash) + headers_t["Content-Type"] = "application/json" + content_type_included = true + end + # to be backwards compatible since before was :values + if arguments[0].include?(:values) and !arguments[0].include?(:values_for) + arguments[0][:values_for] = arguments[0][:values] + end + if content_type_included and (!headers_t["Content-Type"][/text\/xml/].nil? or + !headers_t["Content-Type"]["application/soap+xml"].nil? or + !headers_t["Content-Type"][/application\/jxml/].nil?) + if arguments[0].include?(:values_for) + arguments[0][:values_for].each { |key, value| + data = NiceHttpUtils.set_value_xml_tag(key.to_s(), data, value.to_s(), true) + } + end + elsif content_type_included and !headers_t["Content-Type"][/application\/json/].nil? and data.to_s() != "" + require "json" + if data.kind_of?(String) + if arguments[0].include?(:values_for) + arguments[0][:values_for].each { |key, value| + data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *")(.*)(" *, *$)/, '\1' + value + '\4') # "key":"value", or key:"value", + data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *")(.*)(" *$)/, '\1' + value + '\4') # "key":"value" or key:"value" + data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *[^"])([^"].*)([^"] *, *$)/, '\1' + value + '\4') # "key":456, or key:456, + data.gsub!(/(( *|^)"?#{key.to_s()}"? *: *[^"])([^"].*)([^"] * *$)/, '\1' + value + '\4') # "key":456 or key:456 + } + end + elsif data.kind_of?(Hash) + data_n = Hash.new() + data.each { |key, value| + data_n[key.to_s()] = value + } + if arguments[0].include?(:values_for) + #req[:values_for][:loginName] or req[:values_for]["loginName"] + new_values_hash = Hash.new() + arguments[0][:values_for].each { |kv, vv| + if data_n.keys.include?(kv.to_s()) + new_values_hash[kv.to_s()] = vv + end + } + data_n.merge!(new_values_hash) + end + data = data_n.to_json() + elsif data.kind_of?(Array) + data_arr = Array.new() + data.each_with_index { |row, indx| + unless row.kind_of?(Hash) + @logger.fatal("Wrong format on request application/json, be sure is a Hash, Array of Hashes or JSON string") + return :error, :error, :error + end + data_n = Hash.new() + row.each { |key, value| + data_n[key.to_s()] = value + } + if arguments[0].include?(:values_for) + #req[:values_for][:loginName] or req[:values_for]["loginName"] + new_values_hash = Hash.new() + if arguments[0][:values_for].kind_of?(Hash) #values[:mykey][3] + arguments[0][:values_for].each { |kv, vv| + if data_n.keys.include?(kv.to_s()) and !vv[indx].nil? + new_values_hash[kv.to_s()] = vv[indx] + end + } + elsif arguments[0][:values_for].kind_of?(Array) #values[5][:mykey] + if !arguments[0][:values_for][indx].nil? + arguments[0][:values_for][indx].each { |kv, vv| + if data_n.keys.include?(kv.to_s()) + new_values_hash[kv.to_s()] = vv + end + } + end + else + @logger.fatal("Wrong format on request application/json when supplying values, the data is an array of Hashes but the values supplied are not") + return :error, :error, :error + end + data_n.merge!(new_values_hash) + end + data_arr.push(data_n) + } + data = data_arr.to_json() + else + @logger.fatal("Wrong format on request application/json, be sure is a Hash, Array of Hashes or JSON string") + return :error, :error, :error + end + elsif content_type_included and arguments[0].include?(:values_for) + if arguments[0][:values_for].kind_of?(Hash) and arguments[0][:values_for].keys.size > 0 + if !headers_t.nil? and headers_t.kind_of?(Hash) and headers_t["Content-Type"] != "application/x-www-form-urlencoded" and headers_t["content-type"] != "application/x-www-form-urlencoded" + @logger.warn(":values_for key given without a valid content-type or data for request. No values modified on the request") + end + end + end + elsif arguments.size == 1 and arguments[0].kind_of?(String) + #path=arguments[0].to_s() + data = "" + else + @logger.fatal("Invalid number of arguments or wrong arguments in #{method_s}") + return :error, :error, :error + end + if headers_t.keys.include?("Content-Type") and !headers_t["Content-Type"]["multipart/form-data"].nil? and headers_t["Content-Type"] != ["multipart/form-data"] #only for the case raw multipart request + encoding = "UTF-8" + data_s = "" + else + encoding = data.to_s().scan(/encoding='(.*)'/i).join + if encoding.to_s() == "" + encoding = data.to_s().scan(/charset='(.*)'/i).join + end + if encoding.to_s() == "" and headers_t.include?("Content-Type") + encoding = headers_t["Content-Type"].scan(/charset='?(.*)'?/i).join + if encoding.to_s() == "" + encoding = headers_t["Content-Type"].scan(/encoding='?(.*)'?/i).join + end + end + + begin + data_s = JSON.pretty_generate(JSON.parse(data)) + rescue + data_s = data + end + data_s = data_s.to_s().gsub("<", "<") + end + if headers_t.keys.include?("Accept-Encoding") + headers_t["Accept-Encoding"].gsub!("gzip", "") #removed so the response is in plain text + end + + headers_ts = "" + headers_t.each { |key, val| headers_ts += key.to_s + ":" + val.to_s() + ", " } + message = "#{method_s} REQUEST: \npath= " + path.to_s() + "\n" + message += "headers= " + headers_ts.to_s() + "\n" + message += "data= " + data_s.to_s() + "\n" + message = @message_server + "\n" + message + if path.to_s().scan(/^https?:\/\//).size > 0 and path.to_s().scan(/^https?:\/\/#{@host}/).size == 0 + # the path is for another server than the current + else + self.class.last_request = message + @logger.info(message) + end + + if data.to_s() != "" and encoding.to_s().upcase != "UTF-8" and encoding != "" + data = data.to_s().encode(encoding, "UTF-8") + end + return path, data, headers_t + rescue Exception => stack + @logger.fatal(stack) + @logger.fatal("manage_request Error on method #{method_s} . path:#{path.to_s()}. data:#{data.to_s()}. headers:#{headers_t.to_s()}") + return :error + end + end + +end \ No newline at end of file diff --git a/lib/nice_http/manage_response.rb b/lib/nice_http/manage_response.rb new file mode 100644 index 0000000..ddf47c2 --- /dev/null +++ b/lib/nice_http/manage_response.rb @@ -0,0 +1,179 @@ +module NiceHttpManageResponse + + ###################################################### + # private method to manage Response + # input: + # resp + # data + # output: + # @response updated + ###################################################### + def manage_response(resp, data) + require "json" + begin + if @start_time.kind_of?(Time) + @response[:time_elapsed_total] = Time.now - @start_time + @start_time = nil + else + @response[:time_elapsed_total] = nil + end + if @start_time_net.kind_of?(Time) + @response[:time_elapsed] = Time.now - @start_time_net + @start_time_net = nil + else + @response[:time_elapsed] = nil + end + begin + # this is to be able to access all keys as symbols + new_resp = Hash.new() + resp.each { |key, value| + if key.kind_of?(String) + new_resp[key.to_sym] = value + end + } + new_resp.each { |key, value| + resp[key] = value + } + rescue + end + #for mock_responses to be able to add outside of the header like content-type for example + if resp.kind_of?(Hash) and !resp.has_key?(:header) + resp[:header] = {} + end + if resp.kind_of?(Hash) + resp.each { |k, v| + if k != :code and k != :message and k != :data and k != :'set-cookie' and k != :header + resp[:header][k] = v + end + } + resp[:header].each { |k, v| + resp.delete(k) if resp.has_key?(k) + } + end + + method_s = caller[0].to_s().scan(/:in `(.*)'/).join + if resp.header.kind_of?(Hash) and (resp.header["content-type"].to_s() == "application/x-deflate" or resp.header[:"content-type"].to_s() == "application/x-deflate") + data = Zlib::Inflate.inflate(data) + end + encoding_response = "" + if resp.header.kind_of?(Hash) and (resp.header["content-type"].to_s() != "" or resp.header[:"content-type"].to_s() != "") + encoding_response = resp.header["content-type"].scan(/;charset=(.*)/i).join if resp.header.has_key?("content-type") + encoding_response = resp.header[:"content-type"].scan(/;charset=(.*)/i).join if resp.header.has_key?(:"content-type") + end + if encoding_response.to_s() == "" + encoding_response = "UTF-8" + end + + if encoding_response.to_s() != "" and encoding_response.to_s().upcase != "UTF-8" + data.encode!("UTF-8", encoding_response.to_s()) + end + + if encoding_response != "" and encoding_response.to_s().upcase != "UTF-8" + @response[:message] = resp.message.to_s().encode("UTF-8", encoding_response.to_s()) + #todo: response data in here for example is convert into string, verify if that is correct or needs to maintain the original data type (hash, array...) + resp.each { |key, val| @response[key.to_sym] = val.to_s().encode("UTF-8", encoding_response.to_s()) } + else + @response[:message] = resp.message + resp.each { |key, val| + @response[key.to_sym] = val + } + end + + if !defined?(Net::HTTP::Post::Multipart) or (defined?(Net::HTTP::Post::Multipart) and !data.kind_of?(Net::HTTP::Post::Multipart)) + @response[:data] = data + else + @response[:data] = "" + end + + @response[:code] = resp.code + + unless @response.nil? + message = "\nRESPONSE: \n" + @response[:code].to_s() + ":" + @response[:message].to_s() + #if @debug + self.class.last_response = message if @debug + @response.each { |key, value| + if value.to_s() != "" + value_orig = value + if key.kind_of?(Symbol) + if key == :code or key == :data or key == :header or key == :message + if key == :data + begin + JSON.parse(value_orig) + data_s = JSON.pretty_generate(JSON.parse(value_orig)) + rescue + data_s = value_orig + end + if @debug + self.class.last_response += "\nresponse." + key.to_s() + " = '" + data_s.gsub("<", "<") + "'\n" + end + if value_orig != value + message += "\nresponse." + key.to_s() + " = '" + value.gsub("<", "<") + "'\n" + else + message += "\nresponse." + key.to_s() + " = '" + data_s.gsub("<", "<") + "'\n" + end + else + if @debug + self.class.last_response += "\nresponse." + key.to_s() + " = '" + value.to_s().gsub("<", "<") + "'" + message += "\nresponse." + key.to_s() + " = '" + value.to_s().gsub("<", "<") + "'" + end + end + else + if @debug + self.class.last_response += "\nresponse[:" + key.to_s() + "] = '" + value.to_s().gsub("<", "<") + "'" + end + message += "\nresponse[:" + key.to_s() + "] = '" + value.to_s().gsub("<", "<") + "'" + end + elsif !@response.include?(key.to_sym) + if @debug + self.class.last_response += "\nresponse['" + key.to_s() + "'] = '" + value.to_s().gsub("<", "<") + "'" + end + message += "\nresponse['" + key.to_s() + "'] = '" + value.to_s().gsub("<", "<") + "'" + end + end + } + #end + @logger.info message + if @response.kind_of?(Hash) + if @response.keys.include?(:requestid) + @headers["requestId"] = @response[:requestid] + self.class.request_id = @response[:requestid] + @logger.info "requestId was found on the response header and it has been added to the headers for the next request" + end + end + end + + if resp[:'set-cookie'].to_s() != "" + if resp.kind_of?(Hash) #mock_response + cookies_to_set = resp[:'set-cookie'].to_s().split(", ") + else #Net::Http + cookies_to_set = resp.get_fields("set-cookie") + end + cookies_to_set.each { |cookie| + cookie_pair = cookie.split("; ")[0].split("=") + cookie_path = cookie.scan(/; path=([^;]+)/i).join + @cookies[cookie_path] = Hash.new() unless @cookies.keys.include?(cookie_path) + @cookies[cookie_path][cookie_pair[0]] = cookie_pair[1] + } + + @logger.info "set-cookie added to Cookie header as required" + + if @headers.has_key?("X-CSRFToken") + csrftoken = resp[:"set-cookie"].to_s().scan(/csrftoken=([\da-z]+);/).join + if csrftoken.to_s() != "" + @headers["X-CSRFToken"] = csrftoken + @logger.info "X-CSRFToken exists on headers and has been overwritten" + end + else + csrftoken = resp[:"set-cookie"].to_s().scan(/csrftoken=([\da-z]+);/).join + if csrftoken.to_s() != "" + @headers["X-CSRFToken"] = csrftoken + @logger.info "X-CSRFToken added to header as required" + end + end + end + rescue Exception => stack + @logger.fatal stack + @logger.fatal "manage_response Error on method #{method_s} " + end + end +end \ No newline at end of file diff --git a/nice_http.gemspec b/nice_http.gemspec index 119e63a..8cfe5cc 100644 --- a/nice_http.gemspec +++ b/nice_http.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'nice_http' - s.version = '1.4.1' + s.version = '1.5.0' s.summary = "NiceHttp -- simplest library for accessing and testing HTTP and REST resources." s.description = "NiceHttp -- simplest library for accessing and testing HTTP and REST resources. Manage different hosts on the fly. Easily get the value you want from the JSON strings. Use hashes on your requests." s.authors = ["Mario Ruiz"] diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index aa8b523..3a3ee35 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,4 @@ - +require 'covered/rspec' require 'coveralls' Coveralls.wear!