forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunread.rb
More file actions
33 lines (24 loc) · 835 Bytes
/
Copy pathunread.rb
File metadata and controls
33 lines (24 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class Unread
# This module helps us calculate unread and new post counts
def initialize(topic, topic_user)
@topic = topic
@topic_user = topic_user
end
def unread_posts
return 0 if do_not_notify?(@topic_user.notification_level)
result = ((@topic_user.seen_post_count||0) - (@topic_user.last_read_post_number||0))
result = 0 if result < 0
result
end
def new_posts
return 0 if @topic_user.seen_post_count.blank?
return 0 if do_not_notify?(@topic_user.notification_level)
new_posts = (@topic.highest_post_number - @topic_user.seen_post_count)
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