lib/soapy_cake/client.rb in soapy_cake-0.3.4 vs lib/soapy_cake/client.rb in soapy_cake-1.0.0
- old
+ new
@@ -1,5 +1,35 @@
-require 'soapy_cake/client/http_client'
-require 'soapy_cake/client/cake_client'
+module SoapyCake
+ class Client
+ attr_reader :domain, :api_key, :time_offset
-module SoapyCake::Client
+ 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