2022-11-02 21:41:30 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# name: chat
|
2023-11-08 07:14:10 +08:00
|
|
|
# about: Adds chat functionality.
|
|
|
|
# meta_topic_id: 230881
|
2022-11-02 21:41:30 +08:00
|
|
|
# version: 0.4
|
|
|
|
# authors: Kane York, Mark VanLandingham, Martin Brennan, Joffrey Jaffeux
|
|
|
|
# url: https://github.com/discourse/discourse/tree/main/plugins/chat
|
|
|
|
# transpile_js: true
|
2023-10-10 08:16:13 +08:00
|
|
|
# meta_topic_id: 230881
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
enabled_site_setting :chat_enabled
|
|
|
|
|
|
|
|
register_asset "stylesheets/colors.scss", :color_definitions
|
2023-03-17 21:24:38 +08:00
|
|
|
register_asset "stylesheets/mixins/index.scss"
|
|
|
|
register_asset "stylesheets/common/index.scss"
|
|
|
|
register_asset "stylesheets/desktop/index.scss", :desktop
|
|
|
|
register_asset "stylesheets/mobile/index.scss", :mobile
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
register_svg_icon "comments"
|
|
|
|
register_svg_icon "comment-slash"
|
|
|
|
register_svg_icon "lock"
|
2023-10-04 22:14:37 +08:00
|
|
|
register_svg_icon "clipboard"
|
2022-11-02 21:41:30 +08:00
|
|
|
register_svg_icon "file-audio"
|
|
|
|
register_svg_icon "file-video"
|
|
|
|
register_svg_icon "file-image"
|
2024-02-20 16:49:19 +08:00
|
|
|
register_svg_icon "stop-circle"
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
# route: /admin/plugins/chat
|
|
|
|
add_admin_route "chat.admin.title", "chat"
|
|
|
|
|
|
|
|
GlobalSetting.add_default(:allow_unsecure_chat_uploads, false)
|
|
|
|
|
2023-03-17 21:24:38 +08:00
|
|
|
module ::Chat
|
|
|
|
PLUGIN_NAME = "chat"
|
2024-02-02 00:28:10 +08:00
|
|
|
RETENTION_SETTINGS_TO_USER_OPTION_FIELDS = {
|
|
|
|
chat_channel_retention_days: :dismissed_channel_retention_reminder,
|
|
|
|
chat_dm_retention_days: :dismissed_dm_retention_reminder,
|
|
|
|
}
|
2023-03-17 21:24:38 +08:00
|
|
|
end
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-03-17 21:24:38 +08:00
|
|
|
require_relative "lib/chat/engine"
|
2023-07-03 09:30:09 +08:00
|
|
|
require_relative "lib/chat/types/array"
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-03-17 21:24:38 +08:00
|
|
|
after_initialize do
|
2022-11-02 21:41:30 +08:00
|
|
|
register_seedfu_fixtures(Rails.root.join("plugins", "chat", "db", "fixtures"))
|
|
|
|
|
|
|
|
UserNotifications.append_view_path(File.expand_path("../app/views", __FILE__))
|
|
|
|
|
|
|
|
register_category_custom_field_type(Chat::HAS_CHAT_ENABLED, :boolean)
|
|
|
|
|
|
|
|
UserUpdater::OPTION_ATTR.push(:chat_enabled)
|
|
|
|
UserUpdater::OPTION_ATTR.push(:only_chat_push_notifications)
|
|
|
|
UserUpdater::OPTION_ATTR.push(:chat_sound)
|
|
|
|
UserUpdater::OPTION_ATTR.push(:ignore_channel_wide_mention)
|
|
|
|
UserUpdater::OPTION_ATTR.push(:chat_email_frequency)
|
2023-03-01 09:01:44 +08:00
|
|
|
UserUpdater::OPTION_ATTR.push(:chat_header_indicator_preference)
|
2023-08-19 02:33:07 +08:00
|
|
|
UserUpdater::OPTION_ATTR.push(:chat_separate_sidebar_mode)
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-03-17 21:24:38 +08:00
|
|
|
register_reviewable_type Chat::ReviewableMessage
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
reloadable_patch do |plugin|
|
|
|
|
ReviewableScore.add_new_types([:needs_review])
|
|
|
|
|
|
|
|
Site.preloaded_category_custom_fields << Chat::HAS_CHAT_ENABLED
|
|
|
|
|
|
|
|
Guardian.prepend Chat::GuardianExtensions
|
|
|
|
UserNotifications.prepend Chat::UserNotificationsExtension
|
|
|
|
UserOption.prepend Chat::UserOptionExtension
|
|
|
|
Category.prepend Chat::CategoryExtension
|
2023-03-17 21:24:38 +08:00
|
|
|
Reviewable.prepend Chat::ReviewableExtension
|
|
|
|
Bookmark.prepend Chat::BookmarkExtension
|
2022-11-02 21:41:30 +08:00
|
|
|
User.prepend Chat::UserExtension
|
DEV: Redesign chat mentions (#24752)
At the moment, when someone is mentioning a group, or using here or
all mention, we create a chat_mention record per user. What we want
instead is to have special kinds of mentions, so we can create only one
chat_mention record in such cases. This PR implements that.
Note, that such mentions will still have N related notifications, one
notification per a user. We don't expect we'll have performance
problems on the notifications side, but if at some point we do, we
should be able to solve them on the side of notifications
(notifications are handled in jobs, also some little delays with
the notifications are acceptable, so we can make sure notifications
are properly queued, and that processing of every notification is
fast enough to make delays small enough).
The preparation work for this PR was done in fbd24fa, where we make
it possible for one mention to have several related notifications.
A pretty tricky part of this PR is schema and data migration, I've explained
related details inline on the migration files.
2024-01-17 19:24:01 +08:00
|
|
|
Group.prepend Chat::GroupExtension
|
2022-11-02 21:41:30 +08:00
|
|
|
Jobs::UserEmail.prepend Chat::UserEmailExtension
|
2023-03-17 21:24:38 +08:00
|
|
|
Plugin::Instance.prepend Chat::PluginInstanceExtension
|
2024-02-02 00:28:10 +08:00
|
|
|
Jobs::ExportCsvFile.prepend Chat::MessagesExporter
|
2023-09-14 04:31:42 +08:00
|
|
|
WebHook.prepend Chat::OutgoingWebHookExtension
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
if Oneboxer.respond_to?(:register_local_handler)
|
|
|
|
Oneboxer.register_local_handler("chat/chat") do |url, route|
|
2023-09-04 22:55:02 +08:00
|
|
|
Chat::OneboxHandler.handle(url, route)
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if InlineOneboxer.respond_to?(:register_local_handler)
|
|
|
|
InlineOneboxer.register_local_handler("chat/chat") do |url, route|
|
2023-02-01 23:39:23 +08:00
|
|
|
if route[:message_id].present?
|
2023-03-17 21:24:38 +08:00
|
|
|
message = Chat::Message.find_by(id: route[:message_id])
|
2022-11-02 21:41:30 +08:00
|
|
|
next if !message
|
|
|
|
|
|
|
|
chat_channel = message.chat_channel
|
|
|
|
user = message.user
|
|
|
|
next if !chat_channel || !user
|
|
|
|
|
|
|
|
title =
|
|
|
|
I18n.t(
|
|
|
|
"chat.onebox.inline_to_message",
|
|
|
|
message_id: message.id,
|
|
|
|
chat_channel: chat_channel.name,
|
|
|
|
username: user.username,
|
|
|
|
)
|
|
|
|
else
|
2023-03-17 21:24:38 +08:00
|
|
|
chat_channel = Chat::Channel.find_by(id: route[:channel_id])
|
2022-11-02 21:41:30 +08:00
|
|
|
next if !chat_channel
|
|
|
|
|
|
|
|
title =
|
|
|
|
if chat_channel.name.present?
|
|
|
|
I18n.t("chat.onebox.inline_to_channel", chat_channel: chat_channel.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-12-06 14:37:32 +08:00
|
|
|
next if !Guardian.new.can_preview_chat_channel?(chat_channel)
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
{ url: url, title: title }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if respond_to?(:register_upload_in_use)
|
|
|
|
register_upload_in_use do |upload|
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::Message.where(
|
2022-11-02 21:41:30 +08:00
|
|
|
"message LIKE ? OR message LIKE ?",
|
|
|
|
"%#{upload.sha1}%",
|
|
|
|
"%#{upload.base62_sha1}%",
|
|
|
|
).exists? ||
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::Draft.where(
|
2022-11-02 21:41:30 +08:00
|
|
|
"data LIKE ? OR data LIKE ?",
|
|
|
|
"%#{upload.sha1}%",
|
|
|
|
"%#{upload.base62_sha1}%",
|
|
|
|
).exists?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-03-13 11:15:12 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:admin_plugin,
|
|
|
|
:incoming_chat_webhooks,
|
|
|
|
include_condition: -> { self.name == "chat" },
|
|
|
|
) { Chat::IncomingWebhook.includes(:chat_channel).all }
|
|
|
|
|
|
|
|
add_to_serializer(:admin_plugin, :chat_channels, include_condition: -> { self.name == "chat" }) do
|
|
|
|
Chat::Channel.public_channels
|
|
|
|
end
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
add_to_serializer(:user_card, :can_chat_user) do
|
|
|
|
return false if !SiteSetting.chat_enabled
|
|
|
|
return false if scope.user.blank?
|
|
|
|
|
2022-12-13 07:14:17 +08:00
|
|
|
scope.user.id != object.id && scope.can_chat? && Guardian.new(object).can_chat?
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
2023-04-24 19:17:51 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:can_chat,
|
|
|
|
include_condition: -> do
|
|
|
|
return @can_chat if defined?(@can_chat)
|
|
|
|
@can_chat = SiteSetting.chat_enabled && scope.can_chat?
|
|
|
|
end,
|
|
|
|
) { true }
|
|
|
|
|
2024-02-19 10:25:59 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:can_direct_message,
|
|
|
|
include_condition: -> do
|
|
|
|
return @can_direct_message if defined?(@can_direct_message)
|
|
|
|
@can_direct_message = SiteSetting.chat_enabled && scope.can_direct_message?
|
|
|
|
end,
|
|
|
|
) { true }
|
|
|
|
|
2023-04-24 19:17:51 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:has_chat_enabled,
|
|
|
|
include_condition: -> do
|
|
|
|
return @has_chat_enabled if defined?(@has_chat_enabled)
|
|
|
|
@has_chat_enabled = include_can_chat? && object.user_option.chat_enabled
|
|
|
|
end,
|
|
|
|
) { true }
|
|
|
|
|
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:chat_sound,
|
|
|
|
include_condition: -> { include_has_chat_enabled? && object.user_option.chat_sound },
|
|
|
|
) { object.user_option.chat_sound }
|
|
|
|
|
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:needs_channel_retention_reminder,
|
|
|
|
include_condition: -> do
|
|
|
|
include_has_chat_enabled? && object.staff? &&
|
|
|
|
!object.user_option.dismissed_channel_retention_reminder &&
|
|
|
|
!SiteSetting.chat_channel_retention_days.zero?
|
|
|
|
end,
|
|
|
|
) { true }
|
|
|
|
|
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:needs_dm_retention_reminder,
|
|
|
|
include_condition: -> do
|
|
|
|
include_has_chat_enabled? && !object.user_option.dismissed_dm_retention_reminder &&
|
|
|
|
!SiteSetting.chat_dm_retention_days.zero?
|
|
|
|
end,
|
|
|
|
) { true }
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
add_to_serializer(:current_user, :has_joinable_public_channels) do
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::ChannelFetcher.secured_public_channel_search(
|
2022-11-02 21:41:30 +08:00
|
|
|
self.scope,
|
|
|
|
following: false,
|
|
|
|
limit: 1,
|
|
|
|
status: :open,
|
2022-12-19 15:34:07 +08:00
|
|
|
).exists?
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
add_to_serializer(:current_user, :chat_channels) do
|
2023-03-17 21:24:38 +08:00
|
|
|
structured = Chat::ChannelFetcher.structured(self.scope)
|
2023-07-17 11:00:49 +08:00
|
|
|
|
2023-07-26 18:46:23 +08:00
|
|
|
structured[:unread_thread_overview] = ::Chat::TrackingStateReportQuery.call(
|
|
|
|
guardian: self.scope,
|
|
|
|
channel_ids: structured[:public_channels].map(&:id),
|
|
|
|
include_threads: true,
|
|
|
|
include_read: false,
|
|
|
|
include_last_reply_details: true,
|
|
|
|
).thread_unread_overview_by_channel
|
2023-07-17 11:00:49 +08:00
|
|
|
|
2023-07-27 15:57:03 +08:00
|
|
|
category_ids = structured[:public_channels].map { |c| c.chatable_id }
|
|
|
|
post_allowed_category_ids =
|
|
|
|
Category.post_create_allowed(self.scope).where(id: category_ids).pluck(:id)
|
|
|
|
|
|
|
|
Chat::ChannelIndexSerializer.new(
|
|
|
|
structured,
|
|
|
|
scope: self.scope,
|
|
|
|
root: false,
|
|
|
|
post_allowed_category_ids: post_allowed_category_ids,
|
|
|
|
).as_json
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
2023-04-24 19:17:51 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:current_user,
|
|
|
|
:chat_drafts,
|
|
|
|
include_condition: -> { include_has_chat_enabled? },
|
|
|
|
) do
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::Draft
|
2022-11-02 21:41:30 +08:00
|
|
|
.where(user_id: object.id)
|
2023-01-25 19:50:10 +08:00
|
|
|
.order(updated_at: :desc)
|
|
|
|
.limit(20)
|
2023-11-22 18:54:23 +08:00
|
|
|
.pluck(:chat_channel_id, :data, :thread_id)
|
|
|
|
.map { |row| { channel_id: row[0], data: row[1], thread_id: row[2] } }
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
2024-03-16 00:08:37 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:user_notification_total,
|
|
|
|
:chat_notifications,
|
|
|
|
include_condition: -> do
|
|
|
|
return @has_chat_enabled if defined?(@has_chat_enabled)
|
|
|
|
@has_chat_enabled =
|
|
|
|
SiteSetting.chat_enabled && scope.can_chat? && object.user_option.chat_enabled
|
|
|
|
end,
|
|
|
|
) { Chat::ChannelFetcher.unreads_total(self.scope) }
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
add_to_serializer(:user_option, :chat_enabled) { object.chat_enabled }
|
|
|
|
|
2023-04-24 19:17:51 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:user_option,
|
|
|
|
:chat_sound,
|
|
|
|
include_condition: -> { !object.chat_sound.blank? },
|
|
|
|
) { object.chat_sound }
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
add_to_serializer(:user_option, :only_chat_push_notifications) do
|
|
|
|
object.only_chat_push_notifications
|
|
|
|
end
|
|
|
|
|
|
|
|
add_to_serializer(:user_option, :ignore_channel_wide_mention) do
|
|
|
|
object.ignore_channel_wide_mention
|
|
|
|
end
|
|
|
|
|
|
|
|
add_to_serializer(:user_option, :chat_email_frequency) { object.chat_email_frequency }
|
|
|
|
|
2023-03-01 09:01:44 +08:00
|
|
|
add_to_serializer(:user_option, :chat_header_indicator_preference) do
|
|
|
|
object.chat_header_indicator_preference
|
|
|
|
end
|
|
|
|
|
|
|
|
add_to_serializer(:current_user_option, :chat_header_indicator_preference) do
|
|
|
|
object.chat_header_indicator_preference
|
|
|
|
end
|
|
|
|
|
2023-08-19 02:33:07 +08:00
|
|
|
add_to_serializer(:user_option, :chat_separate_sidebar_mode) { object.chat_separate_sidebar_mode }
|
|
|
|
|
|
|
|
add_to_serializer(:current_user_option, :chat_separate_sidebar_mode) do
|
|
|
|
object.chat_separate_sidebar_mode
|
|
|
|
end
|
|
|
|
|
2023-12-06 14:59:18 +08:00
|
|
|
add_to_serializer(
|
|
|
|
:upload,
|
|
|
|
:thumbnail,
|
|
|
|
include_condition: -> { SiteSetting.chat_enabled && SiteSetting.create_thumbnails },
|
|
|
|
) { object.thumbnail }
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
on(:site_setting_changed) do |name, old_value, new_value|
|
2024-02-02 00:28:10 +08:00
|
|
|
user_option_field = Chat::RETENTION_SETTINGS_TO_USER_OPTION_FIELDS[name.to_sym]
|
2022-11-02 21:41:30 +08:00
|
|
|
begin
|
|
|
|
if user_option_field && old_value != new_value && !new_value.zero?
|
|
|
|
UserOption.where(user_option_field => true).update_all(user_option_field => false)
|
|
|
|
end
|
|
|
|
rescue => e
|
|
|
|
Rails.logger.warn(
|
|
|
|
"Error updating user_options fields after chat retention settings changed: #{e}",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
if name == :secure_uploads && old_value == false && new_value == true
|
|
|
|
Chat::SecureUploadsCompatibility.update_settings
|
|
|
|
end
|
2023-03-22 08:19:59 +08:00
|
|
|
|
|
|
|
if name == :chat_allowed_groups
|
|
|
|
Jobs.enqueue(
|
|
|
|
Jobs::Chat::AutoRemoveMembershipHandleChatAllowedGroupsChange,
|
|
|
|
new_allowed_groups: new_value,
|
|
|
|
)
|
|
|
|
end
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
on(:post_alerter_after_save_post) do |post, new_record, notified|
|
|
|
|
next if !new_record
|
|
|
|
Chat::PostNotificationHandler.new(post, notified).handle
|
|
|
|
end
|
|
|
|
|
2023-03-22 08:19:59 +08:00
|
|
|
on(:group_destroyed) do |group, user_ids|
|
|
|
|
Jobs.enqueue(
|
|
|
|
Jobs::Chat::AutoRemoveMembershipHandleDestroyedGroup,
|
|
|
|
destroyed_group_user_ids: user_ids,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
register_presence_channel_prefix("chat") do |channel_name|
|
|
|
|
next nil unless channel_name == "/chat/online"
|
|
|
|
config = PresenceChannel::Config.new
|
|
|
|
config.allowed_group_ids = Chat.allowed_group_ids
|
|
|
|
config
|
|
|
|
end
|
|
|
|
|
|
|
|
register_presence_channel_prefix("chat-reply") do |channel_name|
|
|
|
|
if chat_channel_id = channel_name[%r{/chat-reply/(\d+)}, 1]
|
2023-03-17 21:24:38 +08:00
|
|
|
chat_channel = Chat::Channel.find(chat_channel_id)
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
PresenceChannel::Config.new.tap do |config|
|
|
|
|
config.allowed_group_ids = chat_channel.allowed_group_ids
|
|
|
|
config.allowed_user_ids = chat_channel.allowed_user_ids
|
|
|
|
config.public = !chat_channel.read_restricted?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
register_presence_channel_prefix("chat-user") do |channel_name|
|
|
|
|
if user_id = channel_name[%r{/chat-user/(chat|core)/(\d+)}, 2]
|
|
|
|
user = User.find(user_id)
|
|
|
|
config = PresenceChannel::Config.new
|
|
|
|
config.allowed_user_ids = [user.id]
|
|
|
|
config
|
|
|
|
end
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
register_push_notification_filter do |user, payload|
|
|
|
|
if user.user_option.only_chat_push_notifications && user.user_option.chat_enabled
|
2024-02-02 00:28:10 +08:00
|
|
|
payload[:notification_type].in?(::Notification.types.values_at(:chat_mention, :chat_message))
|
2022-11-02 21:41:30 +08:00
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
on(:user_seen) do |user|
|
|
|
|
if user.last_seen_at == user.first_seen_at
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::Channel
|
2022-11-02 21:41:30 +08:00
|
|
|
.where(auto_join_users: true)
|
|
|
|
.each do |channel|
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::ChannelMembershipManager.new(channel).enforce_automatic_user_membership(user)
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
on(:user_confirmed_email) do |user|
|
|
|
|
if user.active?
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::Channel
|
2022-11-02 21:41:30 +08:00
|
|
|
.where(auto_join_users: true)
|
|
|
|
.each do |channel|
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::ChannelMembershipManager.new(channel).enforce_automatic_user_membership(user)
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
on(:user_added_to_group) do |user, group|
|
|
|
|
channels_to_add =
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::Channel
|
2022-11-02 21:41:30 +08:00
|
|
|
.distinct
|
|
|
|
.where(auto_join_users: true, chatable_type: "Category")
|
|
|
|
.joins(
|
|
|
|
"INNER JOIN category_groups ON category_groups.category_id = chat_channels.chatable_id",
|
|
|
|
)
|
|
|
|
.where(category_groups: { group_id: group.id })
|
|
|
|
|
|
|
|
channels_to_add.each do |channel|
|
2023-03-17 21:24:38 +08:00
|
|
|
Chat::ChannelMembershipManager.new(channel).enforce_automatic_user_membership(user)
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-03-22 08:19:59 +08:00
|
|
|
on(:user_removed_from_group) do |user, group|
|
|
|
|
Jobs.enqueue(Jobs::Chat::AutoRemoveMembershipHandleUserRemovedFromGroup, user_id: user.id)
|
|
|
|
end
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
on(:category_updated) do |category|
|
|
|
|
# There's a bug on core where this event is triggered with an `#update` result (true/false)
|
2023-03-22 08:19:59 +08:00
|
|
|
if category.is_a?(Category) && category_channel = Chat::Channel.find_by(chatable: category)
|
|
|
|
if category_channel.auto_join_users
|
|
|
|
Chat::ChannelMembershipManager.new(category_channel).enforce_automatic_channel_memberships
|
|
|
|
end
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-03-22 08:19:59 +08:00
|
|
|
Jobs.enqueue(Jobs::Chat::AutoRemoveMembershipHandleCategoryUpdated, category_id: category.id)
|
2023-01-27 20:58:12 +08:00
|
|
|
end
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
2023-09-14 04:31:42 +08:00
|
|
|
# outgoing webhook events
|
|
|
|
%i[
|
|
|
|
chat_message_created
|
|
|
|
chat_message_edited
|
|
|
|
chat_message_trashed
|
|
|
|
chat_message_restored
|
|
|
|
].each do |chat_message_event|
|
|
|
|
on(chat_message_event) do |message, channel, user|
|
|
|
|
guardian = Guardian.new(user)
|
|
|
|
|
|
|
|
payload = {
|
|
|
|
message: Chat::MessageSerializer.new(message, { scope: guardian, root: false }).as_json,
|
|
|
|
channel:
|
|
|
|
Chat::ChannelSerializer.new(
|
|
|
|
channel,
|
|
|
|
{ scope: guardian, membership: channel.membership_for(user), root: false },
|
|
|
|
).as_json,
|
|
|
|
}
|
|
|
|
|
|
|
|
category_id = channel.chatable_type == "Category" ? channel.chatable_id : nil
|
|
|
|
|
|
|
|
WebHook.enqueue_chat_message_hooks(
|
|
|
|
chat_message_event,
|
|
|
|
payload.to_json,
|
|
|
|
category_id: category_id,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
Discourse::Application.routes.append do
|
|
|
|
mount ::Chat::Engine, at: "/chat"
|
2023-03-17 21:24:38 +08:00
|
|
|
|
|
|
|
get "/admin/plugins/chat" => "chat/admin/incoming_webhooks#index",
|
2022-11-02 21:41:30 +08:00
|
|
|
:constraints => StaffConstraint.new
|
2023-03-17 21:24:38 +08:00
|
|
|
post "/admin/plugins/chat/hooks" => "chat/admin/incoming_webhooks#create",
|
2022-11-02 21:41:30 +08:00
|
|
|
:constraints => StaffConstraint.new
|
|
|
|
put "/admin/plugins/chat/hooks/:incoming_chat_webhook_id" =>
|
2023-03-17 21:24:38 +08:00
|
|
|
"chat/admin/incoming_webhooks#update",
|
2022-11-02 21:41:30 +08:00
|
|
|
:constraints => StaffConstraint.new
|
|
|
|
delete "/admin/plugins/chat/hooks/:incoming_chat_webhook_id" =>
|
2023-03-17 21:24:38 +08:00
|
|
|
"chat/admin/incoming_webhooks#destroy",
|
2022-11-02 21:41:30 +08:00
|
|
|
:constraints => StaffConstraint.new
|
|
|
|
get "u/:username/preferences/chat" => "users#preferences",
|
|
|
|
:constraints => {
|
|
|
|
username: RouteFormat.username,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
if defined?(DiscourseAutomation)
|
|
|
|
add_automation_scriptable("send_chat_message") do
|
|
|
|
field :chat_channel_id, component: :text, required: true
|
|
|
|
field :message, component: :message, required: true, accepts_placeholders: true
|
|
|
|
field :sender, component: :user
|
|
|
|
|
|
|
|
placeholder :channel_name
|
|
|
|
|
2022-11-11 22:58:05 +08:00
|
|
|
triggerables [:recurring]
|
|
|
|
|
2022-11-02 21:41:30 +08:00
|
|
|
script do |context, fields, automation|
|
|
|
|
sender = User.find_by(username: fields.dig("sender", "value")) || Discourse.system_user
|
2023-03-17 21:24:38 +08:00
|
|
|
channel = Chat::Channel.find_by(id: fields.dig("chat_channel_id", "value"))
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2022-11-11 22:58:05 +08:00
|
|
|
placeholders = { channel_name: channel.title(sender) }.merge(context["placeholders"] || {})
|
2022-11-02 21:41:30 +08:00
|
|
|
|
|
|
|
creator =
|
2023-09-08 22:37:05 +08:00
|
|
|
::Chat::CreateMessage.call(
|
|
|
|
chat_channel_id: channel.id,
|
2023-09-07 14:57:29 +08:00
|
|
|
guardian: sender.guardian,
|
2023-09-08 22:37:05 +08:00
|
|
|
message: utils.apply_placeholders(fields.dig("message", "value"), placeholders),
|
2022-11-02 21:41:30 +08:00
|
|
|
)
|
|
|
|
|
2023-09-07 14:57:29 +08:00
|
|
|
if creator.failure?
|
|
|
|
Rails.logger.warn "[discourse-automation] Chat message failed to send:\n#{creator.inspect_steps.inspect}\n#{creator.inspect_steps.error}"
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
add_api_key_scope(
|
|
|
|
:chat,
|
2023-09-07 14:57:29 +08:00
|
|
|
{
|
|
|
|
create_message: {
|
|
|
|
actions: %w[chat/api/channel_messages#create],
|
|
|
|
params: %i[chat_channel_id],
|
|
|
|
},
|
|
|
|
},
|
2022-11-02 21:41:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Dark mode email styles
|
|
|
|
Email::Styles.register_plugin_style do |fragment|
|
|
|
|
fragment.css(".chat-summary-header").each { |element| element[:dm] = "header" }
|
|
|
|
fragment.css(".chat-summary-content").each { |element| element[:dm] = "body" }
|
|
|
|
end
|
|
|
|
|
2023-03-17 21:24:38 +08:00
|
|
|
register_email_unsubscriber("chat_summary", EmailControllerHelper::ChatSummaryUnsubscriber)
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2023-11-10 04:44:05 +08:00
|
|
|
register_stat("chat_messages", show_in_ui: true, expose_via_api: true) do
|
|
|
|
Chat::Statistics.about_messages
|
|
|
|
end
|
2024-01-04 20:10:03 +08:00
|
|
|
register_stat("chat_users", expose_via_api: true) { Chat::Statistics.about_users }
|
2023-11-10 04:44:05 +08:00
|
|
|
register_stat("chat_channels", expose_via_api: true) { Chat::Statistics.about_channels }
|
2022-11-02 21:41:30 +08:00
|
|
|
|
2024-01-04 20:10:03 +08:00
|
|
|
register_stat("chat_channel_messages") { Chat::Statistics.channel_messages }
|
|
|
|
register_stat("chat_direct_messages") { Chat::Statistics.direct_messages }
|
|
|
|
register_stat("chat_open_channels_with_threads_enabled") do
|
|
|
|
Chat::Statistics.open_channels_with_threads_enabled
|
|
|
|
end
|
|
|
|
register_stat("chat_threaded_messages") { Chat::Statistics.threaded_messages }
|
FEATURE: Generic hashtag autocomplete lookup and markdown cooking (#18937)
This commit fleshes out and adds functionality for the new `#hashtag` search and
lookup system, still hidden behind the `enable_experimental_hashtag_autocomplete`
feature flag.
**Serverside**
We have two plugin API registration methods that are used to define data sources
(`register_hashtag_data_source`) and hashtag result type priorities depending on
the context (`register_hashtag_type_in_context`). Reading the comments in plugin.rb
should make it clear what these are doing. Reading the `HashtagAutocompleteService`
in full will likely help a lot as well.
Each data source is responsible for providing its own **lookup** and **search**
method that returns hashtag results based on the arguments provided. For example,
the category hashtag data source has to take into account parent categories and
how they relate, and each data source has to define their own icon to use for the
hashtag, and so on.
The `Site` serializer has two new attributes that source data from `HashtagAutocompleteService`.
There is `hashtag_icons` that is just a simple array of all the different icons that
can be used for allowlisting in our markdown pipeline, and there is `hashtag_context_configurations`
that is used to store the type priority orders for each registered context.
When sending emails, we cannot render the SVG icons for hashtags, so
we need to change the HTML hashtags to the normal `#hashtag` text.
**Markdown**
The `hashtag-autocomplete.js` file is where I have added the new `hashtag-autocomplete`
markdown rule, and like all of our rules this is used to cook the raw text on both the clientside
and on the serverside using MiniRacer. Only on the server side do we actually reach out to
the database with the `hashtagLookup` function, on the clientside we just render a plainer
version of the hashtag HTML. Only in the composer preview do we do further lookups based
on this.
This rule is the first one (that I can find) that uses the `currentUser` based on a passed
in `user_id` for guardian checks in markdown rendering code. This is the `last_editor_id`
for both the post and chat message. In some cases we need to cook without a user present,
so the `Discourse.system_user` is used in this case.
**Chat Channels**
This also contains the changes required for chat so that chat channels can be used
as a data source for hashtag searches and lookups. This data source will only be
used when `enable_experimental_hashtag_autocomplete` is `true`, so we don't have
to worry about channel results suddenly turning up.
------
**Known Rough Edges**
- Onebox excerpts will not render the icon svg/use tags, I plan to address that in a follow up PR
- Selecting a hashtag + pressing the Quote button will result in weird behaviour, I plan to address that in a follow up PR
- Mixed hashtag contexts for hashtags without a type suffix will not work correctly, e.g. #ux which is both a category and a channel slug will resolve to a category when used inside a post or within a [chat] transcript in that post. Users can get around this manually by adding the correct suffix, for example ::channel. We may get to this at some point in future
- Icons will not show for the hashtags in emails since SVG support is so terrible in email (this is not likely to be resolved, but still noting for posterity)
- Additional refinements and review fixes wil
2022-11-21 06:37:06 +08:00
|
|
|
|
|
|
|
# Make sure to update spec/system/hashtag_autocomplete_spec.rb when changing this.
|
2023-03-17 21:24:38 +08:00
|
|
|
register_hashtag_data_source(Chat::ChannelHashtagDataSource)
|
2022-12-19 11:46:17 +08:00
|
|
|
register_hashtag_type_priority_for_context("channel", "chat-composer", 200)
|
|
|
|
register_hashtag_type_priority_for_context("category", "chat-composer", 100)
|
|
|
|
register_hashtag_type_priority_for_context("tag", "chat-composer", 50)
|
|
|
|
register_hashtag_type_priority_for_context("channel", "topic-composer", 10)
|
FEATURE: Generic hashtag autocomplete lookup and markdown cooking (#18937)
This commit fleshes out and adds functionality for the new `#hashtag` search and
lookup system, still hidden behind the `enable_experimental_hashtag_autocomplete`
feature flag.
**Serverside**
We have two plugin API registration methods that are used to define data sources
(`register_hashtag_data_source`) and hashtag result type priorities depending on
the context (`register_hashtag_type_in_context`). Reading the comments in plugin.rb
should make it clear what these are doing. Reading the `HashtagAutocompleteService`
in full will likely help a lot as well.
Each data source is responsible for providing its own **lookup** and **search**
method that returns hashtag results based on the arguments provided. For example,
the category hashtag data source has to take into account parent categories and
how they relate, and each data source has to define their own icon to use for the
hashtag, and so on.
The `Site` serializer has two new attributes that source data from `HashtagAutocompleteService`.
There is `hashtag_icons` that is just a simple array of all the different icons that
can be used for allowlisting in our markdown pipeline, and there is `hashtag_context_configurations`
that is used to store the type priority orders for each registered context.
When sending emails, we cannot render the SVG icons for hashtags, so
we need to change the HTML hashtags to the normal `#hashtag` text.
**Markdown**
The `hashtag-autocomplete.js` file is where I have added the new `hashtag-autocomplete`
markdown rule, and like all of our rules this is used to cook the raw text on both the clientside
and on the serverside using MiniRacer. Only on the server side do we actually reach out to
the database with the `hashtagLookup` function, on the clientside we just render a plainer
version of the hashtag HTML. Only in the composer preview do we do further lookups based
on this.
This rule is the first one (that I can find) that uses the `currentUser` based on a passed
in `user_id` for guardian checks in markdown rendering code. This is the `last_editor_id`
for both the post and chat message. In some cases we need to cook without a user present,
so the `Discourse.system_user` is used in this case.
**Chat Channels**
This also contains the changes required for chat so that chat channels can be used
as a data source for hashtag searches and lookups. This data source will only be
used when `enable_experimental_hashtag_autocomplete` is `true`, so we don't have
to worry about channel results suddenly turning up.
------
**Known Rough Edges**
- Onebox excerpts will not render the icon svg/use tags, I plan to address that in a follow up PR
- Selecting a hashtag + pressing the Quote button will result in weird behaviour, I plan to address that in a follow up PR
- Mixed hashtag contexts for hashtags without a type suffix will not work correctly, e.g. #ux which is both a category and a channel slug will resolve to a category when used inside a post or within a [chat] transcript in that post. Users can get around this manually by adding the correct suffix, for example ::channel. We may get to this at some point in future
- Icons will not show for the hashtags in emails since SVG support is so terrible in email (this is not likely to be resolved, but still noting for posterity)
- Additional refinements and review fixes wil
2022-11-21 06:37:06 +08:00
|
|
|
|
2023-11-09 03:13:25 +08:00
|
|
|
register_post_stripper do |nokogiri_fragment|
|
|
|
|
nokogiri_fragment.css(".chat-transcript .mention").remove
|
|
|
|
end
|
|
|
|
|
FEATURE: Generic hashtag autocomplete lookup and markdown cooking (#18937)
This commit fleshes out and adds functionality for the new `#hashtag` search and
lookup system, still hidden behind the `enable_experimental_hashtag_autocomplete`
feature flag.
**Serverside**
We have two plugin API registration methods that are used to define data sources
(`register_hashtag_data_source`) and hashtag result type priorities depending on
the context (`register_hashtag_type_in_context`). Reading the comments in plugin.rb
should make it clear what these are doing. Reading the `HashtagAutocompleteService`
in full will likely help a lot as well.
Each data source is responsible for providing its own **lookup** and **search**
method that returns hashtag results based on the arguments provided. For example,
the category hashtag data source has to take into account parent categories and
how they relate, and each data source has to define their own icon to use for the
hashtag, and so on.
The `Site` serializer has two new attributes that source data from `HashtagAutocompleteService`.
There is `hashtag_icons` that is just a simple array of all the different icons that
can be used for allowlisting in our markdown pipeline, and there is `hashtag_context_configurations`
that is used to store the type priority orders for each registered context.
When sending emails, we cannot render the SVG icons for hashtags, so
we need to change the HTML hashtags to the normal `#hashtag` text.
**Markdown**
The `hashtag-autocomplete.js` file is where I have added the new `hashtag-autocomplete`
markdown rule, and like all of our rules this is used to cook the raw text on both the clientside
and on the serverside using MiniRacer. Only on the server side do we actually reach out to
the database with the `hashtagLookup` function, on the clientside we just render a plainer
version of the hashtag HTML. Only in the composer preview do we do further lookups based
on this.
This rule is the first one (that I can find) that uses the `currentUser` based on a passed
in `user_id` for guardian checks in markdown rendering code. This is the `last_editor_id`
for both the post and chat message. In some cases we need to cook without a user present,
so the `Discourse.system_user` is used in this case.
**Chat Channels**
This also contains the changes required for chat so that chat channels can be used
as a data source for hashtag searches and lookups. This data source will only be
used when `enable_experimental_hashtag_autocomplete` is `true`, so we don't have
to worry about channel results suddenly turning up.
------
**Known Rough Edges**
- Onebox excerpts will not render the icon svg/use tags, I plan to address that in a follow up PR
- Selecting a hashtag + pressing the Quote button will result in weird behaviour, I plan to address that in a follow up PR
- Mixed hashtag contexts for hashtags without a type suffix will not work correctly, e.g. #ux which is both a category and a channel slug will resolve to a category when used inside a post or within a [chat] transcript in that post. Users can get around this manually by adding the correct suffix, for example ::channel. We may get to this at some point in future
- Icons will not show for the hashtags in emails since SVG support is so terrible in email (this is not likely to be resolved, but still noting for posterity)
- Additional refinements and review fixes wil
2022-11-21 06:37:06 +08:00
|
|
|
Site.markdown_additional_options["chat"] = {
|
2023-03-17 21:24:38 +08:00
|
|
|
limited_pretty_text_features: Chat::Message::MARKDOWN_FEATURES,
|
|
|
|
limited_pretty_text_markdown_rules: Chat::Message::MARKDOWN_IT_RULES,
|
FEATURE: Generic hashtag autocomplete lookup and markdown cooking (#18937)
This commit fleshes out and adds functionality for the new `#hashtag` search and
lookup system, still hidden behind the `enable_experimental_hashtag_autocomplete`
feature flag.
**Serverside**
We have two plugin API registration methods that are used to define data sources
(`register_hashtag_data_source`) and hashtag result type priorities depending on
the context (`register_hashtag_type_in_context`). Reading the comments in plugin.rb
should make it clear what these are doing. Reading the `HashtagAutocompleteService`
in full will likely help a lot as well.
Each data source is responsible for providing its own **lookup** and **search**
method that returns hashtag results based on the arguments provided. For example,
the category hashtag data source has to take into account parent categories and
how they relate, and each data source has to define their own icon to use for the
hashtag, and so on.
The `Site` serializer has two new attributes that source data from `HashtagAutocompleteService`.
There is `hashtag_icons` that is just a simple array of all the different icons that
can be used for allowlisting in our markdown pipeline, and there is `hashtag_context_configurations`
that is used to store the type priority orders for each registered context.
When sending emails, we cannot render the SVG icons for hashtags, so
we need to change the HTML hashtags to the normal `#hashtag` text.
**Markdown**
The `hashtag-autocomplete.js` file is where I have added the new `hashtag-autocomplete`
markdown rule, and like all of our rules this is used to cook the raw text on both the clientside
and on the serverside using MiniRacer. Only on the server side do we actually reach out to
the database with the `hashtagLookup` function, on the clientside we just render a plainer
version of the hashtag HTML. Only in the composer preview do we do further lookups based
on this.
This rule is the first one (that I can find) that uses the `currentUser` based on a passed
in `user_id` for guardian checks in markdown rendering code. This is the `last_editor_id`
for both the post and chat message. In some cases we need to cook without a user present,
so the `Discourse.system_user` is used in this case.
**Chat Channels**
This also contains the changes required for chat so that chat channels can be used
as a data source for hashtag searches and lookups. This data source will only be
used when `enable_experimental_hashtag_autocomplete` is `true`, so we don't have
to worry about channel results suddenly turning up.
------
**Known Rough Edges**
- Onebox excerpts will not render the icon svg/use tags, I plan to address that in a follow up PR
- Selecting a hashtag + pressing the Quote button will result in weird behaviour, I plan to address that in a follow up PR
- Mixed hashtag contexts for hashtags without a type suffix will not work correctly, e.g. #ux which is both a category and a channel slug will resolve to a category when used inside a post or within a [chat] transcript in that post. Users can get around this manually by adding the correct suffix, for example ::channel. We may get to this at some point in future
- Icons will not show for the hashtags in emails since SVG support is so terrible in email (this is not likely to be resolved, but still noting for posterity)
- Additional refinements and review fixes wil
2022-11-21 06:37:06 +08:00
|
|
|
hashtag_configurations: HashtagAutocompleteService.contexts_with_ordered_types,
|
|
|
|
}
|
2022-11-29 00:32:57 +08:00
|
|
|
|
|
|
|
register_user_destroyer_on_content_deletion_callback(
|
2023-03-17 21:24:38 +08:00
|
|
|
Proc.new { |user| Jobs.enqueue(Jobs::Chat::DeleteUserMessages, user_id: user.id) },
|
2022-11-29 00:32:57 +08:00
|
|
|
)
|
2023-03-08 08:39:12 +08:00
|
|
|
|
2023-03-17 21:24:38 +08:00
|
|
|
register_bookmarkable(Chat::MessageBookmarkable)
|
2022-11-02 21:41:30 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
if Rails.env == "test"
|
|
|
|
Dir[Rails.root.join("plugins/chat/spec/support/**/*.rb")].each { |f| require f }
|
|
|
|
end
|