Sha256: bfee44f3b1772f5779d5b6bbfc75cd361a4a78ee4a5ffe83cf01f46895039e5f
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true class EzClient::Client def initialize(options = {}) self.options = options self.clients = {} end def request(verb, url, **options) options = { **default_options, **options } keep_alive_timeout = options.delete(:keep_alive) api_auth = options.delete(:api_auth) if keep_alive_timeout client = persistent_client_for(url, timeout: keep_alive_timeout) else client = HTTP::Client.new end EzClient::Request.new(verb, url, client: client, **options).tap do |request| request.api_auth!(*api_auth) if api_auth end end def perform(*args) request(*args).perform end def perform!(*args) request(*args).perform! end private attr_accessor :options, :clients def persistent_client_for(url, timeout: 600) uri = HTTP::URI.parse(url) clients[uri.origin] ||= HTTP.persistent(uri.origin, timeout: timeout) end def default_options { api_auth: options[:api_auth], keep_alive: options[:keep_alive], max_retries: options[:max_retries], on_complete: options[:on_complete], on_error: options[:on_error], retry_exceptions: options[:retry_exceptions], timeout: options[:default_timeout], } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ezclient-0.6.1 | lib/ezclient/client.rb |
ezclient-0.6.0 | lib/ezclient/client.rb |