2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-03-18 10:12:07 +08:00
|
|
|
class PostAlerter
|
2020-02-06 20:14:19 +08:00
|
|
|
USER_BATCH_SIZE = 100
|
|
|
|
|
2017-06-12 15:41:39 +08:00
|
|
|
def self.post_created(post, opts = {})
|
2018-05-15 15:51:32 +08:00
|
|
|
PostAlerter.new(opts).after_save_post(post, true)
|
2014-03-18 12:22:39 +08:00
|
|
|
post
|
|
|
|
end
|
|
|
|
|
2020-05-04 15:40:09 +08:00
|
|
|
def self.post_edited(post, opts = {})
|
|
|
|
PostAlerter.new(opts).after_save_post(post, false)
|
|
|
|
post
|
|
|
|
end
|
|
|
|
|
2021-09-21 02:18:38 +08:00
|
|
|
def self.create_notification_alert(user:, post:, notification_type:, excerpt: nil, username: nil)
|
2021-10-12 01:55:18 +08:00
|
|
|
return if user.suspended?
|
|
|
|
|
2021-09-21 02:18:38 +08:00
|
|
|
if post_url = post.url
|
|
|
|
payload = {
|
|
|
|
notification_type: notification_type,
|
|
|
|
post_number: post.post_number,
|
|
|
|
topic_title: post.topic.title,
|
|
|
|
topic_id: post.topic.id,
|
|
|
|
excerpt: excerpt || post.excerpt(400, text_entities: true, strip_links: true, remap_emoji: true),
|
|
|
|
username: username || post.username,
|
|
|
|
post_url: post_url
|
|
|
|
}
|
|
|
|
|
|
|
|
DiscourseEvent.trigger(:pre_notification_alert, user, payload)
|
2021-11-22 11:38:49 +08:00
|
|
|
|
|
|
|
if user.allow_live_notifications?
|
|
|
|
MessageBus.publish("/notification-alert/#{user.id}", payload, user_ids: [user.id])
|
|
|
|
end
|
|
|
|
|
2021-09-21 02:18:38 +08:00
|
|
|
push_notification(user, payload)
|
|
|
|
DiscourseEvent.trigger(:post_notification_alert, user, payload)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.push_notification(user, payload)
|
|
|
|
return if user.do_not_disturb?
|
|
|
|
|
2021-11-04 01:21:33 +08:00
|
|
|
DiscoursePluginRegistry.push_notification_filters.each do |filter|
|
|
|
|
return unless filter.call(user, payload)
|
|
|
|
end
|
|
|
|
|
2021-09-21 02:18:38 +08:00
|
|
|
if user.push_subscriptions.exists?
|
|
|
|
Jobs.enqueue(:send_push_notification, user_id: user.id, payload: payload)
|
|
|
|
end
|
|
|
|
|
|
|
|
if SiteSetting.allow_user_api_key_scopes.split("|").include?("push") && SiteSetting.allowed_user_api_push_urls.present?
|
|
|
|
clients = user.user_api_keys
|
|
|
|
.joins(:scopes)
|
|
|
|
.where("user_api_key_scopes.name IN ('push', 'notifications')")
|
|
|
|
.where("push_url IS NOT NULL AND push_url <> ''")
|
|
|
|
.where("position(push_url IN ?) > 0", SiteSetting.allowed_user_api_push_urls)
|
|
|
|
.where("revoked_at IS NULL")
|
|
|
|
.order(client_id: :asc)
|
|
|
|
.pluck(:client_id, :push_url)
|
|
|
|
|
|
|
|
if clients.length > 0
|
|
|
|
Jobs.enqueue(:push_notification, clients: clients, payload: payload, user_id: user.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-12 15:41:39 +08:00
|
|
|
def initialize(default_opts = {})
|
|
|
|
@default_opts = default_opts
|
|
|
|
end
|
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
def not_allowed?(user, post)
|
|
|
|
user.blank? ||
|
2019-03-12 07:58:14 +08:00
|
|
|
user.bot? ||
|
2015-12-18 23:32:53 +08:00
|
|
|
user.id == post.user_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def all_allowed_users(post)
|
|
|
|
@all_allowed_users ||= post.topic.all_allowed_users.reject { |u| not_allowed?(u, post) }
|
|
|
|
end
|
|
|
|
|
2015-05-26 01:15:00 +08:00
|
|
|
def allowed_users(post)
|
2015-12-18 23:32:53 +08:00
|
|
|
@allowed_users ||= post.topic.allowed_users.reject { |u| not_allowed?(u, post) }
|
2015-05-26 01:15:00 +08:00
|
|
|
end
|
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
def allowed_group_users(post)
|
|
|
|
@allowed_group_users ||= post.topic.allowed_group_users.reject { |u| not_allowed?(u, post) }
|
|
|
|
end
|
2014-03-18 12:22:39 +08:00
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
def directly_targeted_users(post)
|
|
|
|
allowed_users(post) - allowed_group_users(post)
|
|
|
|
end
|
2015-12-15 06:17:09 +08:00
|
|
|
|
2016-01-27 18:38:14 +08:00
|
|
|
def indirectly_targeted_users(post)
|
2015-12-18 23:32:53 +08:00
|
|
|
allowed_group_users(post)
|
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2018-04-12 22:19:44 +08:00
|
|
|
def only_allowed_users(users, post)
|
2018-11-24 01:25:40 +08:00
|
|
|
return users unless post.topic.private_message?
|
|
|
|
users.select { |u| all_allowed_users(post).include?(u) }
|
2018-04-12 22:19:44 +08:00
|
|
|
end
|
|
|
|
|
2017-09-19 21:51:10 +08:00
|
|
|
def notify_about_reply?(post)
|
2018-12-04 14:54:27 +08:00
|
|
|
# small actions can be whispers in this case they will have an action code
|
|
|
|
# we never want to notify on this
|
|
|
|
post.post_type == Post.types[:regular] ||
|
|
|
|
(post.post_type == Post.types[:whisper] && post.action_code.nil?)
|
2017-09-19 21:51:10 +08:00
|
|
|
end
|
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
def after_save_post(post, new_record = false)
|
2018-04-16 17:48:06 +08:00
|
|
|
notified = [post.user, post.last_editor].uniq
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
# mentions (users/groups)
|
2021-11-24 04:25:54 +08:00
|
|
|
mentioned_groups, mentioned_users, mentioned_here = extract_mentions(post)
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2021-11-24 04:25:54 +08:00
|
|
|
if mentioned_groups || mentioned_users || mentioned_here
|
2016-03-09 04:26:06 +08:00
|
|
|
mentioned_opts = {}
|
2018-04-12 22:19:44 +08:00
|
|
|
editor = post.last_editor
|
|
|
|
|
2016-03-09 04:26:06 +08:00
|
|
|
if post.last_editor_id != post.user_id
|
|
|
|
# Mention comes from an edit by someone else, so notification should say who added the mention.
|
|
|
|
mentioned_opts = { user_id: editor.id, original_username: editor.username, display_username: editor.username }
|
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2016-03-09 04:26:06 +08:00
|
|
|
if mentioned_users
|
2018-11-24 01:25:40 +08:00
|
|
|
mentioned_users = only_allowed_users(mentioned_users, post)
|
2018-03-08 18:40:48 +08:00
|
|
|
notified += notify_users(mentioned_users - notified, :mentioned, post, mentioned_opts)
|
2016-03-09 04:26:06 +08:00
|
|
|
end
|
2021-03-17 05:20:41 +08:00
|
|
|
|
|
|
|
expand_group_mentions(mentioned_groups, post) do |group, users|
|
|
|
|
users = only_allowed_users(users, post)
|
|
|
|
notified += notify_users(users - notified, :group_mentioned, post, mentioned_opts.merge(group: group))
|
|
|
|
end
|
2021-11-24 04:25:54 +08:00
|
|
|
|
|
|
|
if mentioned_here
|
|
|
|
users = expand_here_mention(post, exclude_ids: notified.map(&:id))
|
|
|
|
users = only_allowed_users(users, post)
|
|
|
|
notified += notify_users(users - notified, :mentioned, post, mentioned_opts)
|
|
|
|
end
|
2015-11-30 14:03:47 +08:00
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
# replies
|
|
|
|
reply_to_user = post.reply_notification_target
|
|
|
|
|
2017-09-19 21:51:10 +08:00
|
|
|
if new_record && reply_to_user && !notified.include?(reply_to_user) && notify_about_reply?(post)
|
2018-03-08 18:40:48 +08:00
|
|
|
notified += notify_non_pm_users(reply_to_user, :replied, post)
|
2015-12-18 23:32:53 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# quotes
|
|
|
|
quoted_users = extract_quoted_users(post)
|
2018-03-08 18:40:48 +08:00
|
|
|
notified += notify_non_pm_users(quoted_users - notified, :quoted, post)
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
# linked
|
|
|
|
linked_users = extract_linked_users(post)
|
2018-03-08 18:40:48 +08:00
|
|
|
notified += notify_non_pm_users(linked_users - notified, :linked, post)
|
2015-12-18 23:32:53 +08:00
|
|
|
|
|
|
|
# private messages
|
|
|
|
if new_record
|
|
|
|
if post.topic.private_message?
|
2021-12-15 20:07:39 +08:00
|
|
|
notify_pm_users(post, reply_to_user, quoted_users, notified)
|
2018-07-21 17:20:21 +08:00
|
|
|
elsif notify_about_reply?(post)
|
2020-06-08 21:23:33 +08:00
|
|
|
notify_post_users(post, notified, new_record: new_record)
|
2015-12-18 23:32:53 +08:00
|
|
|
end
|
2015-11-30 14:03:47 +08:00
|
|
|
end
|
|
|
|
|
2015-12-01 13:52:43 +08:00
|
|
|
sync_group_mentions(post, mentioned_groups)
|
2016-07-07 03:56:40 +08:00
|
|
|
|
2016-07-20 03:57:05 +08:00
|
|
|
if new_record && post.post_number == 1
|
2016-07-07 03:56:40 +08:00
|
|
|
topic = post.topic
|
|
|
|
|
|
|
|
if topic.present?
|
2018-05-17 16:09:21 +08:00
|
|
|
watchers = category_watchers(topic) + tag_watchers(topic) + group_watchers(topic)
|
2016-07-07 03:56:40 +08:00
|
|
|
notify_first_post_watchers(post, watchers)
|
|
|
|
end
|
|
|
|
end
|
2021-09-21 02:18:38 +08:00
|
|
|
|
|
|
|
DiscourseEvent.trigger(:post_alerter_after_save_post, post, new_record, notified)
|
2016-07-07 03:56:40 +08:00
|
|
|
end
|
|
|
|
|
2018-05-17 16:09:21 +08:00
|
|
|
def group_watchers(topic)
|
|
|
|
GroupUser.where(
|
|
|
|
group_id: topic.allowed_groups.pluck(:group_id),
|
|
|
|
notification_level: GroupUser.notification_levels[:watching_first_post]
|
|
|
|
).pluck(:user_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag_watchers(topic)
|
2021-12-01 10:26:56 +08:00
|
|
|
topic
|
|
|
|
.tag_users
|
|
|
|
.notification_level_visible([TagUser.notification_levels[:watching_first_post]])
|
|
|
|
.distinct(:user_id).pluck(:user_id)
|
2018-05-17 16:09:21 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def category_watchers(topic)
|
|
|
|
topic.category_users
|
|
|
|
.where(notification_level: CategoryUser.notification_levels[:watching_first_post])
|
|
|
|
.pluck(:user_id)
|
|
|
|
end
|
|
|
|
|
2016-07-07 03:56:40 +08:00
|
|
|
def notify_first_post_watchers(post, user_ids)
|
|
|
|
return if user_ids.blank?
|
|
|
|
user_ids.uniq!
|
|
|
|
|
2018-05-24 23:52:59 +08:00
|
|
|
warn_if_not_sidekiq
|
|
|
|
|
2016-07-07 03:56:40 +08:00
|
|
|
# Don't notify the OP
|
|
|
|
user_ids -= [post.user_id]
|
2021-09-21 02:18:38 +08:00
|
|
|
users = User.where(id: user_ids).includes(:do_not_disturb_timings)
|
2018-05-07 17:44:29 +08:00
|
|
|
|
2018-05-24 23:27:43 +08:00
|
|
|
DiscourseEvent.trigger(:before_create_notifications_for_users, users, post)
|
2020-02-06 20:14:19 +08:00
|
|
|
each_user_in_batches(users) do |user|
|
2018-05-24 23:27:43 +08:00
|
|
|
create_notification(user, Notification.types[:watching_first_post], post)
|
2016-07-07 03:56:40 +08:00
|
|
|
end
|
2015-12-01 13:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def sync_group_mentions(post, mentioned_groups)
|
|
|
|
GroupMention.where(post_id: post.id).destroy_all
|
|
|
|
return if mentioned_groups.blank?
|
|
|
|
|
2021-03-30 01:43:24 +08:00
|
|
|
now = Time.zone.now
|
|
|
|
|
|
|
|
# insert_all instead of insert_all! since multiple post_alert jobs might be
|
|
|
|
# running concurrently
|
|
|
|
GroupMention.insert_all(
|
|
|
|
mentioned_groups.map do |group|
|
|
|
|
{
|
|
|
|
post_id: post.id,
|
|
|
|
group_id: group.id,
|
|
|
|
created_at: now,
|
|
|
|
updated_at: now,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
)
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def unread_posts(user, topic)
|
2015-10-20 04:31:48 +08:00
|
|
|
Post.secured(Guardian.new(user))
|
|
|
|
.where('post_number > COALESCE((
|
2014-03-18 10:12:07 +08:00
|
|
|
SELECT last_read_post_number FROM topic_users tu
|
|
|
|
WHERE tu.user_id = ? AND tu.topic_id = ? ),0)',
|
|
|
|
user.id, topic.id)
|
2021-05-04 11:03:00 +08:00
|
|
|
.where('reply_to_user_id = :user_id
|
|
|
|
OR exists(SELECT 1 from topic_users tu
|
|
|
|
WHERE tu.user_id = :user_id AND
|
|
|
|
tu.topic_id = :topic_id AND
|
|
|
|
notification_level = :topic_level)
|
|
|
|
OR exists(SELECT 1 from category_users cu
|
|
|
|
WHERE cu.user_id = :user_id AND
|
|
|
|
cu.category_id = :category_id AND
|
|
|
|
notification_level = :category_level)
|
|
|
|
OR exists(SELECT 1 from tag_users tu
|
|
|
|
WHERE tu.user_id = :user_id AND
|
|
|
|
tu.tag_id IN (SELECT tag_id FROM topic_tags WHERE topic_id = :topic_id) AND
|
|
|
|
notification_level = :tag_level)',
|
|
|
|
user_id: user.id,
|
|
|
|
topic_id: topic.id,
|
|
|
|
category_id: topic.category_id,
|
|
|
|
topic_level: TopicUser.notification_levels[:watching],
|
|
|
|
category_level: CategoryUser.notification_levels[:watching],
|
|
|
|
tag_level: TagUser.notification_levels[:watching]
|
|
|
|
)
|
2014-03-18 10:12:07 +08:00
|
|
|
.where(topic_id: topic.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def first_unread_post(user, topic)
|
|
|
|
unread_posts(user, topic).order('post_number').first
|
|
|
|
end
|
|
|
|
|
|
|
|
def unread_count(user, topic)
|
|
|
|
unread_posts(user, topic).count
|
|
|
|
end
|
|
|
|
|
2018-05-25 11:59:29 +08:00
|
|
|
def destroy_notifications(user, types, topic)
|
2014-03-18 10:12:07 +08:00
|
|
|
return if user.blank?
|
|
|
|
return unless Guardian.new(user).can_see?(topic)
|
|
|
|
|
2018-05-25 12:00:13 +08:00
|
|
|
User.transaction do
|
|
|
|
user.notifications.where(
|
|
|
|
notification_type: types,
|
|
|
|
topic_id: topic.id
|
|
|
|
).destroy_all
|
|
|
|
|
|
|
|
# Reload so notification counts sync up correctly
|
|
|
|
user.reload
|
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
2020-08-19 18:07:51 +08:00
|
|
|
NOTIFIABLE_TYPES = [
|
|
|
|
:mentioned,
|
|
|
|
:replied,
|
|
|
|
:quoted,
|
|
|
|
:posted,
|
|
|
|
:linked,
|
|
|
|
:private_message,
|
|
|
|
:group_mentioned,
|
|
|
|
:watching_first_post,
|
|
|
|
:event_reminder,
|
|
|
|
:event_invitation
|
|
|
|
].map { |t| Notification.types[t] }
|
2015-05-04 11:49:32 +08:00
|
|
|
|
2016-01-27 18:38:14 +08:00
|
|
|
def group_stats(topic)
|
2018-06-19 14:13:14 +08:00
|
|
|
sql = <<~SQL
|
|
|
|
SELECT COUNT(*) FROM topics t
|
|
|
|
JOIN topic_allowed_groups g ON g.group_id = :group_id AND g.topic_id = t.id
|
|
|
|
LEFT JOIN group_archived_messages a ON a.topic_id = t.id AND a.group_id = g.group_id
|
|
|
|
WHERE a.id IS NULL AND t.deleted_at is NULL AND t.archetype = 'private_message'
|
|
|
|
SQL
|
|
|
|
|
2016-01-27 18:38:14 +08:00
|
|
|
topic.allowed_groups.map do |g|
|
|
|
|
{
|
|
|
|
group_id: g.id,
|
2020-09-22 01:33:29 +08:00
|
|
|
group_name: g.name,
|
2018-06-19 14:13:14 +08:00
|
|
|
inbox_count: DB.query_single(sql, group_id: g.id).first.to_i
|
2016-01-27 18:38:14 +08:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_group_summary(user, post)
|
|
|
|
@group_stats ||= {}
|
|
|
|
stats = (@group_stats[post.topic_id] ||= group_stats(post.topic))
|
|
|
|
return unless stats
|
|
|
|
|
|
|
|
group_id = post.topic
|
|
|
|
.topic_allowed_groups
|
|
|
|
.where(group_id: user.groups.pluck(:id))
|
2019-10-21 18:32:27 +08:00
|
|
|
.pluck_first(:group_id)
|
2016-01-27 18:38:14 +08:00
|
|
|
|
|
|
|
stat = stats.find { |s| s[:group_id] == group_id }
|
2016-01-27 20:13:37 +08:00
|
|
|
return unless stat && stat[:inbox_count] > 0
|
2016-01-27 18:38:14 +08:00
|
|
|
|
2017-05-27 05:04:40 +08:00
|
|
|
DistributedMutex.synchronize("group_message_notify_#{user.id}") do
|
REFACTOR: Improve support for consolidating notifications. (#14904)
* REFACTOR: Improve support for consolidating notifications.
Before this commit, we didn't have a single way of consolidating notifications. For notifications like group summaries, we manually removed old ones before creating a new one. On the other hand, we used an after_create callback for likes and group membership requests, which caused unnecessary work, as we need to delete the record we created to replace it with a consolidated one.
We now have all the consolidation rules centralized in a single place: the consolidation planner class. Other parts of the app looking to create a consolidable notification can do so by calling Notification#consolidate_or_save!, instead of the default Notification#create! method.
Finally, we added two more rules: one for re-using existing group summaries and another for deleting duplicated dashboard problems PMs notifications when the user is tracking the moderator's inbox. Setting the threshold to one forces the planner to apply this rule every time.
I plan to add plugin support for adding custom rules in another PR to keep this one relatively small.
* DEV: Introduces a plugin API for consolidating notifications.
This commit removes the `Notification#filter_by_consolidation_data` scope since plugins could have to define their criteria. The Plan class now receives two blocks, one to query for an already consolidated notification, which we'll try to update, and another to query for existing ones to consolidate.
It also receives a consolidation window, which accepts an ActiveSupport::Duration object, and filter notifications created since that value.
2021-12-01 00:36:14 +08:00
|
|
|
Notification.consolidate_or_create!(
|
|
|
|
notification_type: Notification.types[:group_message_summary],
|
2017-05-27 05:04:40 +08:00
|
|
|
user_id: user.id,
|
|
|
|
data: {
|
|
|
|
group_id: stat[:group_id],
|
|
|
|
group_name: stat[:group_name],
|
|
|
|
inbox_count: stat[:inbox_count],
|
|
|
|
username: user.username_lower
|
|
|
|
}.to_json
|
|
|
|
)
|
|
|
|
end
|
2016-01-27 18:38:14 +08:00
|
|
|
|
|
|
|
# TODO decide if it makes sense to also publish a desktop notification
|
|
|
|
end
|
|
|
|
|
2020-02-03 08:27:19 +08:00
|
|
|
def should_notify_edit?(notification, post, opts)
|
2020-05-04 15:55:00 +08:00
|
|
|
notification.created_at < 1.day.ago ||
|
2020-02-03 08:27:19 +08:00
|
|
|
notification.data_hash["display_username"] != (opts[:display_username].presence || post.user.username)
|
2016-03-02 20:16:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def should_notify_like?(user, notification)
|
|
|
|
return true if user.user_option.like_notification_frequency == UserOption.like_notification_frequency_type[:always]
|
|
|
|
return true if user.user_option.like_notification_frequency == UserOption.like_notification_frequency_type[:first_time_and_daily] && notification.created_at < 1.day.ago
|
2018-05-15 15:51:32 +08:00
|
|
|
false
|
2016-03-02 20:16:52 +08:00
|
|
|
end
|
|
|
|
|
2020-02-03 08:27:19 +08:00
|
|
|
def should_notify_previous?(user, post, notification, opts)
|
2016-03-08 04:56:33 +08:00
|
|
|
case notification.notification_type
|
2020-02-03 08:27:19 +08:00
|
|
|
when Notification.types[:edited] then should_notify_edit?(notification, post, opts)
|
2016-03-08 04:56:33 +08:00
|
|
|
when Notification.types[:liked] then should_notify_like?(user, notification)
|
|
|
|
else false
|
2016-03-02 20:16:52 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-08 04:56:33 +08:00
|
|
|
COLLAPSED_NOTIFICATION_TYPES ||= [
|
|
|
|
Notification.types[:replied],
|
|
|
|
Notification.types[:posted],
|
2018-12-24 19:44:50 +08:00
|
|
|
Notification.types[:private_message],
|
2016-03-08 04:56:33 +08:00
|
|
|
]
|
|
|
|
|
2017-06-12 15:41:39 +08:00
|
|
|
def create_notification(user, type, post, opts = {})
|
|
|
|
opts = @default_opts.merge(opts)
|
|
|
|
|
2017-07-20 04:51:32 +08:00
|
|
|
DiscourseEvent.trigger(:before_create_notification, user, type, post, opts)
|
|
|
|
|
2020-03-16 16:41:11 +08:00
|
|
|
return if user.blank? || user.bot? || post.blank?
|
2020-01-28 02:24:11 +08:00
|
|
|
return if (topic = post.topic).blank?
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2019-01-17 14:31:07 +08:00
|
|
|
is_liked = type == Notification.types[:liked]
|
|
|
|
return if is_liked && user.user_option.like_notification_frequency == UserOption.like_notification_frequency_type[:never]
|
2016-03-06 06:12:59 +08:00
|
|
|
|
2014-03-18 10:12:07 +08:00
|
|
|
# Make sure the user can see the post
|
|
|
|
return unless Guardian.new(user).can_see?(post)
|
|
|
|
|
2020-01-28 02:24:11 +08:00
|
|
|
return if user.staged? && topic.category&.mailinglist_mirror?
|
2017-11-17 21:50:35 +08:00
|
|
|
|
2016-03-09 04:26:06 +08:00
|
|
|
notifier_id = opts[:user_id] || post.user_id # xxxxx look at revision history
|
2015-03-26 09:08:04 +08:00
|
|
|
|
2015-03-24 08:55:22 +08:00
|
|
|
# apply muting here
|
2015-03-26 09:08:04 +08:00
|
|
|
return if notifier_id && MutedUser.where(user_id: user.id, muted_user_id: notifier_id)
|
2018-12-04 14:54:27 +08:00
|
|
|
.joins(:muted_user)
|
|
|
|
.where('NOT admin AND NOT moderator')
|
|
|
|
.exists?
|
2015-03-24 08:55:22 +08:00
|
|
|
|
2019-03-21 19:15:34 +08:00
|
|
|
# apply ignored here
|
|
|
|
return if notifier_id && IgnoredUser.where(user_id: user.id, ignored_user_id: notifier_id)
|
|
|
|
.joins(:ignored_user)
|
|
|
|
.where('NOT admin AND NOT moderator')
|
|
|
|
.exists?
|
|
|
|
|
2014-03-18 10:12:07 +08:00
|
|
|
# skip if muted on the topic
|
2017-06-12 15:41:39 +08:00
|
|
|
return if TopicUser.where(
|
2020-01-28 02:24:11 +08:00
|
|
|
topic: topic,
|
2017-06-12 15:41:39 +08:00
|
|
|
user: user,
|
|
|
|
notification_level: TopicUser.notification_levels[:muted]
|
|
|
|
).exists?
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2015-12-15 06:17:09 +08:00
|
|
|
# skip if muted on the group
|
|
|
|
if group = opts[:group]
|
2017-06-12 15:41:39 +08:00
|
|
|
return if GroupUser.where(
|
|
|
|
group_id: opts[:group_id],
|
|
|
|
user_id: user.id,
|
|
|
|
notification_level: TopicUser.notification_levels[:muted]
|
|
|
|
).exists?
|
2015-12-15 06:17:09 +08:00
|
|
|
end
|
|
|
|
|
2019-05-16 00:47:36 +08:00
|
|
|
existing_notifications = user.notifications
|
2015-12-18 23:32:53 +08:00
|
|
|
.order("notifications.id DESC")
|
2019-05-16 00:47:36 +08:00
|
|
|
.where(
|
2019-01-17 14:31:07 +08:00
|
|
|
topic_id: post.topic_id,
|
2019-05-16 00:47:36 +08:00
|
|
|
post_number: post.post_number
|
|
|
|
).limit(10)
|
|
|
|
|
|
|
|
# Don't notify the same user about the same type of notification on the same post
|
|
|
|
existing_notification_of_same_type = existing_notifications.find { |n| n.notification_type == type }
|
2014-10-07 12:57:48 +08:00
|
|
|
|
2020-05-04 15:40:09 +08:00
|
|
|
if existing_notification_of_same_type && !should_notify_previous?(user, post, existing_notification_of_same_type, opts)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# linked, quoted, mentioned may be suppressed if you already have a reply notification
|
|
|
|
if type == Notification.types[:quoted] || type == Notification.types[:linked] || type == Notification.types[:mentioned]
|
|
|
|
return if existing_notifications.find { |n| n.notification_type == Notification.types[:replied] }
|
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2016-03-04 19:55:49 +08:00
|
|
|
notification_data = {}
|
|
|
|
|
2019-12-05 17:06:06 +08:00
|
|
|
if is_liked &&
|
|
|
|
existing_notification_of_same_type &&
|
|
|
|
existing_notification_of_same_type.created_at > 1.day.ago &&
|
|
|
|
(
|
|
|
|
user.user_option.like_notification_frequency ==
|
|
|
|
UserOption.like_notification_frequency_type[:always]
|
|
|
|
)
|
|
|
|
|
|
|
|
data = existing_notification_of_same_type.data_hash
|
|
|
|
notification_data["username2"] = data["display_username"]
|
|
|
|
notification_data["count"] = (data["count"] || 1).to_i + 1
|
|
|
|
# don't use destroy so we don't trigger a notification count refresh
|
|
|
|
Notification.where(id: existing_notification_of_same_type.id).destroy_all
|
2016-03-04 19:55:49 +08:00
|
|
|
end
|
|
|
|
|
2014-03-18 10:12:07 +08:00
|
|
|
collapsed = false
|
|
|
|
|
2016-03-08 04:56:33 +08:00
|
|
|
if COLLAPSED_NOTIFICATION_TYPES.include?(type)
|
2020-01-28 02:24:11 +08:00
|
|
|
destroy_notifications(user, COLLAPSED_NOTIFICATION_TYPES, topic)
|
2014-03-18 10:12:07 +08:00
|
|
|
collapsed = true
|
|
|
|
end
|
|
|
|
|
|
|
|
original_post = post
|
2018-12-24 19:44:50 +08:00
|
|
|
original_username = opts[:display_username].presence || post.username
|
2014-03-18 10:12:07 +08:00
|
|
|
|
|
|
|
if collapsed
|
2020-01-28 02:24:11 +08:00
|
|
|
post = first_unread_post(user, topic) || post
|
|
|
|
count = unread_count(user, topic)
|
2016-02-02 02:12:10 +08:00
|
|
|
if count > 1
|
|
|
|
I18n.with_locale(user.effective_locale) do
|
|
|
|
opts[:display_username] = I18n.t('embed.replies', count: count)
|
|
|
|
end
|
2015-01-18 15:14:59 +08:00
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
2019-01-04 01:03:01 +08:00
|
|
|
UserActionManager.notification_created(original_post, user, type, opts[:acting_user_id])
|
2014-03-18 10:12:07 +08:00
|
|
|
|
2020-01-28 02:24:11 +08:00
|
|
|
topic_title = topic.title
|
2016-02-23 08:34:16 +08:00
|
|
|
# when sending a private message email, keep the original title
|
2020-01-28 02:24:11 +08:00
|
|
|
if topic.private_message? && modifications = post.revisions.map(&:modifications)
|
2016-02-24 22:34:40 +08:00
|
|
|
if first_title_modification = modifications.find { |m| m.has_key?("title") }
|
2016-02-23 08:34:16 +08:00
|
|
|
topic_title = first_title_modification["title"][0]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-04 19:55:49 +08:00
|
|
|
notification_data.merge!(topic_title: topic_title,
|
2015-11-30 14:03:47 +08:00
|
|
|
original_post_id: original_post.id,
|
2016-02-02 02:12:10 +08:00
|
|
|
original_post_type: original_post.post_type,
|
2015-11-30 14:03:47 +08:00
|
|
|
original_username: original_username,
|
2018-08-24 21:13:07 +08:00
|
|
|
revision_number: opts[:revision_number],
|
2015-11-30 14:03:47 +08:00
|
|
|
display_username: opts[:display_username] || post.user.username)
|
|
|
|
|
|
|
|
if group = opts[:group]
|
|
|
|
notification_data[:group_id] = group.id
|
|
|
|
notification_data[:group_name] = group.name
|
|
|
|
end
|
|
|
|
|
2020-07-10 17:05:55 +08:00
|
|
|
if opts[:skip_send_email_to]&.include?(user.email)
|
|
|
|
skip_send_email = true
|
|
|
|
elsif original_post.via_email && (incoming_email = original_post.incoming_email)
|
2021-01-15 08:54:46 +08:00
|
|
|
skip_send_email =
|
|
|
|
incoming_email.to_addresses_split.include?(user.email) ||
|
|
|
|
incoming_email.cc_addresses_split.include?(user.email)
|
2017-11-10 23:10:25 +08:00
|
|
|
else
|
|
|
|
skip_send_email = opts[:skip_send_email]
|
|
|
|
end
|
|
|
|
|
2014-03-18 10:12:07 +08:00
|
|
|
# Create the notification
|
REFACTOR: Improve support for consolidating notifications. (#14904)
* REFACTOR: Improve support for consolidating notifications.
Before this commit, we didn't have a single way of consolidating notifications. For notifications like group summaries, we manually removed old ones before creating a new one. On the other hand, we used an after_create callback for likes and group membership requests, which caused unnecessary work, as we need to delete the record we created to replace it with a consolidated one.
We now have all the consolidation rules centralized in a single place: the consolidation planner class. Other parts of the app looking to create a consolidable notification can do so by calling Notification#consolidate_or_save!, instead of the default Notification#create! method.
Finally, we added two more rules: one for re-using existing group summaries and another for deleting duplicated dashboard problems PMs notifications when the user is tracking the moderator's inbox. Setting the threshold to one forces the planner to apply this rule every time.
I plan to add plugin support for adding custom rules in another PR to keep this one relatively small.
* DEV: Introduces a plugin API for consolidating notifications.
This commit removes the `Notification#filter_by_consolidation_data` scope since plugins could have to define their criteria. The Plan class now receives two blocks, one to query for an already consolidated notification, which we'll try to update, and another to query for existing ones to consolidate.
It also receives a consolidation window, which accepts an ActiveSupport::Duration object, and filter notifications created since that value.
2021-12-01 00:36:14 +08:00
|
|
|
created = user.notifications.consolidate_or_create!(
|
2018-01-22 14:11:52 +08:00
|
|
|
notification_type: type,
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
post_number: post.post_number,
|
|
|
|
post_action_id: opts[:post_action_id],
|
|
|
|
data: notification_data.to_json,
|
|
|
|
skip_send_email: skip_send_email
|
|
|
|
)
|
|
|
|
|
2021-10-12 01:55:18 +08:00
|
|
|
if created.id && existing_notifications.empty? && NOTIFIABLE_TYPES.include?(type)
|
2018-12-05 13:39:17 +08:00
|
|
|
create_notification_alert(user: user, post: original_post, notification_type: type, username: original_username)
|
2018-01-22 14:11:52 +08:00
|
|
|
end
|
2018-05-24 23:27:43 +08:00
|
|
|
|
2018-01-22 14:11:52 +08:00
|
|
|
created.id ? created : nil
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
2018-12-04 14:54:27 +08:00
|
|
|
def create_notification_alert(user:, post:, notification_type:, excerpt: nil, username: nil)
|
2021-09-21 02:18:38 +08:00
|
|
|
self.class.create_notification_alert(
|
|
|
|
user: user,
|
|
|
|
post: post,
|
|
|
|
notification_type: notification_type,
|
|
|
|
excerpt: excerpt,
|
|
|
|
username: username
|
|
|
|
)
|
2018-12-04 14:54:27 +08:00
|
|
|
end
|
|
|
|
|
2016-08-26 10:47:10 +08:00
|
|
|
def push_notification(user, payload)
|
2021-09-21 02:18:38 +08:00
|
|
|
self.class.push_notification(user, payload)
|
2016-08-26 10:47:10 +08:00
|
|
|
end
|
|
|
|
|
2015-11-30 14:03:47 +08:00
|
|
|
def expand_group_mentions(groups, post)
|
|
|
|
return unless post.user && groups
|
|
|
|
|
2019-12-12 19:13:40 +08:00
|
|
|
Group.mentionable(post.user, include_public: false).where(id: groups.map(&:id)).each do |group|
|
2015-11-30 14:03:47 +08:00
|
|
|
next if group.user_count >= SiteSetting.max_users_notified_per_group_mention
|
|
|
|
yield group, group.users
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2021-11-24 04:25:54 +08:00
|
|
|
def expand_here_mention(post, exclude_ids: nil)
|
|
|
|
posts = Post.where(topic_id: post.topic_id)
|
|
|
|
posts = posts.where.not(user_id: exclude_ids) if exclude_ids.present?
|
|
|
|
|
|
|
|
if post.user.staff?
|
|
|
|
posts = posts.where(post_type: [Post.types[:regular], Post.types[:whisper]])
|
|
|
|
else
|
|
|
|
posts = posts.where(post_type: Post.types[:regular])
|
|
|
|
end
|
|
|
|
|
|
|
|
User.real
|
|
|
|
.where(id: posts.select(:user_id))
|
|
|
|
.limit(SiteSetting.max_here_mentioned)
|
|
|
|
end
|
|
|
|
|
2014-03-18 10:12:07 +08:00
|
|
|
# TODO: Move to post-analyzer?
|
2015-11-30 14:03:47 +08:00
|
|
|
def extract_mentions(post)
|
|
|
|
mentions = post.raw_mentions
|
2018-11-27 19:43:05 +08:00
|
|
|
return if mentions.blank?
|
2015-11-30 14:03:47 +08:00
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
groups = Group.where('LOWER(name) IN (?)', mentions)
|
2018-11-27 19:43:05 +08:00
|
|
|
mentions -= groups.map(&:name).map(&:downcase)
|
|
|
|
groups = nil if groups.empty?
|
2015-11-30 14:03:47 +08:00
|
|
|
|
2018-11-27 19:43:05 +08:00
|
|
|
if mentions.present?
|
2021-09-21 02:18:38 +08:00
|
|
|
users = User.where(username_lower: mentions).includes(:do_not_disturb_timings).where.not(id: post.user_id)
|
2018-11-27 19:43:05 +08:00
|
|
|
users = nil if users.empty?
|
2018-11-24 01:25:40 +08:00
|
|
|
end
|
2015-11-30 14:03:47 +08:00
|
|
|
|
2021-11-24 04:25:54 +08:00
|
|
|
# @here can be a user mention and then this feature is disabled
|
|
|
|
here = mentions.include?(SiteSetting.here_mention) && Guardian.new(post.user).can_mention_here?
|
|
|
|
|
|
|
|
[groups, users, here]
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: Move to post-analyzer?
|
|
|
|
# Returns a list of users who were quoted in the post
|
|
|
|
def extract_quoted_users(post)
|
2021-12-15 20:07:39 +08:00
|
|
|
usernames = post.raw.scan(/\[quote=\"([^,]+),.+\"\]/).uniq.map { |q| q.first.strip.downcase }
|
|
|
|
|
|
|
|
User.where.not(id: post.user_id).where(username_lower: usernames)
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def extract_linked_users(post)
|
2020-07-03 21:52:49 +08:00
|
|
|
users = post.topic_links.where(reflection: false).map do |link|
|
2014-03-19 09:07:48 +08:00
|
|
|
linked_post = link.link_post
|
|
|
|
if !linked_post && topic = link.link_topic
|
2017-09-25 16:16:37 +08:00
|
|
|
linked_post = topic.posts.find_by(post_number: 1)
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
2015-12-31 07:51:58 +08:00
|
|
|
(linked_post && post.user_id != linked_post.user_id && linked_post.user) || nil
|
2014-03-18 10:12:07 +08:00
|
|
|
end.compact
|
2020-07-03 21:52:49 +08:00
|
|
|
|
|
|
|
DiscourseEvent.trigger(:after_extract_linked_users, users, post)
|
|
|
|
|
|
|
|
users
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# Notify a bunch of users
|
2017-06-12 15:41:39 +08:00
|
|
|
def notify_non_pm_users(users, type, post, opts = {})
|
2018-03-08 18:40:48 +08:00
|
|
|
return [] if post.topic&.private_message?
|
2015-05-26 01:15:00 +08:00
|
|
|
|
2018-03-08 18:40:48 +08:00
|
|
|
notify_users(users, type, post, opts)
|
|
|
|
end
|
2016-03-22 11:28:14 +08:00
|
|
|
|
2018-03-08 18:40:48 +08:00
|
|
|
def notify_users(users, type, post, opts = {})
|
2016-03-22 11:28:14 +08:00
|
|
|
users = [users] unless users.is_a?(Array)
|
2020-01-17 02:17:16 +08:00
|
|
|
users.reject!(&:staged?) if post.topic&.private_message?
|
2015-05-26 01:15:00 +08:00
|
|
|
|
2018-05-24 23:52:59 +08:00
|
|
|
warn_if_not_sidekiq
|
|
|
|
|
2018-05-24 23:27:43 +08:00
|
|
|
DiscourseEvent.trigger(:before_create_notifications_for_users, users, post)
|
|
|
|
users.each do |u|
|
|
|
|
create_notification(u, Notification.types[type], post, opts)
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
2018-03-08 18:40:48 +08:00
|
|
|
|
|
|
|
users
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
|
|
|
|
2021-12-15 20:07:39 +08:00
|
|
|
def notify_pm_users(post, reply_to_user, quoted_users, notified)
|
2016-07-08 10:58:18 +08:00
|
|
|
return unless post.topic
|
|
|
|
|
2018-05-24 23:52:59 +08:00
|
|
|
warn_if_not_sidekiq
|
|
|
|
|
2021-06-28 06:55:13 +08:00
|
|
|
# To simplify things and to avoid IMAP double sync issues, and to cut down
|
|
|
|
# on emails sent via SMTP, any topic_allowed_users (except those who are
|
|
|
|
# not_allowed?) for a group that has SMTP enabled will have their notification
|
|
|
|
# email combined into one and sent via a single group SMTP email with CC addresses.
|
|
|
|
emails_to_skip_send = email_using_group_smtp_if_configured(post)
|
|
|
|
|
|
|
|
# We create notifications for all directly_targeted_users and email those
|
|
|
|
# who do _not_ have their email addresses in the emails_to_skip_send array
|
|
|
|
# (which will include all topic allowed users' email addresses if group SMTP
|
|
|
|
# is enabled).
|
2018-05-24 23:27:43 +08:00
|
|
|
users = directly_targeted_users(post).reject { |u| notified.include?(u) }
|
|
|
|
DiscourseEvent.trigger(:before_create_notifications_for_users, users, post)
|
|
|
|
users.each do |user|
|
|
|
|
notification_level = TopicUser.get(post.topic, user)&.notification_level
|
|
|
|
if reply_to_user == user || notification_level == TopicUser.notification_levels[:watching] || user.staged?
|
2021-01-15 12:31:59 +08:00
|
|
|
create_notification(user, Notification.types[:private_message], post, skip_send_email_to: emails_to_skip_send)
|
2018-05-15 15:51:32 +08:00
|
|
|
end
|
2018-05-24 23:27:43 +08:00
|
|
|
end
|
2018-05-15 15:51:32 +08:00
|
|
|
|
2021-06-28 06:55:13 +08:00
|
|
|
# Users that are part of all mentioned groups. Emails sent by this notification
|
|
|
|
# flow will not be sent via group SMTP if it is enabled.
|
2018-05-24 23:27:43 +08:00
|
|
|
users = indirectly_targeted_users(post).reject { |u| notified.include?(u) }
|
|
|
|
DiscourseEvent.trigger(:before_create_notifications_for_users, users, post)
|
|
|
|
users.each do |user|
|
|
|
|
case TopicUser.get(post.topic, user)&.notification_level
|
|
|
|
when TopicUser.notification_levels[:watching]
|
2021-12-15 20:07:39 +08:00
|
|
|
create_pm_notification(user, post, emails_to_skip_send)
|
2018-05-24 23:27:43 +08:00
|
|
|
when TopicUser.notification_levels[:tracking]
|
2021-12-15 20:07:39 +08:00
|
|
|
if is_replying?(user, reply_to_user, quoted_users)
|
|
|
|
create_pm_notification(user, post, emails_to_skip_send)
|
|
|
|
else
|
|
|
|
notify_group_summary(user, post)
|
|
|
|
end
|
|
|
|
when TopicUser.notification_levels[:regular]
|
|
|
|
if is_replying?(user, reply_to_user, quoted_users)
|
|
|
|
create_pm_notification(user, post, emails_to_skip_send)
|
|
|
|
end
|
2018-05-15 15:51:32 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-07 12:17:35 +08:00
|
|
|
def group_notifying_via_smtp(post)
|
2021-11-17 07:24:17 +08:00
|
|
|
return if !SiteSetting.enable_smtp || post.post_type != Post.types[:regular]
|
|
|
|
return if post.topic.allowed_groups.none?
|
|
|
|
|
2021-11-16 08:21:49 +08:00
|
|
|
if post.topic.allowed_groups.count == 1
|
|
|
|
return post.topic.first_smtp_enabled_group
|
|
|
|
end
|
|
|
|
|
2021-11-17 07:24:17 +08:00
|
|
|
topic_incoming_email = post.topic.incoming_email.first
|
|
|
|
return if topic_incoming_email.blank?
|
|
|
|
|
|
|
|
group = Group.find_by_email(topic_incoming_email.to_addresses)
|
2021-11-16 08:21:49 +08:00
|
|
|
if !group&.smtp_enabled
|
|
|
|
return post.topic.first_smtp_enabled_group
|
|
|
|
end
|
|
|
|
group
|
2021-06-07 12:17:35 +08:00
|
|
|
end
|
|
|
|
|
2021-06-28 06:55:13 +08:00
|
|
|
def email_using_group_smtp_if_configured(post)
|
2021-01-20 08:53:08 +08:00
|
|
|
emails_to_skip_send = []
|
|
|
|
group = group_notifying_via_smtp(post)
|
|
|
|
return emails_to_skip_send if group.blank?
|
|
|
|
|
2021-06-28 06:55:13 +08:00
|
|
|
to_address = nil
|
|
|
|
cc_addresses = []
|
|
|
|
|
|
|
|
# We need to use topic_allowed_users here instead of directly_targeted_users
|
|
|
|
# because we want to make sure the to_address goes to the OP of the topic.
|
|
|
|
topic_allowed_users_by_age = post.topic.topic_allowed_users.includes(:user).order(:created_at).reject do |tau|
|
|
|
|
not_allowed?(tau.user, post)
|
2021-01-20 08:53:08 +08:00
|
|
|
end
|
2021-06-28 06:55:13 +08:00
|
|
|
return emails_to_skip_send if topic_allowed_users_by_age.empty?
|
|
|
|
|
|
|
|
# This should usually be the OP of the topic, unless they are the one
|
|
|
|
# replying by email (they are excluded by not_allowed? then)
|
|
|
|
to_address = topic_allowed_users_by_age.first.user.email
|
|
|
|
cc_addresses = topic_allowed_users_by_age[1..-1].map { |tau| tau.user.email }
|
|
|
|
email_addresses = [to_address, cc_addresses].flatten
|
|
|
|
|
|
|
|
# If any of these email addresses were cc address on the
|
|
|
|
# incoming email for the target post, do not send them emails (they
|
|
|
|
# already have been notified by the CC on the email)
|
|
|
|
if post.incoming_email.present?
|
|
|
|
cc_addresses = cc_addresses - post.incoming_email.cc_addresses_split
|
|
|
|
|
|
|
|
# If the to address is one of the recently added CC addresses, then we
|
|
|
|
# need to bail early, because otherwise we are sending a notification
|
|
|
|
# email to the user who was just added by CC. In this case the OP probably
|
|
|
|
# replied and CC'd some people, and they are the only other topic users.
|
|
|
|
return if post.incoming_email.cc_addresses_split.include?(to_address)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Send a single email using group SMTP settings to cut down on the
|
|
|
|
# number of emails sent via SMTP, also to replicate how support systems
|
|
|
|
# and group inboxes generally work in other systems.
|
2021-07-05 08:09:16 +08:00
|
|
|
#
|
|
|
|
# We need to send this on a delay to allow for editing and finalising
|
|
|
|
# posts, the same way we do for private_message user emails/notifications.
|
|
|
|
Jobs.enqueue_in(
|
|
|
|
SiteSetting.personal_email_time_window_seconds,
|
2021-06-28 06:55:13 +08:00
|
|
|
:group_smtp_email,
|
|
|
|
group_id: group.id,
|
|
|
|
post_id: post.id,
|
|
|
|
email: to_address,
|
|
|
|
cc_emails: cc_addresses
|
|
|
|
)
|
2021-01-20 08:53:08 +08:00
|
|
|
|
2021-06-03 12:47:32 +08:00
|
|
|
# Add the group's email_username into the array, because it is used for
|
2021-01-20 08:53:08 +08:00
|
|
|
# skip_send_email_to in the case of user private message notifications
|
|
|
|
# (we do not want the group to be sent any emails from here because it
|
|
|
|
# will make another email for IMAP to pick up in the group's mailbox)
|
|
|
|
emails_to_skip_send = email_addresses.dup if email_addresses.any?
|
|
|
|
emails_to_skip_send << group.email_username
|
2021-06-28 06:55:13 +08:00
|
|
|
emails_to_skip_send.uniq
|
2021-01-20 08:53:08 +08:00
|
|
|
end
|
|
|
|
|
2021-06-11 08:55:50 +08:00
|
|
|
def notify_post_users(post, notified, group_ids: nil, include_topic_watchers: true, include_category_watchers: true, include_tag_watchers: true, new_record: false)
|
2018-05-15 15:51:32 +08:00
|
|
|
return unless post.topic
|
2016-07-08 10:58:18 +08:00
|
|
|
|
2018-05-24 23:52:59 +08:00
|
|
|
warn_if_not_sidekiq
|
|
|
|
|
2019-05-03 06:17:27 +08:00
|
|
|
condition = +<<~SQL
|
2021-06-11 08:55:50 +08:00
|
|
|
users.id IN (
|
2020-08-13 15:22:34 +08:00
|
|
|
SELECT id FROM users WHERE false
|
|
|
|
/*topic*/
|
|
|
|
/*category*/
|
|
|
|
/*tags*/
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
if include_topic_watchers
|
|
|
|
condition.sub! "/*topic*/", <<~SQL
|
|
|
|
UNION
|
2018-05-15 15:51:32 +08:00
|
|
|
SELECT user_id
|
|
|
|
FROM topic_users
|
|
|
|
WHERE notification_level = :watching
|
|
|
|
AND topic_id = :topic_id
|
2020-08-13 15:22:34 +08:00
|
|
|
SQL
|
|
|
|
end
|
2016-07-08 10:58:18 +08:00
|
|
|
|
2019-11-12 13:44:46 +08:00
|
|
|
if include_category_watchers
|
|
|
|
condition.sub! "/*category*/", <<~SQL
|
|
|
|
UNION
|
2016-07-08 10:58:18 +08:00
|
|
|
|
2018-05-15 15:51:32 +08:00
|
|
|
SELECT cu.user_id
|
|
|
|
FROM category_users cu
|
|
|
|
LEFT JOIN topic_users tu ON tu.user_id = cu.user_id
|
|
|
|
AND tu.topic_id = :topic_id
|
|
|
|
WHERE cu.notification_level = :watching
|
|
|
|
AND cu.category_id = :category_id
|
2020-08-13 15:22:34 +08:00
|
|
|
AND (tu.user_id IS NULL OR tu.notification_level = :watching)
|
2019-11-12 13:44:46 +08:00
|
|
|
SQL
|
|
|
|
end
|
2016-07-08 10:58:18 +08:00
|
|
|
|
|
|
|
tag_ids = post.topic.topic_tags.pluck('topic_tags.tag_id')
|
|
|
|
|
2019-11-12 13:44:46 +08:00
|
|
|
if include_tag_watchers && tag_ids.present?
|
2018-05-15 15:51:32 +08:00
|
|
|
condition.sub! "/*tags*/", <<~SQL
|
|
|
|
UNION
|
|
|
|
|
|
|
|
SELECT tag_users.user_id
|
|
|
|
FROM tag_users
|
|
|
|
LEFT JOIN topic_users tu ON tu.user_id = tag_users.user_id
|
|
|
|
AND tu.topic_id = :topic_id
|
2021-12-01 10:26:56 +08:00
|
|
|
LEFT JOIN tag_group_memberships tgm ON tag_users.tag_id = tgm.tag_id
|
|
|
|
LEFT JOIN tag_group_permissions tgp ON tgm.tag_group_id = tgp.tag_group_id
|
|
|
|
LEFT JOIN group_users gu ON gu.user_id = tag_users.user_id
|
|
|
|
WHERE (tgp.group_id IS NULL OR tgp.group_id = gu.group_id OR gu.group_id = :staff_group_id)
|
|
|
|
AND (tag_users.notification_level = :watching
|
|
|
|
AND tag_users.tag_id IN (:tag_ids)
|
|
|
|
AND (tu.user_id IS NULL OR tu.notification_level = :watching))
|
2018-05-15 15:51:32 +08:00
|
|
|
SQL
|
2016-07-08 10:58:18 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
notify = User.where(condition,
|
2018-05-15 15:51:32 +08:00
|
|
|
watching: TopicUser.notification_levels[:watching],
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
category_id: post.topic.category_id,
|
2021-12-01 10:26:56 +08:00
|
|
|
tag_ids: tag_ids,
|
|
|
|
staff_group_id: Group::AUTO_GROUPS[:staff]
|
2018-05-15 15:51:32 +08:00
|
|
|
)
|
2015-11-30 14:03:47 +08:00
|
|
|
|
2021-06-11 08:55:50 +08:00
|
|
|
if group_ids.present?
|
|
|
|
notify = notify.joins(:group_users).where("group_users.group_id IN (?)", group_ids)
|
|
|
|
end
|
|
|
|
|
2020-08-13 15:22:34 +08:00
|
|
|
if post.topic.private_message?
|
|
|
|
notify = notify.where(staged: false).staff
|
|
|
|
end
|
|
|
|
|
2015-12-18 23:32:53 +08:00
|
|
|
exclude_user_ids = notified.map(&:id)
|
2021-06-11 08:55:50 +08:00
|
|
|
notify = notify.where("users.id NOT IN (?)", exclude_user_ids) if exclude_user_ids.present?
|
2015-11-30 14:03:47 +08:00
|
|
|
|
2018-05-24 23:27:43 +08:00
|
|
|
DiscourseEvent.trigger(:before_create_notifications_for_users, notify, post)
|
2020-01-21 05:41:13 +08:00
|
|
|
|
2021-07-05 14:17:31 +08:00
|
|
|
already_seen_user_ids = Set.new(
|
|
|
|
TopicUser
|
|
|
|
.where(topic_id: post.topic.id)
|
|
|
|
.where("last_read_post_number >= ?", post.post_number)
|
|
|
|
.pluck(:user_id)
|
|
|
|
)
|
2020-01-21 05:41:13 +08:00
|
|
|
|
2020-02-06 20:14:19 +08:00
|
|
|
each_user_in_batches(notify) do |user|
|
2020-06-08 21:23:33 +08:00
|
|
|
notification_type = !new_record && already_seen_user_ids.include?(user.id) ? Notification.types[:edited] : Notification.types[:posted]
|
2020-05-07 05:52:21 +08:00
|
|
|
opts = {}
|
|
|
|
opts[:display_username] = post.last_editor.username if notification_type == Notification.types[:edited]
|
|
|
|
create_notification(user, notification_type, post, opts)
|
2015-12-18 23:32:53 +08:00
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|
2015-11-30 14:03:47 +08:00
|
|
|
|
2018-05-24 23:52:59 +08:00
|
|
|
def warn_if_not_sidekiq
|
|
|
|
Rails.logger.warn("PostAlerter.#{caller_locations(1, 1)[0].label} was called outside of sidekiq") unless Sidekiq.server?
|
|
|
|
end
|
2020-02-06 20:14:19 +08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def each_user_in_batches(users)
|
|
|
|
# This is race-condition-safe, unlike #find_in_batches
|
|
|
|
users.pluck(:id).each_slice(USER_BATCH_SIZE) do |user_ids_batch|
|
2021-09-21 02:18:38 +08:00
|
|
|
User.where(id: user_ids_batch).includes(:do_not_disturb_timings).each { |user| yield(user) }
|
2020-02-06 20:14:19 +08:00
|
|
|
end
|
|
|
|
end
|
2021-12-15 20:07:39 +08:00
|
|
|
|
|
|
|
def create_pm_notification(user, post, emails_to_skip_send)
|
|
|
|
create_notification(user, Notification.types[:private_message], post, skip_send_email_to: emails_to_skip_send)
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_replying?(user, reply_to_user, quoted_users)
|
|
|
|
reply_to_user == user || quoted_users.include?(user)
|
|
|
|
end
|
2014-03-18 10:12:07 +08:00
|
|
|
end
|