2017-06-27 14:21:27 -04:00
|
|
|
module DiscourseChat
|
|
|
|
module Manager
|
|
|
|
|
|
|
|
def self.guardian
|
2017-07-03 06:08:14 -04:00
|
|
|
Guardian.new(User.find_by(username: SiteSetting.chat_integration_discourse_username))
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.trigger_notifications(post_id)
|
|
|
|
Rails.logger.info("Triggering chat notifications for post #{post_id}")
|
|
|
|
|
|
|
|
post = Post.find_by(id: post_id)
|
|
|
|
|
|
|
|
# Abort if the chat_user doesn't have permission to see the post
|
|
|
|
return if !guardian.can_see?(post)
|
|
|
|
|
|
|
|
# Abort if the post is blank, or is non-regular (e.g. a "topic closed" notification)
|
|
|
|
return if post.blank? || post.post_type != Post.types[:regular]
|
|
|
|
|
|
|
|
topic = post.topic
|
|
|
|
|
|
|
|
# Abort if a private message (possible TODO: Add support for notifying about group PMs)
|
|
|
|
return if topic.blank? || topic.archetype == Archetype.private_message
|
|
|
|
|
|
|
|
# Load all the rules that apply to this topic's category
|
2017-07-13 11:09:34 -04:00
|
|
|
matching_rules = DiscourseChat::Rule.with_category_id(topic.category_id)
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
if topic.category # Also load the rules for the wildcard category
|
2017-07-13 11:09:34 -04:00
|
|
|
matching_rules += DiscourseChat::Rule.with_category_id(nil)
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# If tagging is enabled, thow away rules that don't apply to this topic
|
|
|
|
if SiteSetting.tagging_enabled
|
|
|
|
topic_tags = topic.tags.present? ? topic.tags.pluck(:name) : []
|
|
|
|
matching_rules = matching_rules.select do |rule|
|
2017-06-29 12:50:54 -04:00
|
|
|
next true if rule.tags.nil? or rule.tags.empty? # Filter has no tags specified
|
|
|
|
any_tags_match = !((rule.tags & topic_tags).empty?)
|
2017-06-27 14:21:27 -04:00
|
|
|
next any_tags_match # If any tags match, keep this filter, otherwise throw away
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Sort by order of precedence (mute always wins; watch beats follow)
|
|
|
|
precedence = { 'mute' => 0, 'watch' => 1, 'follow' => 2}
|
2017-06-29 12:50:54 -04:00
|
|
|
sort_func = proc { |a, b| precedence[a.filter] <=> precedence[b.filter] }
|
2017-06-27 14:21:27 -04:00
|
|
|
matching_rules = matching_rules.sort(&sort_func)
|
|
|
|
|
|
|
|
# Take the first rule for each channel
|
2017-07-13 16:47:15 -04:00
|
|
|
uniq_func = proc { |rule| [rule.channel_id] }
|
2017-06-27 14:21:27 -04:00
|
|
|
matching_rules = matching_rules.uniq(&uniq_func)
|
|
|
|
|
|
|
|
# If a matching rule is set to mute, we can discard it now
|
2017-06-29 12:50:54 -04:00
|
|
|
matching_rules = matching_rules.select { |rule| rule.filter != "mute" }
|
2017-06-27 14:21:27 -04:00
|
|
|
|
|
|
|
# If this is not the first post, discard all "follow" rules
|
|
|
|
if not post.is_first_post?
|
2017-06-29 12:50:54 -04:00
|
|
|
matching_rules = matching_rules.select { |rule| rule.filter != "follow" }
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# All remaining rules now require a notification to be sent
|
|
|
|
# If there are none left, abort
|
|
|
|
return false if matching_rules.empty?
|
|
|
|
|
|
|
|
# Loop through each rule, and trigger appropriate notifications
|
|
|
|
matching_rules.each do |rule|
|
2017-07-13 16:47:15 -04:00
|
|
|
channel = rule.channel
|
|
|
|
provider = ::DiscourseChat::Provider.get_by_name(channel.provider)
|
2017-07-03 10:53:26 -04:00
|
|
|
is_enabled = ::DiscourseChat::Provider.is_enabled(provider)
|
2017-07-04 14:37:56 -04:00
|
|
|
|
2017-07-03 10:53:26 -04:00
|
|
|
if provider and is_enabled
|
2017-07-04 14:37:56 -04:00
|
|
|
begin
|
|
|
|
provider.trigger_notification(post, rule.channel)
|
2017-07-12 13:28:45 -04:00
|
|
|
rule.update_attribute('error_key', nil) if rule.error_key
|
2017-07-04 14:37:56 -04:00
|
|
|
rescue => e
|
|
|
|
if e.class == DiscourseChat::ProviderError and e.info.key?(:error_key) and !e.info[:error_key].nil?
|
2017-07-12 13:28:45 -04:00
|
|
|
rule.update_attribute('error_key', e.info[:error_key])
|
2017-07-04 14:37:56 -04:00
|
|
|
else
|
2017-07-12 13:28:45 -04:00
|
|
|
rule.update_attribute('error_key','chat_integration.rule_exception')
|
2017-07-04 14:37:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Log the error
|
|
|
|
Discourse.handle_job_exception(e,
|
|
|
|
message: "Triggering notifications failed",
|
|
|
|
extra: { provider_name: provider::PROVIDER_NAME,
|
|
|
|
channel: rule.channel,
|
|
|
|
post_id: post.id,
|
|
|
|
error_info: e.class == DiscourseChat::ProviderError ? e.info : nil }
|
|
|
|
)
|
|
|
|
end
|
2017-07-03 10:53:26 -04:00
|
|
|
elsif provider
|
|
|
|
# Provider is disabled, don't do anything
|
2017-06-27 14:21:27 -04:00
|
|
|
else
|
|
|
|
# TODO: Handle when the provider does not exist
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|