2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-20 17:14:52 -05:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class FixPostsRead < ::Jobs::Onceoff
|
2017-11-20 17:14:52 -05:00
|
|
|
def execute_onceoff(args)
|
|
|
|
# Skipping to the last post in a topic used to count all posts in the topic
|
|
|
|
# as read in user stats. Cap the posts read count to 50 * topics_entered.
|
|
|
|
|
|
|
|
sql = <<~SQL
|
|
|
|
UPDATE user_stats
|
|
|
|
SET posts_read_count = topics_entered * 50
|
|
|
|
WHERE user_id IN (
|
|
|
|
SELECT us2.user_id
|
|
|
|
FROM user_stats us2
|
|
|
|
WHERE us2.topics_entered > 0
|
|
|
|
AND us2.posts_read_count / us2.topics_entered > 50
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
2018-06-19 02:13:14 -04:00
|
|
|
DB.exec(sql)
|
2017-11-20 17:14:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|