Sha256: 6f195629469e859b050b48b008b634bb22d161b6d63ccc514ddb49a118bced50

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

module Ratis

  class Request

    extend Savon::Model

    def self.get(action, params = {})
      begin
        raise Errors::ConfigError, 'It appears that Ratis.configure has not been called or properly setup' unless Ratis.config.valid?

        # Merge in the Appid as set in the configuration.
        params.merge!({ 'Appid' => Ratis.config.appid })

        # ClassMethods from Savon::Model
        # Necessary since calling Ratis.configure doesn't allow changing of values set during Savon initialization
        # Savon memoizes the client config
        endpoint(Ratis.config.endpoint)
        namespace(Ratis.config.namespace)

        client.http.open_timeout = Ratis.config.timeout
        client.http.read_timeout = Ratis.config.timeout

        response = client.request action, :soap_action => "#{Ratis.config.namespace}##{action}", :xmlns => Ratis.config.namespace do
          soap.body = params unless params.blank?
        end

        # version = response.to_hash["#{action.downcase}_response".to_sym][:version]

        response
      rescue Errno::ECONNREFUSED => e
        raise Errors::NetworkError.new 'Refused request to ATIS SOAP server', e
      rescue Savon::SOAP::Fault => e
        raise Errors::SoapError.new e
      rescue Timeout::Error => e
        msg =  "Request to ATIS SOAP server timed out after #{ Ratis.config.timeout }s"
        raise Errors::NetworkError.new msg, e
      end
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ratis-3.6.6 lib/ratis/request.rb