Class: Ittybit::AsyncRequestClient
- Inherits:
-
Object
- Object
- Ittybit::AsyncRequestClient
- 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(base_url: nil, environment: Ittybit::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil, api_key: , version: nil) ⇒ Ittybit::AsyncRequestClient constructor
Constructor Details
#initialize(base_url: nil, environment: Ittybit::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil, api_key: , version: nil) ⇒ Ittybit::AsyncRequestClient
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/requests.rb', line 72 def initialize(base_url: nil, environment: Ittybit::Environment::DEFAULT, max_retries: nil, timeout_in_seconds: nil, api_key: ENV["ITTYBIT_API_KEY"], version: nil) @default_environment = environment @base_url = environment || base_url @api_key = "Bearer #{api_key}" @headers = {} @headers["ACCEPT_VERSION"] = version unless version.nil? @conn = Faraday.new(headers: @headers) do |faraday| faraday.request :json faraday.response :raise_error, include_request: true faraday.adapter :async_http 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)
61 62 63 |
# File 'lib/requests.rb', line 61 def api_key @api_key end |
#base_url ⇒ String (readonly)
59 60 61 |
# File 'lib/requests.rb', line 59 def base_url @base_url end |
#conn ⇒ Faraday (readonly)
57 58 59 |
# File 'lib/requests.rb', line 57 def conn @conn end |
#default_environment ⇒ String (readonly)
63 64 65 |
# File 'lib/requests.rb', line 63 def default_environment @default_environment end |
Instance Method Details
#get_headers ⇒ Hash{String => String}
95 96 97 98 99 |
# File 'lib/requests.rb', line 95 def get_headers headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "ittybit", "X-Fern-SDK-Version": "1.0.0" } headers["Authorization"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil? headers end |
#get_url(request_options: nil) ⇒ String
90 91 92 |
# File 'lib/requests.rb', line 90 def get_url(request_options: nil) &.base_url || @default_environment || @base_url end |