Class: Merge::RequestClient
- Inherits:
-
Object
- Object
- Merge::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: Merge::Environment::PRODUCTION, max_retries: nil, timeout_in_seconds: nil, account_token: nil) ⇒ Merge::RequestClient constructor
Constructor Details
#initialize(api_key:, base_url: nil, environment: Merge::Environment::PRODUCTION, max_retries: nil, timeout_in_seconds: nil, account_token: nil) ⇒ Merge::RequestClient
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/requests.rb', line 27 def initialize(api_key:, base_url: nil, environment: Merge::Environment::PRODUCTION, max_retries: nil, timeout_in_seconds: nil, account_token: nil) @default_environment = environment @base_url = environment || base_url @api_key = "Bearer #{api_key}" @headers = {} @headers["X-Account-Token"] = account_token unless account_token.nil? @conn = Faraday.new(headers: @headers) do |faraday| faraday.request :multipart 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)
16 17 18 |
# File 'lib/requests.rb', line 16 def api_key @api_key end |
#base_url ⇒ String (readonly)
14 15 16 |
# File 'lib/requests.rb', line 14 def base_url @base_url end |
#conn ⇒ Faraday (readonly)
12 13 14 |
# File 'lib/requests.rb', line 12 def conn @conn end |
#default_environment ⇒ String (readonly)
18 19 20 |
# File 'lib/requests.rb', line 18 def default_environment @default_environment end |
Instance Method Details
#get_headers ⇒ Hash{String => String}
50 51 52 53 54 |
# File 'lib/requests.rb', line 50 def get_headers headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "merge_ruby_client", "X-Fern-SDK-Version": "0.1.4" } headers["Authorization"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil? headers end |
#get_url(request_options: nil) ⇒ String
45 46 47 |
# File 'lib/requests.rb', line 45 def get_url(request_options: nil) &.base_url || @default_environment || @base_url end |