trabajo-afectivo/lib/sequencer/unit/exchange/connection.rb

44 lines
872 B
Ruby
Raw Normal View History

class Sequencer
class Unit
module Exchange
class Connection < Sequencer::Unit::Common::FallbackProvider
uses :ews_config
provides :ews_connection
private
def fallback
Viewpoint::EWSClient.new(
config[:endpoint],
config[:user],
config[:password],
additional_opts
)
end
def config
@config ||= begin
ews_config || ::Import::Exchange.config
end
end
def additional_opts
@additional_opts ||= begin
http_opts
end
end
def http_opts
return {} if config[:disable_ssl_verify].blank?
{
http_opts: {
ssl_verify_mode: OpenSSL::SSL::VERIFY_NONE
}
}
end
end
end
end
end