Sha256: d4f58d20486eb6fabab303b898bcc5bfd07755bc35b85026ae066d39acc8ab7c
Contents?: true
Size: 1.22 KB
Versions: 10
Compression:
Stored size: 1.22 KB
Contents
module SalesforceStreamer class TopicManager attr_reader :push_topics def initialize(push_topics:) @push_topics = push_topics @client = SalesforceClient.new end def run Log.info 'Running Topic Manager' @push_topics.each do |push_topic| Log.debug push_topic.to_s upsert(push_topic) if diff?(push_topic) end end private def diff?(push_topic) hashie = @client.find_push_topic_by_name(push_topic.name) unless hashie Log.info "New PushTopic #{push_topic.name}" return true end Log.debug "Remote PushTopic found with hash=#{hashie.to_h}" push_topic.id = hashie.Id return true unless push_topic.query.eql?(hashie.Query) return true unless push_topic.notify_for_fields.eql?(hashie.NotifyForFields) return true unless push_topic.api_version.to_s.eql?(hashie.ApiVersion.to_s) Log.debug 'No differences detected' false end def upsert(push_topic) Log.info "Upsert PushTopic #{push_topic.name}" if Configuration.instance.manage_topics? @client.upsert_push_topic(push_topic) else Log.info 'Skipping upsert because manage topics is off' end end end end
Version data entries
10 entries across 10 versions & 1 rubygems