2019-05-12 22:37:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-30 08:09:36 -04:00
|
|
|
module DiscourseChat::Provider::SlackProvider
|
|
|
|
PROVIDER_NAME = "slack".freeze
|
2020-06-15 11:45:25 -04:00
|
|
|
THREAD = "thread".freeze
|
2017-06-30 08:09:36 -04:00
|
|
|
|
2017-07-03 10:53:26 -04:00
|
|
|
PROVIDER_ENABLED_SETTING = :chat_integration_slack_enabled
|
|
|
|
|
2017-07-17 12:53:32 -04:00
|
|
|
CHANNEL_PARAMETERS = [
|
2019-09-30 08:27:35 -04:00
|
|
|
{ key: "identifier", regex: '^[@#]?\S*$', unique: true }
|
2017-07-17 12:53:32 -04:00
|
|
|
]
|
2017-07-03 19:14:01 -04:00
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
require_dependency 'topic'
|
|
|
|
::Topic.register_custom_field_type(DiscourseChat::Provider::SlackProvider::THREAD, :text)
|
|
|
|
|
|
|
|
class ::Topic
|
|
|
|
def slack_thread_id=(ts)
|
|
|
|
self.custom_fields[DiscourseChat::Provider::SlackProvider::THREAD] = ts
|
|
|
|
end
|
|
|
|
def slack_thread_id
|
|
|
|
self.custom_fields[DiscourseChat::Provider::SlackProvider::THREAD]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-03 10:53:26 -04:00
|
|
|
def self.excerpt(post, max_length = SiteSetting.chat_integration_slack_excerpt_length)
|
2017-06-30 08:09:36 -04:00
|
|
|
doc = Nokogiri::HTML.fragment(post.excerpt(max_length,
|
|
|
|
remap_emoji: true,
|
|
|
|
keep_onebox_source: true
|
|
|
|
))
|
|
|
|
|
|
|
|
SlackMessageFormatter.format(doc.to_html)
|
|
|
|
end
|
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
def self.slack_message(post, channel, filter)
|
2017-06-30 08:09:36 -04:00
|
|
|
display_name = "@#{post.user.username}"
|
|
|
|
full_name = post.user.name || ""
|
|
|
|
|
|
|
|
if !(full_name.strip.empty?) && (full_name.strip.gsub(' ', '_').casecmp(post.user.username) != 0) && (full_name.strip.gsub(' ', '').casecmp(post.user.username) != 0)
|
|
|
|
display_name = "#{full_name} @#{post.user.username}"
|
|
|
|
end
|
|
|
|
|
|
|
|
topic = post.topic
|
|
|
|
|
2017-07-04 18:35:45 -04:00
|
|
|
category = ''
|
2019-06-04 13:47:32 -04:00
|
|
|
if topic.category&.uncategorized?
|
|
|
|
category = "[#{I18n.t('uncategorized_category_name')}]"
|
|
|
|
elsif topic.category
|
2017-08-01 15:53:39 -04:00
|
|
|
category = (topic.category.parent_category) ? "[#{topic.category.parent_category.name}/#{topic.category.name}]" : "[#{topic.category.name}]"
|
2017-07-04 18:35:45 -04:00
|
|
|
end
|
2017-06-30 08:09:36 -04:00
|
|
|
|
|
|
|
icon_url =
|
2018-11-14 02:17:44 -05:00
|
|
|
if SiteSetting.chat_integration_slack_icon_url.present?
|
2017-07-03 06:08:14 -04:00
|
|
|
"#{Discourse.base_url}#{SiteSetting.chat_integration_slack_icon_url}"
|
2018-11-14 02:17:44 -05:00
|
|
|
elsif (url = (SiteSetting.try(:site_logo_small_url) || SiteSetting.logo_small_url)).present?
|
|
|
|
"#{Discourse.base_url}#{url}"
|
2017-06-30 08:09:36 -04:00
|
|
|
end
|
|
|
|
|
2019-09-11 10:08:40 -04:00
|
|
|
slack_username =
|
|
|
|
if SiteSetting.chat_integration_slack_username.present?
|
|
|
|
SiteSetting.chat_integration_slack_username
|
|
|
|
else
|
|
|
|
SiteSetting.title || "Discourse"
|
|
|
|
end
|
|
|
|
|
2017-06-30 08:09:36 -04:00
|
|
|
message = {
|
|
|
|
channel: channel,
|
2019-09-11 10:08:40 -04:00
|
|
|
username: slack_username,
|
2017-06-30 08:09:36 -04:00
|
|
|
icon_url: icon_url,
|
|
|
|
attachments: []
|
|
|
|
}
|
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
if filter == "thread" && thread_ts = topic.slack_thread_id
|
|
|
|
message[:thread_ts] = thread_ts if not thread_ts.nil?
|
|
|
|
end
|
|
|
|
|
2017-06-30 08:09:36 -04:00
|
|
|
summary = {
|
|
|
|
fallback: "#{topic.title} - #{display_name}",
|
|
|
|
author_name: display_name,
|
|
|
|
author_icon: post.user.small_avatar_url,
|
2017-07-04 18:35:45 -04:00
|
|
|
color: topic.category ? "##{topic.category.color}" : nil,
|
2017-07-12 06:58:19 -04:00
|
|
|
text: excerpt(post),
|
2017-08-21 10:28:37 -04:00
|
|
|
mrkdwn_in: ["text"],
|
2019-06-04 13:47:32 -04:00
|
|
|
title: "#{topic.title} #{category} #{topic.tags.present? ? topic.tags.map(&:name).join(', ') : ''}",
|
2017-09-09 18:08:45 -04:00
|
|
|
title_link: post.full_url,
|
|
|
|
thumb_url: post.full_url
|
2017-06-30 08:09:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
message[:attachments].push(summary)
|
2017-08-21 10:28:37 -04:00
|
|
|
|
2019-11-14 15:03:49 -05:00
|
|
|
message
|
2017-06-30 08:09:36 -04:00
|
|
|
end
|
|
|
|
|
2017-06-30 11:39:19 -04:00
|
|
|
def self.send_via_api(post, channel, message)
|
2017-08-01 15:53:39 -04:00
|
|
|
http = Net::HTTP.new("slack.com", 443)
|
2017-06-30 08:09:36 -04:00
|
|
|
http.use_ssl = true
|
2017-08-01 15:53:39 -04:00
|
|
|
|
|
|
|
response = nil
|
2017-06-30 10:28:20 -04:00
|
|
|
uri = ""
|
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
# <!--SLACK_CHANNEL_ID=#{@channel_id};SLACK_TS=#{@requested_thread_ts}-->
|
|
|
|
slack_thread_regex = /<!--SLACK_CHANNEL_ID=(\w+);SLACK_TS=([0-9]{10}.[0-9]{6})-->/
|
2017-06-30 10:28:20 -04:00
|
|
|
|
2017-08-21 10:28:37 -04:00
|
|
|
req = Net::HTTP::Post.new(URI('https://slack.com/api/chat.postMessage'))
|
|
|
|
|
|
|
|
data = {
|
|
|
|
token: SiteSetting.chat_integration_slack_access_token,
|
|
|
|
username: message[:username],
|
|
|
|
icon_url: message[:icon_url],
|
|
|
|
channel: message[:channel].gsub('#', ''),
|
|
|
|
attachments: message[:attachments].to_json
|
|
|
|
}
|
2020-06-15 11:45:25 -04:00
|
|
|
if message.key?(:thread_ts)
|
|
|
|
data[:thread_ts] = message[:thread_ts]
|
|
|
|
elsif match = slack_thread_regex.match(post.raw)
|
|
|
|
post.topic.slack_thread_id = match.captures[1]
|
|
|
|
post.topic.save_custom_fields
|
|
|
|
end
|
2017-08-21 10:28:37 -04:00
|
|
|
|
|
|
|
req.set_form_data(data)
|
|
|
|
|
|
|
|
response = http.request(req)
|
2017-06-30 10:28:20 -04:00
|
|
|
|
2017-08-01 15:53:39 -04:00
|
|
|
unless response.kind_of? Net::HTTPSuccess
|
|
|
|
raise ::DiscourseChat::ProviderError.new info: { request: uri, response_code: response.code, response_body: response.body }
|
2017-07-07 06:23:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
|
|
|
|
unless json["ok"] == true
|
2017-08-01 15:53:39 -04:00
|
|
|
if json.key?("error") && (json["error"] == ('channel_not_found') || json["error"] == ('is_archived'))
|
2017-07-07 06:23:25 -04:00
|
|
|
error_key = 'chat_integration.provider.slack.errors.channel_not_found'
|
|
|
|
else
|
2017-08-21 10:28:37 -04:00
|
|
|
error_key = nil
|
2017-07-07 06:23:25 -04:00
|
|
|
end
|
2017-08-01 15:53:39 -04:00
|
|
|
raise ::DiscourseChat::ProviderError.new info: { error_key: error_key, request: uri, response_code: response.code, response_body: response.body }
|
2017-07-07 06:23:25 -04:00
|
|
|
end
|
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
ts = json["ts"]
|
|
|
|
if !ts.nil? && post.topic.slack_thread_id.nil?
|
|
|
|
post.topic.slack_thread_id = ts
|
|
|
|
post.topic.save_custom_fields
|
|
|
|
end
|
|
|
|
|
2017-06-30 11:39:19 -04:00
|
|
|
response
|
2017-06-30 10:28:20 -04:00
|
|
|
end
|
2017-06-30 08:09:36 -04:00
|
|
|
|
2017-06-30 10:28:20 -04:00
|
|
|
def self.send_via_webhook(message)
|
2017-08-01 15:53:39 -04:00
|
|
|
http = Net::HTTP.new("hooks.slack.com", 443)
|
2017-06-30 10:28:20 -04:00
|
|
|
http.use_ssl = true
|
2017-08-01 15:53:39 -04:00
|
|
|
req = Net::HTTP::Post.new(URI(SiteSetting.chat_integration_slack_outbound_webhook_url), 'Content-Type' => 'application/json')
|
2017-06-30 08:09:36 -04:00
|
|
|
req.body = message.to_json
|
|
|
|
response = http.request(req)
|
2017-07-04 14:37:56 -04:00
|
|
|
|
|
|
|
unless response.kind_of? Net::HTTPSuccess
|
|
|
|
if response.code.to_s == '403'
|
|
|
|
error_key = 'chat_integration.provider.slack.errors.action_prohibited'
|
2017-08-01 15:53:39 -04:00
|
|
|
elsif response.body == ('channel_not_found') || response.body == ('channel_is_archived')
|
2017-07-04 14:37:56 -04:00
|
|
|
error_key = 'chat_integration.provider.slack.errors.channel_not_found'
|
|
|
|
else
|
|
|
|
error_key = nil
|
|
|
|
end
|
2017-08-01 15:53:39 -04:00
|
|
|
raise ::DiscourseChat::ProviderError.new info: { error_key: error_key, request: req.body, response_code: response.code, response_body: response.body }
|
2017-07-04 14:37:56 -04:00
|
|
|
end
|
|
|
|
|
2017-06-30 10:28:20 -04:00
|
|
|
end
|
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
def self.trigger_notification(post, channel, rule)
|
2017-07-13 18:21:15 -04:00
|
|
|
channel_id = channel.data['identifier']
|
2020-06-15 11:45:25 -04:00
|
|
|
filter = rule.nil? ? "" : rule.filter
|
|
|
|
message = slack_message(post, channel_id, filter)
|
2017-06-30 10:28:20 -04:00
|
|
|
|
2017-08-01 15:53:39 -04:00
|
|
|
if SiteSetting.chat_integration_slack_access_token.empty?
|
|
|
|
self.send_via_webhook(message)
|
|
|
|
else
|
|
|
|
self.send_via_api(post, channel_id, message)
|
|
|
|
end
|
2017-06-30 08:09:36 -04:00
|
|
|
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
2017-07-05 10:03:02 -04:00
|
|
|
end
|
|
|
|
|
2017-10-10 00:54:10 -04:00
|
|
|
require_relative "slack_message_formatter"
|
|
|
|
require_relative "slack_transcript"
|
|
|
|
require_relative "slack_message"
|
|
|
|
require_relative "slack_command_controller"
|