Class: Papertrail::HttpClient
- Inherits:
-
Object
- Object
- Papertrail::HttpClient
- Defined in:
- lib/papertrail/http_client.rb
Constant Summary collapse
- ESCAPE_RE =
/[^a-zA-Z0-9 .~_-]/
Instance Method Summary collapse
- #basic_auth(login, pass) ⇒ Object
- #delete(path) ⇒ Object
- #get(path, params = {}) ⇒ Object
-
#initialize(ssl) ⇒ HttpClient
constructor
A new instance of HttpClient.
- #post(path, params) ⇒ Object
- #put(path, params) ⇒ Object
- #token_auth(token) ⇒ Object
Constructor Details
#initialize(ssl) ⇒ HttpClient
Returns a new instance of HttpClient.
24 25 26 27 |
# File 'lib/papertrail/http_client.rb', line 24 def initialize(ssl) @ssl = ssl @headers = {} end |
Instance Method Details
#basic_auth(login, pass) ⇒ Object
29 30 31 |
# File 'lib/papertrail/http_client.rb', line 29 def basic_auth(login, pass) @headers['Authorization'] = 'Basic ' + ["#{login}:#{pass}"].pack('m').delete("\r\n") end |
#delete(path) ⇒ Object
52 53 54 |
# File 'lib/papertrail/http_client.rb', line 52 def delete(path) on_complete(https.delete(request_uri(path), @headers)) end |
#get(path, params = {}) ⇒ Object
37 38 39 40 41 42 |
# File 'lib/papertrail/http_client.rb', line 37 def get(path, params = {}) if params.size > 0 path = "#{path}?#{build_nested_query(params)}" end on_complete(https.get(request_uri(path), @headers)) end |
#post(path, params) ⇒ Object
48 49 50 |
# File 'lib/papertrail/http_client.rb', line 48 def post(path, params) on_complete(https.post(request_uri(path), build_nested_query(params), @headers)) end |
#put(path, params) ⇒ Object
44 45 46 |
# File 'lib/papertrail/http_client.rb', line 44 def put(path, params) on_complete(https.put(request_uri(path), build_nested_query(params), @headers)) end |
#token_auth(token) ⇒ Object
33 34 35 |
# File 'lib/papertrail/http_client.rb', line 33 def token_auth(token) @headers['X-Papertrail-Token'] = token end |