2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-08-26 16:15:59 -04:00
|
|
|
module Jobs
|
|
|
|
|
2019-10-02 00:01:53 -04:00
|
|
|
class PendingUsersReminder < ::Jobs::Scheduled
|
2021-06-24 09:02:56 -04:00
|
|
|
every 5.minutes
|
2013-08-26 16:15:59 -04:00
|
|
|
|
|
|
|
def execute(args)
|
2021-06-24 09:02:56 -04:00
|
|
|
if SiteSetting.must_approve_users && SiteSetting.pending_users_reminder_delay_minutes >= 0
|
2017-02-24 19:11:17 -05:00
|
|
|
query = AdminUserIndexQuery.new(query: 'pending', stats: false).find_users_query # default order is: users.created_at DESC
|
2021-06-24 09:02:56 -04:00
|
|
|
if SiteSetting.pending_users_reminder_delay_minutes > 0
|
|
|
|
query = query.where('users.created_at < ?', SiteSetting.pending_users_reminder_delay_minutes.minutes.ago)
|
2015-11-20 16:05:57 -05:00
|
|
|
end
|
|
|
|
|
2017-07-31 18:27:29 -04:00
|
|
|
newest_username = query.limit(1).select(:username).first&.username
|
2015-11-20 15:32:08 -05:00
|
|
|
|
|
|
|
return true if newest_username == previous_newest_username # already notified
|
|
|
|
|
|
|
|
count = query.count
|
|
|
|
|
2013-08-26 16:15:59 -04:00
|
|
|
if count > 0
|
2017-10-23 00:30:28 -04:00
|
|
|
target_usernames = Group[:moderators].users.map do |user|
|
2019-03-11 19:58:14 -04:00
|
|
|
next if user.bot?
|
2017-10-23 00:30:28 -04:00
|
|
|
|
2017-12-13 21:48:46 -05:00
|
|
|
unseen_count = user.notifications.joins(:topic)
|
2017-10-23 00:30:28 -04:00
|
|
|
.where("notifications.id > ?", user.seen_notification_id)
|
2014-07-16 17:53:44 -04:00
|
|
|
.where("notifications.read = false")
|
2017-10-23 00:30:28 -04:00
|
|
|
.where("topics.subtype = ?", TopicSubtype.pending_users_reminder)
|
|
|
|
.count
|
|
|
|
|
2017-12-13 21:48:46 -05:00
|
|
|
unseen_count == 0 ? user.username : nil
|
2014-07-16 17:53:44 -04:00
|
|
|
end.compact
|
|
|
|
|
|
|
|
unless target_usernames.empty?
|
|
|
|
PostCreator.create(
|
|
|
|
Discourse.system_user,
|
|
|
|
target_usernames: target_usernames,
|
|
|
|
archetype: Archetype.private_message,
|
|
|
|
subtype: TopicSubtype.pending_users_reminder,
|
|
|
|
title: I18n.t("system_messages.pending_users_reminder.subject_template", count: count),
|
|
|
|
raw: I18n.t("system_messages.pending_users_reminder.text_body_template", count: count, base_url: Discourse.base_url)
|
|
|
|
)
|
2015-11-20 15:32:08 -05:00
|
|
|
|
|
|
|
self.previous_newest_username = newest_username
|
2014-07-16 17:53:44 -04:00
|
|
|
end
|
2013-08-26 16:15:59 -04:00
|
|
|
end
|
|
|
|
end
|
2015-11-20 15:32:08 -05:00
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def previous_newest_username
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.get previous_newest_username_cache_key
|
2015-11-20 15:32:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def previous_newest_username=(username)
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.setex previous_newest_username_cache_key, 7.days, username
|
2015-11-20 15:32:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def previous_newest_username_cache_key
|
2020-04-30 02:48:34 -04:00
|
|
|
"pending-users-reminder:newest-username"
|
2013-08-26 16:15:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|