Sha256: 3bba41009595c6f56936f1f62517646541c3b4a38a0a29b0a79589f553cf14bd

Contents?: true

Size: 951 Bytes

Versions: 10

Compression:

Stored size: 951 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, request.addedit?)
      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

10 entries across 10 versions & 1 rubygems

Version Path
soapy_cake-1.5.0 lib/soapy_cake/client.rb
soapy_cake-1.4.0 lib/soapy_cake/client.rb
soapy_cake-1.3.6 lib/soapy_cake/client.rb
soapy_cake-1.3.5 lib/soapy_cake/client.rb
soapy_cake-1.3.4 lib/soapy_cake/client.rb
soapy_cake-1.3.3 lib/soapy_cake/client.rb
soapy_cake-1.3.2 lib/soapy_cake/client.rb
soapy_cake-1.3.1 lib/soapy_cake/client.rb
soapy_cake-1.3.0 lib/soapy_cake/client.rb
soapy_cake-1.2.0 lib/soapy_cake/client.rb