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



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

def content_md5
  value = find_header(%w(CONTENT-MD5 CONTENT_MD5))
  value.nil? ? '' : value
end

#content_typeObject



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

def content_type
  value = find_header(%w(CONTENT-TYPE CONTENT_TYPE HTTP_CONTENT_TYPE))
  value.nil? ? '' : value
end

#fetch_headersObject



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

def fetch_headers
  capitalize_keys @request.processed_headers
end

#http_methodObject



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

def http_method
  @request.method.to_s.upcase
end

#md5_mismatch?Boolean

Returns:

  • (Boolean)


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

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

#populate_content_md5Object



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

def populate_content_md5
  if [:post, :put].include?(@request.method)
    @request.headers['Content-MD5'] = calculated_md5
    save_headers
  end
end

#request_uriObject



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

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



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

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

#timestampObject



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

def timestamp
  value = find_header(%w(DATE HTTP_DATE))
  value.nil? ? '' : value
end