Class: ApiAuth::RequestDrivers::RestClientRequest

Inherits:
Object
  • Object
show all
Includes:
Helpers
Defined in:
lib/api_auth/request_drivers/rest_client.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods included from Helpers

#b64_encode, #capitalize_keys, #md5_base64digest

Constructor Details

#initialize(request) ⇒ RestClientRequest

Returns a new instance of RestClientRequest.



9
10
11
12
13
# File 'lib/api_auth/request_drivers/rest_client.rb', line 9

def initialize(request)
  @request = request
  @headers = fetch_headers
  true
end

Instance Method Details

#authorization_headerObject



78
79
80
# File 'lib/api_auth/request_drivers/rest_client.rb', line 78

def authorization_header
  find_header %w[Authorization AUTHORIZATION HTTP_AUTHORIZATION]
end

#calculated_md5Object



21
22
23
24
25
26
27
28
29
# File 'lib/api_auth/request_drivers/rest_client.rb', line 21

def calculated_md5
  if @request.payload
    body = @request.payload.read
    @request.payload.instance_variable_get(:@stream).seek(0)
  else
    body = ''
  end
  md5_base64digest(body)
end

#content_md5Object



57
58
59
# File 'lib/api_auth/request_drivers/rest_client.rb', line 57

def content_md5
  find_header(%w[CONTENT-MD5 CONTENT_MD5])
end

#content_typeObject



53
54
55
# File 'lib/api_auth/request_drivers/rest_client.rb', line 53

def content_type
  find_header(%w[CONTENT-TYPE CONTENT_TYPE HTTP_CONTENT_TYPE])
end

#fetch_headersObject



45
46
47
# File 'lib/api_auth/request_drivers/rest_client.rb', line 45

def fetch_headers
  capitalize_keys @request.processed_headers
end

#http_methodObject



49
50
51
# File 'lib/api_auth/request_drivers/rest_client.rb', line 49

def http_method
  @request.method.to_s.upcase
end

#md5_mismatch?Boolean

Returns:

  • (Boolean)


37
38
39
40
41
42
43
# File 'lib/api_auth/request_drivers/rest_client.rb', line 37

def md5_mismatch?
  if i[post put].include?(@request.method)
    calculated_md5 != content_md5
  else
    false
  end
end

#original_uriObject



61
62
63
# File 'lib/api_auth/request_drivers/rest_client.rb', line 61

def original_uri
  find_header(%w[X-ORIGINAL-URI X_ORIGINAL_URI HTTP_X_ORIGINAL_URI])
end

#populate_content_md5Object



31
32
33
34
35
# File 'lib/api_auth/request_drivers/rest_client.rb', line 31

def populate_content_md5
  return unless i[post put].include?(@request.method)
  @request.headers['Content-MD5'] = calculated_md5
  save_headers
end

#request_uriObject



65
66
67
# File 'lib/api_auth/request_drivers/rest_client.rb', line 65

def request_uri
  @request.url
end

#set_auth_header(header) ⇒ Object



15
16
17
18
19
# File 'lib/api_auth/request_drivers/rest_client.rb', line 15

def set_auth_header(header)
  @request.headers['Authorization'] = header
  save_headers # enforce update of processed_headers based on last updated headers
  @request
end

#set_dateObject



69
70
71
72
# File 'lib/api_auth/request_drivers/rest_client.rb', line 69

def set_date
  @request.headers['DATE'] = Time.now.utc.httpdate
  save_headers
end

#timestampObject



74
75
76
# File 'lib/api_auth/request_drivers/rest_client.rb', line 74

def timestamp
  find_header(%w[DATE HTTP_DATE])
end