Sha256: 082ade167180fa3f0c7b5bbeab5d7addb450d01b724d6a37bffcb4f089a44fb4

Contents?: true

Size: 1.57 KB

Versions: 10

Compression:

Stored size: 1.57 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 = self.accept_redirected_result(response: http.post(url, data: data, headers: headers, open_timeout: nil, timeout: nil), delay: delay, max_attempts: max_attempts)

          self.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

            if attempts == max_attempts
              raise RestfulResource::MaximumAttemptsReached
            end
          end
          response = new_response
        end
      end
    end

    def self.wait(seconds)
      Kernel.sleep(seconds)
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
restful_resource-2.3.0 lib/restful_resource/redirections.rb
restful_resource-2.2.8 lib/restful_resource/redirections.rb
restful_resource-2.2.7 lib/restful_resource/redirections.rb
restful_resource-2.2.6 lib/restful_resource/redirections.rb
restful_resource-2.2.5 lib/restful_resource/redirections.rb
restful_resource-2.2.4 lib/restful_resource/redirections.rb
restful_resource-2.2.3 lib/restful_resource/redirections.rb
restful_resource-2.2.2 lib/restful_resource/redirections.rb
restful_resource-2.2.1 lib/restful_resource/redirections.rb
restful_resource-2.2.0 lib/restful_resource/redirections.rb