Sha256: 508804dc626c80dd8c562fab1813cbde854d7b07e6170f7f8e09890dc27a014e

Contents?: true

Size: 1.38 KB

Versions: 14

Compression:

Stored size: 1.38 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, **params)
          url = collection_url(params)

          response = self.accept_redirected_result(response: http.post(url, data: data), 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)

            while (new_response.status == 202) && (attempts < max_attempts)
              attempts += 1
              RestfulResource::Redirections.wait(delay)
              new_response = http.get(resource_location)
            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

14 entries across 14 versions & 1 rubygems

Version Path
restful_resource-1.6.0 lib/restful_resource/redirections.rb
restful_resource-1.5.0 lib/restful_resource/redirections.rb
restful_resource-1.4.3 lib/restful_resource/redirections.rb
restful_resource-1.4.2 lib/restful_resource/redirections.rb
restful_resource-1.4.1 lib/restful_resource/redirections.rb
restful_resource-1.4.0 lib/restful_resource/redirections.rb
restful_resource-1.3.0 lib/restful_resource/redirections.rb
restful_resource-1.2.2 lib/restful_resource/redirections.rb
restful_resource-1.2.1 lib/restful_resource/redirections.rb
restful_resource-1.2.0 lib/restful_resource/redirections.rb
restful_resource-1.1.0 lib/restful_resource/redirections.rb
restful_resource-1.0.0 lib/restful_resource/redirections.rb
restful_resource-0.10.2 lib/restful_resource/redirections.rb
restful_resource-0.10.1 lib/restful_resource/redirections.rb