Class: ApiAuth::RequestDrivers::HttpiRequest
- Inherits:
-
Object
- Object
- ApiAuth::RequestDrivers::HttpiRequest
show all
- Includes:
- Helpers
- Defined in:
- lib/api_auth/request_drivers/httpi.rb
Overview
Instance Method Summary
collapse
Methods included from Helpers
#b64_encode, #capitalize_keys, #md5_base64digest
Constructor Details
Returns a new instance of HttpiRequest.
9
10
11
12
13
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 9
def initialize(request)
@request = request
true
end
|
Instance Method Details
72
73
74
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 72
def
%w(Authorization AUTHORIZATION HTTP_AUTHORIZATION)
end
|
#calculated_md5 ⇒ Object
21
22
23
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 21
def calculated_md5
md5_base64digest(@request.body || '')
end
|
#content_md5 ⇒ Object
53
54
55
56
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 53
def content_md5
value = (%w(CONTENT-MD5 CONTENT_MD5))
value.nil? ? "" : value
end
|
#content_type ⇒ Object
48
49
50
51
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 48
def content_type
value = (%w(CONTENT-TYPE CONTENT_TYPE HTTP_CONTENT_TYPE))
value.nil? ? "" : value
end
|
40
41
42
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 40
def
= capitalize_keys @request.
end
|
#http_method ⇒ Object
44
45
46
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 44
def http_method
nil
end
|
#md5_mismatch? ⇒ Boolean
32
33
34
35
36
37
38
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 32
def md5_mismatch?
if @request.body
calculated_md5 != content_md5
else
false
end
end
|
#populate_content_md5 ⇒ Object
25
26
27
28
29
30
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 25
def populate_content_md5
if @request.body
@request.["Content-MD5"] = calculated_md5
end
end
|
#request_uri ⇒ Object
58
59
60
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 58
def request_uri
@request.url.request_uri
end
|
15
16
17
18
19
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 15
def ()
@request.["Authorization"] =
@request
end
|
#set_date ⇒ Object
62
63
64
65
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 62
def set_date
@request.["DATE"] = Time.now.utc.httpdate
end
|
#timestamp ⇒ Object
67
68
69
70
|
# File 'lib/api_auth/request_drivers/httpi.rb', line 67
def timestamp
value = (%w(DATE HTTP_DATE))
value.nil? ? "" : value
end
|