class Apisync::Rails::Http

Public Class Methods

post(attrs, request_concurrency:, too_many_requests_attempts: nil, concurrency_lib: nil) click to toggle source
# File lib/apisync/rails/http.rb, line 4
def self.post(attrs, request_concurrency:, too_many_requests_attempts: nil, concurrency_lib: nil)
  headers = {}
  headers["X-Request-Concurrency"] = request_concurrency.to_s

  if ::Rails.respond_to?(:gem_version)
    rails_version = ::Rails.gem_version.to_s
  elsif ::Rails::VERSION.is_a?(String)
    rails_version = ::Rails::VERSION
  elsif ::Rails::VERSION::STRING
    rails_version = ::Rails::VERSION::STRING
  end

  headers["X-Framework"] = "Ruby on Rails #{rails_version}"
  headers["X-Client-Library"] = "apisync-rails #{Apisync::Rails::VERSION}"

  if concurrency_lib
    headers["X-Concurrency-Lib"] = concurrency_lib.to_s
  end
  if too_many_requests_attempts
    headers["X-TooManyRequests-Attempts"] = too_many_requests_attempts.to_s
  end

  if Apisync.logger.nil?
    Apisync.logger = ::Rails.logger
  end

  client = Apisync.new
  response = client.inventory_items.save(attributes: attrs, headers: headers)

  unless response.success?
    reference_id_msg = ""
    if attrs["reference_id"].present?
      reference_id_msg = "with reference_id '#{attrs[:reference_id]}' "
    end

    ::Rails.logger.warn "[APISync] Request #{reference_id_msg}failed: #{response.body}"
  end

  response
end