Sha256: adcb15ca1cca455b1e67b7a5efd06c1ce4923d8e63ade2c167f3ae2db02c71af
Contents?: true
Size: 1.53 KB
Versions: 11
Compression:
Stored size: 1.53 KB
Contents
module RestfulResource class MaximumAttemptsReached < StandardError def message 'The maximum attempts limit was reached before the resource was ready' end end module Redirections def self.included(base) base.instance_eval do def post(data: {}, delay: 1.0, max_attempts: 10, headers: {}, open_timeout: nil, timeout: nil, **params) url = collection_url(params) response = accept_redirected_result(response: http.post(url, data: data, headers: headers, open_timeout: nil, timeout: nil), delay: delay, max_attempts: max_attempts) new(parse_json(response.body)) end private def self.accept_redirected_result(response:, delay:, max_attempts:) new_response = response if response.status == 303 attempts = 0 resource_location = response.headers[:location] RestfulResource::Redirections.wait(delay) new_response = http.get(resource_location, headers: {}, open_timeout: nil, timeout: nil) while (new_response.status == 202) && (attempts < max_attempts) attempts += 1 RestfulResource::Redirections.wait(delay) new_response = http.get(resource_location, headers: {}, open_timeout: nil, timeout: nil) end raise RestfulResource::MaximumAttemptsReached if attempts == max_attempts end response = new_response end end end def self.wait(seconds) Kernel.sleep(seconds) end end end
Version data entries
11 entries across 11 versions & 1 rubygems