Class: ApiAuth::RequestDrivers::RestClientRequest
- Inherits:
-
Object
- Object
- ApiAuth::RequestDrivers::RestClientRequest
show all
- Includes:
- Helpers
- Defined in:
- lib/api_auth/request_drivers/rest_client.rb
Overview
Instance Method Summary
collapse
Methods included from Helpers
#b64_encode, #capitalize_keys, #md5_base64digest
Constructor Details
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 =
true
end
|
Instance Method Details
78
79
80
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 78
def
%w(Authorization AUTHORIZATION HTTP_AUTHORIZATION)
end
|
#calculated_md5 ⇒ Object
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_md5 ⇒ Object
59
60
61
62
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 59
def content_md5
value = (%w(CONTENT-MD5 CONTENT_MD5))
value.nil? ? '' : value
end
|
#content_type ⇒ Object
54
55
56
57
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 54
def content_type
value = (%w(CONTENT-TYPE CONTENT_TYPE HTTP_CONTENT_TYPE))
value.nil? ? '' : value
end
|
46
47
48
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 46
def
capitalize_keys @request.
end
|
#http_method ⇒ Object
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
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_md5 ⇒ Object
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.['Content-MD5'] = calculated_md5
end
end
|
#request_uri ⇒ Object
64
65
66
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 64
def request_uri
@request.url
end
|
15
16
17
18
19
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 15
def ()
@request.['Authorization'] =
@request
end
|
#set_date ⇒ Object
68
69
70
71
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 68
def set_date
@request.['DATE'] = Time.now.utc.httpdate
end
|
#timestamp ⇒ Object
73
74
75
76
|
# File 'lib/api_auth/request_drivers/rest_client.rb', line 73
def timestamp
value = (%w(DATE HTTP_DATE))
value.nil? ? '' : value
end
|