Sha256: 25656757fd67d7526a7bd56f330d49fb83f4a7881b38acaab601d6025daa9a07

Contents?: true

Size: 932 Bytes

Versions: 2

Compression:

Stored size: 932 Bytes

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(:domain, 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

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

      response = Response.new(body)
      response.time_offset = time_offset
      response.collection
    end

    private

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
soapy_cake-1.0.1 lib/soapy_cake/client.rb
soapy_cake-1.0.0 lib/soapy_cake/client.rb