2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-10-02 00:01:53 -04:00
|
|
|
class Jobs::NotifyReviewable < ::Jobs::Base
|
2019-01-03 12:03:01 -05:00
|
|
|
|
|
|
|
def execute(args)
|
2020-08-07 12:13:02 -04:00
|
|
|
return unless reviewable = Reviewable.find_by(id: args[:reviewable_id])
|
2019-01-03 12:03:01 -05:00
|
|
|
|
|
|
|
@contacted = Set.new
|
|
|
|
|
2020-08-07 12:13:02 -04:00
|
|
|
counts = Hash.new(0)
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2020-08-07 12:13:02 -04:00
|
|
|
Reviewable.default_visible.pending.each do |r|
|
|
|
|
counts[:admins] += 1
|
|
|
|
counts[:moderators] += 1 if r.reviewable_by_moderator?
|
|
|
|
counts[r.reviewable_by_group_id] += 1 if r.reviewable_by_group_id
|
|
|
|
end
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2021-05-25 19:47:35 -04:00
|
|
|
all_updates = Hash.new { |h, k| h[k] = {} }
|
|
|
|
|
|
|
|
if args[:updated_reviewable_ids].present?
|
|
|
|
Reviewable.where(id: args[:updated_reviewable_ids]).each do |r|
|
2021-07-16 12:57:12 -04:00
|
|
|
payload = {
|
|
|
|
last_performing_username: args[:performing_username],
|
|
|
|
status: r.status
|
|
|
|
}
|
2021-05-25 19:47:35 -04:00
|
|
|
|
|
|
|
all_updates[:admins][r.id] = payload
|
|
|
|
all_updates[:moderators][r.id] = payload if r.reviewable_by_moderator?
|
|
|
|
all_updates[r.reviewable_by_group_id][r.id] = payload if r.reviewable_by_group_id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-07 12:13:02 -04:00
|
|
|
# admins
|
2021-05-25 19:47:35 -04:00
|
|
|
notify(
|
|
|
|
User.real.admins.pluck(:id),
|
|
|
|
count: counts[:admins],
|
|
|
|
updates: all_updates[:admins],
|
|
|
|
)
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2020-08-07 12:13:02 -04:00
|
|
|
# moderators
|
|
|
|
if reviewable.reviewable_by_moderator?
|
2021-05-25 19:47:35 -04:00
|
|
|
notify(
|
|
|
|
User.real.moderators.where("id NOT IN (?)", @contacted).pluck(:id),
|
|
|
|
count: counts[:moderators],
|
|
|
|
updates: all_updates[:moderators],
|
|
|
|
)
|
2020-08-07 12:13:02 -04:00
|
|
|
end
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2020-08-07 12:13:02 -04:00
|
|
|
# category moderators
|
|
|
|
if SiteSetting.enable_category_group_moderation? && (group = reviewable.reviewable_by_group)
|
|
|
|
group.users.includes(:group_users).where("users.id NOT IN (?)", @contacted).find_each do |user|
|
2021-05-25 19:47:35 -04:00
|
|
|
count = 0
|
|
|
|
updates = {}
|
|
|
|
|
|
|
|
user.group_users.each do |gu|
|
|
|
|
count += counts[gu.group_id] || 0
|
|
|
|
updates.merge!(all_updates[gu.group_id] || {})
|
|
|
|
end
|
|
|
|
|
|
|
|
notify([user.id], count: count, updates: updates)
|
2020-08-07 12:13:02 -04:00
|
|
|
end
|
2019-01-03 12:03:01 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-07 12:13:02 -04:00
|
|
|
protected
|
2019-01-03 12:03:01 -05:00
|
|
|
|
2021-05-25 19:47:35 -04:00
|
|
|
def notify(user_ids, count:, updates:)
|
2020-04-27 13:51:25 -04:00
|
|
|
return if user_ids.blank?
|
2021-05-25 19:47:35 -04:00
|
|
|
|
2019-01-03 12:03:01 -05:00
|
|
|
data = { reviewable_count: count }
|
2021-05-25 19:47:35 -04:00
|
|
|
data[:updates] = updates if updates.present?
|
|
|
|
|
2019-01-03 12:03:01 -05:00
|
|
|
MessageBus.publish("/reviewable_counts", data, user_ids: user_ids)
|
|
|
|
@contacted += user_ids
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|