Class: Pinnacle::RequestClient
- Inherits:
-
Object
- Object
- Pinnacle::RequestClient
- Defined in:
- lib/requests.rb
Instance Attribute Summary collapse
- #api_key ⇒ String readonly
- #base_url ⇒ String readonly
- #conn ⇒ Faraday readonly
- #default_environment ⇒ String readonly
Instance Method Summary collapse
- #get_headers ⇒ Hash{String => String}
- #get_url(request_options: nil) ⇒ String
- #initialize(api_key:, base_url: nil, environment: Pinnacle::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) ⇒ Pinnacle::RequestClient constructor
Constructor Details
#initialize(api_key:, base_url: nil, environment: Pinnacle::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) ⇒ Pinnacle::RequestClient
25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/requests.rb', line 25 def initialize(api_key:, base_url: nil, environment: Pinnacle::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil) @default_environment = environment @base_url = environment || base_url @api_key = api_key @conn = Faraday.new do |faraday| faraday.request :json faraday.response :raise_error, include_request: true faraday.request :retry, { max: max_retries } unless max_retries.nil? faraday..timeout = timeout_in_seconds unless timeout_in_seconds.nil? end end |
Instance Attribute Details
#api_key ⇒ String (readonly)
15 16 17 |
# File 'lib/requests.rb', line 15 def api_key @api_key end |
#base_url ⇒ String (readonly)
13 14 15 |
# File 'lib/requests.rb', line 13 def base_url @base_url end |
#conn ⇒ Faraday (readonly)
11 12 13 |
# File 'lib/requests.rb', line 11 def conn @conn end |
#default_environment ⇒ String (readonly)
17 18 19 |
# File 'lib/requests.rb', line 17 def default_environment @default_environment end |
Instance Method Details
#get_headers ⇒ Hash{String => String}
45 46 47 48 49 |
# File 'lib/requests.rb', line 45 def get_headers headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "rcs", "X-Fern-SDK-Version": "1.0.3" } headers["PINNACLE-API-Key"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil? headers end |
#get_url(request_options: nil) ⇒ String
40 41 42 |
# File 'lib/requests.rb', line 40 def get_url(request_options: nil) &.base_url || @default_environment || @base_url end |