Class: ApimaticCalculator::BaseController
- Inherits:
-
Object
- Object
- ApimaticCalculator::BaseController
- Defined in:
- lib/apimatic_calculator/controllers/base_controller.rb
Overview
BaseController.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#config ⇒ Object
Returns the value of attribute config.
-
#http_call_back ⇒ Object
Returns the value of attribute http_call_back.
Instance Method Summary collapse
- #execute_request(request, binary: false) ⇒ Object
-
#initialize(config, http_call_back: nil) ⇒ BaseController
constructor
A new instance of BaseController.
- #validate_parameters(args) ⇒ Object
- #validate_response(response) ⇒ Object
Constructor Details
#initialize(config, http_call_back: nil) ⇒ BaseController
Returns a new instance of BaseController.
11 12 13 14 15 16 17 18 |
# File 'lib/apimatic_calculator/controllers/base_controller.rb', line 11 def initialize(config, http_call_back: nil) @config = config @http_call_back = http_call_back @global_headers = { 'user-agent' => 'APIMATIC 2.0' } end |
Instance Attribute Details
#config ⇒ Object
Returns the value of attribute config.
9 10 11 |
# File 'lib/apimatic_calculator/controllers/base_controller.rb', line 9 def config @config end |
#http_call_back ⇒ Object
Returns the value of attribute http_call_back.
9 10 11 |
# File 'lib/apimatic_calculator/controllers/base_controller.rb', line 9 def http_call_back @http_call_back end |
Instance Method Details
#execute_request(request, binary: false) ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/apimatic_calculator/controllers/base_controller.rb', line 28 def execute_request(request, binary: false) @http_call_back.on_before_request(request) if @http_call_back APIHelper.clean_hash(request.headers) request.headers.merge!(@global_headers) response = if binary config.http_client.execute_as_binary(request) else config.http_client.execute_as_string(request) end @http_call_back.on_after_response(response) if @http_call_back response end |
#validate_parameters(args) ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/apimatic_calculator/controllers/base_controller.rb', line 20 def validate_parameters(args) args.each do |_name, value| if value.nil? raise ArgumentError, "Required parameter #{_name} cannot be nil." end end end |
#validate_response(response) ⇒ Object
44 45 46 47 |
# File 'lib/apimatic_calculator/controllers/base_controller.rb', line 44 def validate_response(response) raise APIException.new 'HTTP Response Not OK', response unless response.status_code.between?(200, 208) # [200,208] = HTTP OK end |