2013-10-23 17:24:50 -04:00
|
|
|
class TrackedTopicsUpdater
|
|
|
|
|
|
|
|
def initialize(user_id, threshold)
|
|
|
|
@id = user_id
|
|
|
|
@threshold = threshold
|
|
|
|
end
|
|
|
|
|
|
|
|
def call
|
|
|
|
topic_users = TopicUser.where(notifications_reason_id: nil, user_id: @id)
|
|
|
|
if @threshold < 0
|
2017-07-27 21:20:09 -04:00
|
|
|
topic_users.update_all(notification_level: TopicUser.notification_levels[:regular])
|
2013-10-23 17:24:50 -04:00
|
|
|
else
|
|
|
|
topic_users.update_all(["notification_level = CASE WHEN total_msecs_viewed < ? THEN ? ELSE ? END",
|
|
|
|
@threshold, TopicUser.notification_levels[:regular], TopicUser.notification_levels[:tracking]])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|