2014-05-26 05:46:43 -04:00
|
|
|
module Jobs
|
|
|
|
class CreateMissingAvatars < Jobs::Scheduled
|
|
|
|
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)
|
2017-07-27 21:20:09 -04:00
|
|
|
.joins(:user)
|
|
|
|
.where(last_gravatar_download_attempt: nil)
|
|
|
|
.order("users.last_posted_at DESC")
|
|
|
|
.limit(5000)
|
|
|
|
.each do |u|
|
2016-04-13 12:30:25 -04:00
|
|
|
u.user.refresh_avatar
|
2014-05-27 06:46:17 -04:00
|
|
|
end
|
2014-05-26 05:46:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|