mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
66436d0895
- Reduce time-to-digest from 20 to 7 days - Fetch mentions starting from +1 day since last login - Fix case when last login is more recent than last e-mail - Do not render all mentions, only 40, but show number in subject - Do not send digest to moved accounts - Do send digest to silenced accounts
26 lines
599 B
Ruby
26 lines
599 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Scheduler::EmailScheduler
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options unique: :until_executed, retry: 0
|
|
|
|
FREQUENCY = 7.days.freeze
|
|
SIGN_IN_OFFSET = 1.day.freeze
|
|
|
|
def perform
|
|
eligible_users.reorder(nil).find_each do |user|
|
|
next unless user.allows_digest_emails?
|
|
DigestMailerWorker.perform_async(user.id)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def eligible_users
|
|
User.emailable
|
|
.where('current_sign_in_at < ?', (FREQUENCY + SIGN_IN_OFFSET).ago)
|
|
.where('last_emailed_at IS NULL OR last_emailed_at < ?', FREQUENCY.ago)
|
|
end
|
|
end
|