mirror of
https://github.com/discourse/discourse.git
synced 2025-01-06 13:04:10 +08:00
c6764d8c74
This commit automatically ensures that category channels have slugs when they are created or updated based on the channel name, category name, or existing slug. The behaviour has been copied from the Category model. We also include a backfill here with a simplified version of Slug.for with deduplication to fill the slugs for already created Category chat channels. The channel slug is also now used for chat notifications, and for the UI and navigation for chat. `slugifyChannel` is still used, but now does the following fallback: * Uses channel.slug if it is present * Uses channel.escapedTitle if it is present * Uses channel.title if it is present In future we may want to remove this altogether and always rely on the slug being present, but this is currently not possible because we are not generating slugs for DM channels at this point.
85 lines
2.9 KiB
Ruby
85 lines
2.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class ChatNotifyWatching < ::Jobs::Base
|
|
def execute(args = {})
|
|
@chat_message =
|
|
ChatMessage.includes(:user, chat_channel: :chatable).find_by(id: args[:chat_message_id])
|
|
return if @chat_message.nil?
|
|
|
|
@creator = @chat_message.user
|
|
@chat_channel = @chat_message.chat_channel
|
|
@is_direct_message_channel = @chat_channel.direct_message_channel?
|
|
|
|
always_notification_level = UserChatChannelMembership::NOTIFICATION_LEVELS[:always]
|
|
|
|
members =
|
|
UserChatChannelMembership
|
|
.includes(user: :groups)
|
|
.joins(user: :user_option)
|
|
.where(user_option: { chat_enabled: true })
|
|
.where.not(user_id: args[:except_user_ids])
|
|
.where(chat_channel_id: @chat_channel.id)
|
|
.where(following: true)
|
|
.where(
|
|
"desktop_notification_level = ? OR mobile_notification_level = ?",
|
|
always_notification_level,
|
|
always_notification_level,
|
|
)
|
|
.merge(User.not_suspended)
|
|
|
|
if @is_direct_message_channel
|
|
UserCommScreener
|
|
.new(acting_user: @creator, target_user_ids: members.map(&:user_id))
|
|
.allowing_actor_communication
|
|
.each do |user_id|
|
|
send_notifications(members.find { |member| member.user_id == user_id })
|
|
end
|
|
else
|
|
members.each { |member| send_notifications(member) }
|
|
end
|
|
end
|
|
|
|
def send_notifications(membership)
|
|
user = membership.user
|
|
guardian = Guardian.new(user)
|
|
return unless guardian.can_chat?(user) && guardian.can_see_chat_channel?(@chat_channel)
|
|
return if Chat::ChatNotifier.user_has_seen_message?(membership, @chat_message.id)
|
|
return if online_user_ids.include?(user.id)
|
|
|
|
translation_key =
|
|
(
|
|
if @is_direct_message_channel
|
|
"discourse_push_notifications.popup.new_direct_chat_message"
|
|
else
|
|
"discourse_push_notifications.popup.new_chat_message"
|
|
end
|
|
)
|
|
|
|
translation_args = { username: @creator.username }
|
|
translation_args[:channel] = @chat_channel.title(user) unless @is_direct_message_channel
|
|
|
|
payload = {
|
|
username: @creator.username,
|
|
notification_type: Notification.types[:chat_message],
|
|
post_url: @chat_channel.relative_url,
|
|
translated_title: I18n.t(translation_key, translation_args),
|
|
tag: Chat::ChatNotifier.push_notification_tag(:message, @chat_channel.id),
|
|
excerpt: @chat_message.push_notification_excerpt,
|
|
}
|
|
|
|
if membership.desktop_notifications_always? && !membership.muted?
|
|
MessageBus.publish("/chat/notification-alert/#{user.id}", payload, user_ids: [user.id])
|
|
end
|
|
|
|
if membership.mobile_notifications_always? && !membership.muted?
|
|
PostAlerter.push_notification(user, payload)
|
|
end
|
|
end
|
|
|
|
def online_user_ids
|
|
@online_user_ids ||= PresenceChannel.new("/chat/online").user_ids
|
|
end
|
|
end
|
|
end
|