mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Unread
|
|
|
|
# This module helps us calculate unread and new post counts
|
|
|
|
def initialize(topic, topic_user, guardian)
|
|
@guardian = guardian
|
|
@topic = topic
|
|
@topic_user = topic_user
|
|
end
|
|
|
|
def unread_posts
|
|
return 0 if do_not_notify?(@topic_user.notification_level)
|
|
result = ((@topic_user.highest_seen_post_number || 0) - (@topic_user.last_read_post_number || 0))
|
|
result = 0 if result < 0
|
|
result
|
|
end
|
|
|
|
def new_posts
|
|
return 0 if @topic_user.highest_seen_post_number.blank?
|
|
return 0 if do_not_notify?(@topic_user.notification_level)
|
|
|
|
highest_post_number = @guardian.is_staff? ? @topic.highest_staff_post_number : @topic.highest_post_number
|
|
|
|
return 0 if (@topic_user.last_read_post_number || 0) > highest_post_number
|
|
|
|
new_posts = (highest_post_number - @topic_user.highest_seen_post_number)
|
|
new_posts = 0 if new_posts < 0
|
|
return new_posts
|
|
end
|
|
|
|
protected
|
|
|
|
def do_not_notify?(notification_level)
|
|
[TopicUser.notification_levels[:muted], TopicUser.notification_levels[:regular]].include?(notification_level)
|
|
end
|
|
|
|
end
|