mirror of
https://github.com/discourse/discourse-chat-integration.git
synced 2025-07-01 03:42:10 +00:00
* FEATURE: Add chat integration reference post This class works similar to a post but it is not a post. * DEV: change how `excerpt` method works * feature: Add `send_chat_integration_message` scriptable add `send_chat_integration_message` scriptable that uses the rules to send a message to the chat provider add locale strings for the new scriptable update `ChatIntegrationReferencePost` `excerpt` method add tests for `ChatIntegrationReferencePost` * DEV: Add `get_channel_by_name` to every provider This makes using `trigger_notification` easier with every provider as well. * DEV: Add `get_channel_name` to all providers This method gets the name of the channel based on how the provider identifies it. Updates channel_name in locales yaml Adds migrate_tag_added_filter_to_all_providers.rb to move all existing rules to use Automation * DEV: Add removal of old migration data Update small action locales with strings from core * DEV: solve review comments * DEV: update test locale strings * DEV: remove empty line to trigger lint * DEV: lint applied * DEV: Add tests for automation integration * DEV: add rails logger for when automatio error occurs * DEV: move migration to be SQL only Update provider helper to use hashes instead of dot notation * DEV: update migration with correct table names * DEV: Update migrate_tag_added_filter_to_all_providers to use smaller SQL queries Commented out migrate_tag_added_from_filter_to_automation.rb * DEV: update comments in migration file * DEV: update indentation in client.en.yml * DEV: update with review comments * Update spec/lib/discourse_chat_integration/chat_integration_reference_post_spec.rb Co-authored-by: Jarek Radosz <jradosz@gmail.com> * Update spec/lib/discourse_chat_integration/chat_integration_reference_post_spec.rb Co-authored-by: Jarek Radosz <jradosz@gmail.com> * Update spec/lib/discourse_chat_integration/chat_integration_reference_post_spec.rb Co-authored-by: Jarek Radosz <jradosz@gmail.com> * Update spec/integration/automation_spec.rb Co-authored-by: Jarek Radosz <jradosz@gmail.com> * Update lib/discourse_chat_integration/chat_integration_reference_post.rb Co-authored-by: Jarek Radosz <jradosz@gmail.com> * DEV: update specs with review comments * DEV: update typos in tests * DEV: inlined functions for getting channel name for provider in migration --------- Co-authored-by: Jarek Radosz <jradosz@gmail.com>
142 lines
4.4 KiB
Ruby
142 lines
4.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseChatIntegration::Provider::PowerAutomateProvider
|
|
PROVIDER_NAME = "powerautomate"
|
|
PROVIDER_ENABLED_SETTING = :chat_integration_powerautomate_enabled
|
|
CHANNEL_IDENTIFIER_KEY = "name".freeze
|
|
CHANNEL_PARAMETERS = [
|
|
{ key: "name", regex: '^\S+$', unique: true },
|
|
{ key: "webhook_url", regex: '^https:\/\/\S+$', unique: true, hidden: true },
|
|
]
|
|
|
|
def self.trigger_notification(post, channel, rule)
|
|
message = get_message(post)
|
|
uri = URI(channel.data["webhook_url"])
|
|
|
|
http = FinalDestination::HTTP.new(uri.host, uri.port)
|
|
http.use_ssl = (uri.scheme == "https")
|
|
|
|
req = Net::HTTP::Post.new(uri, "Content-Type" => "application/json")
|
|
req.body = message.to_json
|
|
response = http.request(req)
|
|
|
|
unless response.kind_of? Net::HTTPSuccess
|
|
if response.body.include?("Invalid webhook URL")
|
|
error_key = "chat_integration.provider.powerautomate.errors.invalid_webhook"
|
|
else
|
|
error_key = nil
|
|
end
|
|
raise ::DiscourseChatIntegration::ProviderError.new info: {
|
|
error_key: error_key,
|
|
request: req.body,
|
|
response_code: response.code,
|
|
response_body: response.body,
|
|
}
|
|
end
|
|
end
|
|
|
|
def self.get_message(post)
|
|
display_name = "@#{post.user.username}"
|
|
full_name =
|
|
if SiteSetting.enable_names && post.user.name.present?
|
|
post.user.name
|
|
else
|
|
""
|
|
end
|
|
|
|
topic = post.topic
|
|
|
|
category = ""
|
|
if topic.category&.uncategorized?
|
|
category = "[#{I18n.t("uncategorized_category_name")}]"
|
|
elsif topic.category
|
|
category =
|
|
(
|
|
if (topic.category.parent_category)
|
|
"[#{topic.category.parent_category.name}/#{topic.category.name}]"
|
|
else
|
|
"[#{topic.category.name}]"
|
|
end
|
|
)
|
|
end
|
|
|
|
message = {
|
|
type: "message",
|
|
attachments: [
|
|
{
|
|
contentType: "application/vnd.microsoft.card.adaptive",
|
|
contentUrl: nil,
|
|
content: {
|
|
type: "AdaptiveCard",
|
|
body: [
|
|
{
|
|
type: "TextBlock",
|
|
size: "Large",
|
|
weight: "Bolder",
|
|
text:
|
|
"[#{topic.title} #{category} #{topic.tags.present? ? topic.tags.map(&:name).join(", ") : ""}](#{post.full_url})",
|
|
wrap: true,
|
|
spacing: "None",
|
|
},
|
|
{
|
|
type: "ColumnSet",
|
|
columns: [
|
|
{
|
|
type: "Column",
|
|
items: [
|
|
{
|
|
type: "Image",
|
|
style: "Person",
|
|
url: post.user.small_avatar_url,
|
|
altText: full_name,
|
|
size: " Small",
|
|
},
|
|
],
|
|
width: "auto",
|
|
},
|
|
{
|
|
type: "Column",
|
|
items: [
|
|
{ type: "TextBlock", weight: "Bolder", text: full_name, wrap: true },
|
|
{
|
|
type: "TextBlock",
|
|
spacing: "None",
|
|
text: display_name,
|
|
isSubtle: true,
|
|
wrap: true,
|
|
},
|
|
],
|
|
width: "stretch",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "TextBlock",
|
|
text:
|
|
post.excerpt(
|
|
SiteSetting.chat_integration_powerautomate_excerpt_length,
|
|
text_entities: true,
|
|
strip_links: true,
|
|
remap_emoji: true,
|
|
),
|
|
wrap: true,
|
|
},
|
|
],
|
|
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
|
|
version: "1.2",
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|
|
message
|
|
end
|
|
|
|
def self.get_channel_by_name(name)
|
|
DiscourseChatIntegration::Channel
|
|
.with_provider(PROVIDER_NAME)
|
|
.with_data_value(CHANNEL_IDENTIFIER_KEY, name)
|
|
.first
|
|
end
|
|
end
|