2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-05-26 05:46:43 -04:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class CreateMissingAvatars < ::Jobs::Scheduled
|
2014-05-26 05:46:43 -04:00
|
|
|
every 1.hour
|
2015-05-06 19:00:13 -04:00
|
|
|
|
2014-05-26 05:46:43 -04:00
|
|
|
def execute(args)
|
2015-05-06 19:00:13 -04:00
|
|
|
# backfill in batches of 5000 an hour
|
|
|
|
UserAvatar.includes(:user)
|
2016-05-16 19:40:17 -04:00
|
|
|
.joins(:user)
|
2015-05-06 19:00:13 -04:00
|
|
|
.where(last_gravatar_download_attempt: nil)
|
|
|
|
.order("users.last_posted_at DESC")
|
2016-04-13 12:30:25 -04:00
|
|
|
.limit(5000)
|
|
|
|
.each do |u|
|
|
|
|
u.user.refresh_avatar
|
2014-05-27 06:46:17 -04:00
|
|
|
end
|
2014-05-26 05:46:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|