Module: RestfulResource::Redirections

Defined in:
lib/restful_resource/redirections.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/restful_resource/redirections.rb', line 9

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

.wait(seconds) ⇒ Object



43
44
45
# File 'lib/restful_resource/redirections.rb', line 43

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