Sha256: 908684eefd8dcfd75d3d101c640aef5f316119840618e28300a92f0cb3273f1b

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

require 'xively-rb'

module XivelyConnector

  class Connection < Xively::Client
    include XivelyConnector::Logging

    format :json

    # Mix in the ability to log
    include XivelyConnector::Logging

    def initialize(options)
      @logger = options[:logger] || logger
      @logger.debug "XivelyConnector::Connection initialize"
      super(options[:api_key])
    end

    #Set HTTParty params that we need to set after initialize is called
    #These params come from @options within initialize and include the following:
    #:ssl_ca_file - SSL CA File for SSL connections
    #:format - 'json', 'xml', 'html', etc. || Defaults to 'xml'
    #:format_header - :format Header string || Defaults to 'application/xml'
    #:pem_cert - /path/to/a/pem_formatted_certificate.pem for SSL connections
    #:pem_cert_pass - plaintext password, not recommended!
    def set_httparty_options(options={})
      if options[:ssl_ca_file]
        ssl_ca_file opts[:ssl_ca_file]
        if options[:pem_cert_pass]
          pem File.read(options[:pem_cert]), options[:pem_cert_pass]
        else
          pem File.read(options[:pem_cert])
        end
      end
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xively-rb-connector-0.1.0 lib/xively-rb-connector/connection.rb