mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
09932738e5
Before, whispers were only available for staff members. Config has been changed to allow to configure privileged groups with access to whispers. Post migration was added to move from the old setting into the new one. I considered having a boolean column `whisperer` on user model similar to `admin/moderator` for performance reason. Finally, I decided to keep looking for groups as queries are only done for current user and didn't notice any N+1 queries.
38 lines
910 B
Ruby
38 lines
910 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Unread
|
|
|
|
# This module helps us calculate unread post counts
|
|
|
|
def initialize(topic, topic_user, guardian)
|
|
@guardian = guardian
|
|
@topic = topic
|
|
@topic_user = topic_user
|
|
end
|
|
|
|
def unread_posts
|
|
return 0 if @topic_user.last_read_post_number.blank?
|
|
return 0 if do_not_notify?(@topic_user.notification_level)
|
|
|
|
highest_post_number = @guardian.is_whisperer? ? @topic.highest_staff_post_number : @topic.highest_post_number
|
|
|
|
return 0 if @topic_user.last_read_post_number > highest_post_number
|
|
|
|
unread = (highest_post_number - @topic_user.last_read_post_number)
|
|
unread = 0 if unread < 0
|
|
unread
|
|
end
|
|
|
|
protected
|
|
|
|
DO_NOT_NOTIFY_LEVELS = [
|
|
TopicUser.notification_levels[:muted],
|
|
TopicUser.notification_levels[:regular]
|
|
]
|
|
|
|
def do_not_notify?(notification_level)
|
|
DO_NOT_NOTIFY_LEVELS.include?(notification_level)
|
|
end
|
|
|
|
end
|