Sha256: 364354d518e8a8528fc74a3347d10420df5351b1b7b30bcb49f976ea055cf897
Contents?: true
Size: 933 Bytes
Versions: 3
Compression:
Stored size: 933 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(: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 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
soapy_cake-1.1.2 | lib/soapy_cake/client.rb |
soapy_cake-1.1.1 | lib/soapy_cake/client.rb |
soapy_cake-1.1.0 | lib/soapy_cake/client.rb |