Class: MoesifApi::BaseController
- Inherits:
-
Object
- Object
- MoesifApi::BaseController
- Defined in:
- lib/moesif_api/controllers/base_controller.rb
Direct Known Subclasses
Constant Summary collapse
- @@http_client =
UnirestClient.new
Instance Attribute Summary collapse
-
#http_call_back ⇒ Object
Returns the value of attribute http_call_back.
-
#http_client ⇒ Object
Returns the value of attribute http_client.
Instance Method Summary collapse
-
#initialize(http_client: nil, http_call_back: nil) ⇒ BaseController
constructor
A new instance of BaseController.
- #validate_response(context) ⇒ Object
Constructor Details
#initialize(http_client: nil, http_call_back: nil) ⇒ BaseController
Returns a new instance of BaseController.
9 10 11 12 |
# File 'lib/moesif_api/controllers/base_controller.rb', line 9 def initialize(http_client: nil, http_call_back: nil) @http_client = http_client ||= @@http_client @http_call_back = http_call_back end |
Instance Attribute Details
#http_call_back ⇒ Object
Returns the value of attribute http_call_back.
5 6 7 |
# File 'lib/moesif_api/controllers/base_controller.rb', line 5 def http_call_back @http_call_back end |
#http_client ⇒ Object
Returns the value of attribute http_client.
5 6 7 |
# File 'lib/moesif_api/controllers/base_controller.rb', line 5 def http_client @http_client end |
Instance Method Details
#validate_response(context) ⇒ Object
14 15 16 17 18 |
# File 'lib/moesif_api/controllers/base_controller.rb', line 14 def validate_response(context) if !context.response.status_code.between?(200, 208) #[200,208] = HTTP OK raise APIException.new 'HTTP Response Not OK', context end end |