Sha256: 3d2e5c74797a2334d0a618bcdbe3a8435119e0e00f183b576a783bd1229388e8

Contents?: true

Size: 1.41 KB

Versions: 3

Compression:

Stored size: 1.41 KB

Contents

module SoapyCake
  class Client
    attr_reader :domain, :api_key, :time_offset

    def initialize(opts = {})
      @domain = opts.fetch(:domain, ENV['CAKE_DOMAIN']) || fail(Error, 'Cake domain missing')
      @api_key = opts.fetch(:api_key, ENV['CAKE_API_KEY']) || fail(Error, 'Cake API key missing')
      @time_offset = opts.fetch(:time_offset, ENV['CAKE_TIME_OFFSET']) ||
        fail(Error, 'Cake time offset missing')
      @opts = opts
    end

    protected

    attr_reader :opts

    def run(request)
      request.api_key = api_key
      request.time_offset = time_offset

      Response
        .new(response_body(request), request.short_response?, time_offset)
        .public_send(:"to_#{xml_response? ? 'xml' : 'enum'}")
    end

    private

    def xml_response?
      opts[:xml_response] == true
    end

    def response_body(request)
      if request.opts[:response].present?
        request.opts[:response]
      else
        http_response(request)
      end
    end

    def http_response(request)
      url = "https://#{domain}#{request.path}"
      http_response = HTTParty.post(url, headers: headers, body: request.xml, timeout: NET_TIMEOUT)

      fail RequestFailed, "Request failed with HTTP #{http_response.code}: " \
        "#{http_response.body}" unless http_response.success?

      http_response
    end

    def headers
      { 'Content-Type' => 'application/soap+xml;charset=UTF-8' }
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
soapy_cake-1.14.2 lib/soapy_cake/client.rb
soapy_cake-1.14.1 lib/soapy_cake/client.rb
soapy_cake-1.14.0 lib/soapy_cake/client.rb