2013-02-05 14:16:51 -05:00
|
|
|
class TopicUser < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :topic
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-05-24 12:13:31 -04:00
|
|
|
scope :starred_since, lambda { |sinceDaysAgo| where('starred_at > ?', sinceDaysAgo.days.ago) }
|
2013-07-03 16:04:22 -04:00
|
|
|
scope :by_date_starred, -> { group('date(starred_at)').order('date(starred_at)') }
|
2013-05-24 12:13:31 -04:00
|
|
|
|
2013-05-29 04:11:04 -04:00
|
|
|
scope :tracking, lambda { |topic_id|
|
|
|
|
where(topic_id: topic_id)
|
|
|
|
.where("COALESCE(topic_users.notification_level, :regular) >= :tracking",
|
|
|
|
regular: TopicUser.notification_levels[:regular], tracking: TopicUser.notification_levels[:tracking])
|
|
|
|
}
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
# Class methods
|
|
|
|
class << self
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
# Enums
|
|
|
|
def notification_levels
|
|
|
|
@notification_levels ||= Enum.new(:muted, :regular, :tracking, :watching, start: 0)
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
def notification_reasons
|
2014-01-01 20:00:08 -05:00
|
|
|
@notification_reasons ||= Enum.new(
|
|
|
|
:created_topic,
|
|
|
|
:user_changed,
|
|
|
|
:user_interacted,
|
|
|
|
:created_post,
|
|
|
|
:auto_watch,
|
|
|
|
:auto_watch_category,
|
2014-06-01 23:55:01 -04:00
|
|
|
:auto_mute_category,
|
|
|
|
:auto_track_category
|
2014-01-01 20:00:08 -05:00
|
|
|
)
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def auto_track(user_id, topic_id, reason)
|
|
|
|
if TopicUser.where(user_id: user_id, topic_id: topic_id, notifications_reason_id: nil).exists?
|
|
|
|
change(user_id, topic_id,
|
|
|
|
notification_level: notification_levels[:tracking],
|
2013-02-05 14:16:51 -05:00
|
|
|
notifications_reason_id: reason
|
2013-03-06 15:17:07 -05:00
|
|
|
)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
MessageBus.publish("/topic/#{topic_id}", {
|
|
|
|
notification_level_change: notification_levels[:tracking],
|
|
|
|
notifications_reason_id: reason
|
|
|
|
}, user_ids: [user_id])
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
# Find the information specific to a user in a forum topic
|
|
|
|
def lookup_for(user, topics)
|
|
|
|
# If the user isn't logged in, there's no last read posts
|
|
|
|
return {} if user.blank? || topics.blank?
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
topic_ids = topics.map(&:id)
|
|
|
|
create_lookup(TopicUser.where(topic_id: topic_ids, user_id: user.id))
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
def create_lookup(topic_users)
|
|
|
|
topic_users = topic_users.to_a
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
result = {}
|
|
|
|
return result if topic_users.blank?
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
topic_users.each do |ftu|
|
|
|
|
result[ftu.topic_id] = ftu
|
|
|
|
end
|
|
|
|
result
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-03-26 15:20:41 -04:00
|
|
|
def get(topic, user)
|
|
|
|
topic = topic.id if topic.is_a?(Topic)
|
|
|
|
user = user.id if user.is_a?(User)
|
|
|
|
TopicUser.find_by(topic_id: topic, user_id: user)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
# Change attributes for a user (creates a record when none is present). First it tries an update
|
|
|
|
# since there's more likely to be an existing record than not. If the update returns 0 rows affected
|
|
|
|
# it then creates the row instead.
|
|
|
|
def change(user_id, topic_id, attrs)
|
|
|
|
# Sometimes people pass objs instead of the ids. We can handle that.
|
2013-06-27 22:18:04 -04:00
|
|
|
topic_id = topic_id.id if topic_id.is_a?(::Topic)
|
|
|
|
user_id = user_id.id if user_id.is_a?(::User)
|
|
|
|
|
|
|
|
topic_id = topic_id.to_i
|
|
|
|
user_id = user_id.to_i
|
2013-03-06 15:17:07 -05:00
|
|
|
|
|
|
|
TopicUser.transaction do
|
|
|
|
attrs = attrs.dup
|
|
|
|
attrs[:starred_at] = DateTime.now if attrs[:starred_at].nil? && attrs[:starred]
|
|
|
|
|
|
|
|
if attrs[:notification_level]
|
|
|
|
attrs[:notifications_changed_at] ||= DateTime.now
|
|
|
|
attrs[:notifications_reason_id] ||= TopicUser.notification_reasons[:user_changed]
|
|
|
|
end
|
|
|
|
attrs_array = attrs.to_a
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
attrs_sql = attrs_array.map { |t| "#{t[0]} = ?" }.join(", ")
|
|
|
|
vals = attrs_array.map { |t| t[1] }
|
2013-07-01 14:45:52 -04:00
|
|
|
rows = TopicUser.where(topic_id: topic_id, user_id: user_id).update_all([attrs_sql, *vals])
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
if rows == 0
|
|
|
|
now = DateTime.now
|
2014-05-06 09:41:59 -04:00
|
|
|
auto_track_after = User.select(:auto_track_topics_after_msecs).find_by(id: user_id).auto_track_topics_after_msecs
|
2013-03-06 15:17:07 -05:00
|
|
|
auto_track_after ||= SiteSetting.auto_track_topics_after
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
if auto_track_after >= 0 && auto_track_after <= (attrs[:total_msecs_viewed] || 0)
|
|
|
|
attrs[:notification_level] ||= notification_levels[:tracking]
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-06-27 22:18:04 -04:00
|
|
|
TopicUser.create(attrs.merge!(user_id: user_id, topic_id: topic_id, first_visited_at: now ,last_visited_at: now))
|
2013-05-21 23:43:43 -04:00
|
|
|
else
|
|
|
|
observe_after_save_callbacks_for topic_id, user_id
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
2014-06-24 19:45:12 -04:00
|
|
|
|
|
|
|
if attrs[:notification_level]
|
|
|
|
MessageBus.publish("/topic/#{topic_id}",
|
|
|
|
{notification_level_change: attrs[:notification_level]}, user_ids: [user_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
rescue ActiveRecord::RecordNotUnique
|
|
|
|
# In case of a race condition to insert, do nothing
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
def track_visit!(topic,user)
|
2014-03-26 15:20:41 -04:00
|
|
|
topic_id = topic.is_a?(Topic) ? topic.id : topic
|
|
|
|
user_id = user.is_a?(User) ? user.id : topic
|
2013-10-04 03:00:23 -04:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
now = DateTime.now
|
2013-10-04 03:00:23 -04:00
|
|
|
rows = TopicUser.where({topic_id: topic_id, user_id: user_id}).update_all({last_visited_at: now})
|
2013-03-06 15:17:07 -05:00
|
|
|
if rows == 0
|
2013-10-04 03:00:23 -04:00
|
|
|
TopicUser.create(topic_id: topic_id, user_id: user_id, last_visited_at: now, first_visited_at: now)
|
2013-05-21 23:45:03 -04:00
|
|
|
else
|
2013-10-04 03:00:23 -04:00
|
|
|
observe_after_save_callbacks_for topic_id, user_id
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
# Update the last read and the last seen post count, but only if it doesn't exist.
|
|
|
|
# This would be a lot easier if psql supported some kind of upsert
|
|
|
|
def update_last_read(user, topic_id, post_number, msecs)
|
|
|
|
return if post_number.blank?
|
|
|
|
msecs = 0 if msecs.to_i < 0
|
|
|
|
|
|
|
|
args = {
|
|
|
|
user_id: user.id,
|
|
|
|
topic_id: topic_id,
|
|
|
|
post_number: post_number,
|
|
|
|
now: DateTime.now,
|
|
|
|
msecs: msecs,
|
|
|
|
tracking: notification_levels[:tracking],
|
|
|
|
threshold: SiteSetting.auto_track_topics_after
|
|
|
|
}
|
|
|
|
|
2013-04-07 21:12:52 -04:00
|
|
|
# In case anyone seens "seen_post_count" and gets confused, like I do.
|
|
|
|
# seen_post_count represents the highest_post_number of the topic when
|
2013-12-21 02:19:22 -05:00
|
|
|
# the user visited it. It may be out of alignment with last_read, meaning
|
2013-04-07 21:12:52 -04:00
|
|
|
# ... user visited the topic but did not read the posts
|
2014-09-12 02:59:25 -04:00
|
|
|
#
|
|
|
|
# 86400000 = 1 day
|
2013-03-06 15:17:07 -05:00
|
|
|
rows = exec_sql("UPDATE topic_users
|
|
|
|
SET
|
2014-09-12 02:59:25 -04:00
|
|
|
last_read_post_number = GREATEST(:post_number, tu.last_read_post_number),
|
2013-03-06 15:17:07 -05:00
|
|
|
seen_post_count = t.highest_post_number,
|
2014-09-12 02:59:25 -04:00
|
|
|
total_msecs_viewed = LEAST(tu.total_msecs_viewed + :msecs,86400000),
|
2013-03-06 15:17:07 -05:00
|
|
|
notification_level =
|
|
|
|
case when tu.notifications_reason_id is null and (tu.total_msecs_viewed + :msecs) >
|
|
|
|
coalesce(u.auto_track_topics_after_msecs,:threshold) and
|
|
|
|
coalesce(u.auto_track_topics_after_msecs, :threshold) >= 0 then
|
|
|
|
:tracking
|
|
|
|
else
|
|
|
|
tu.notification_level
|
|
|
|
end
|
|
|
|
FROM topic_users tu
|
|
|
|
join topics t on t.id = tu.topic_id
|
|
|
|
join users u on u.id = :user_id
|
|
|
|
WHERE
|
|
|
|
tu.topic_id = topic_users.topic_id AND
|
|
|
|
tu.user_id = topic_users.user_id AND
|
|
|
|
tu.topic_id = :topic_id AND
|
|
|
|
tu.user_id = :user_id
|
|
|
|
RETURNING
|
2013-05-30 02:19:12 -04:00
|
|
|
topic_users.notification_level, tu.notification_level old_level, tu.last_read_post_number
|
2013-03-06 15:17:07 -05:00
|
|
|
",
|
|
|
|
args).values
|
|
|
|
|
|
|
|
if rows.length == 1
|
|
|
|
before = rows[0][1].to_i
|
|
|
|
after = rows[0][0].to_i
|
|
|
|
|
2013-05-30 02:19:12 -04:00
|
|
|
before_last_read = rows[0][2].to_i
|
|
|
|
|
|
|
|
if before_last_read < post_number
|
2014-01-24 15:19:20 -05:00
|
|
|
# The user read at least one new post
|
2014-02-26 15:37:42 -05:00
|
|
|
TopicTrackingState.publish_read(topic_id, post_number, user.id, after)
|
2014-01-24 15:19:20 -05:00
|
|
|
user.update_posts_read!(post_number - before_last_read)
|
2013-05-30 02:19:12 -04:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
if before != after
|
|
|
|
MessageBus.publish("/topic/#{topic_id}", {notification_level_change: after}, user_ids: [user.id])
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
if rows.length == 0
|
2014-01-24 15:19:20 -05:00
|
|
|
# The user read at least one post in a topic that they haven't viewed before.
|
2014-02-26 15:37:42 -05:00
|
|
|
args[:new_status] = notification_levels[:regular]
|
|
|
|
if (user.auto_track_topics_after_msecs || SiteSetting.auto_track_topics_after) == 0
|
|
|
|
args[:new_status] = notification_levels[:tracking]
|
|
|
|
end
|
|
|
|
TopicTrackingState.publish_read(topic_id, post_number, user.id, args[:new_status])
|
2014-01-24 15:19:20 -05:00
|
|
|
user.update_posts_read!(post_number)
|
2013-05-30 02:19:12 -04:00
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
exec_sql("INSERT INTO topic_users (user_id, topic_id, last_read_post_number, seen_post_count, last_visited_at, first_visited_at, notification_level)
|
2014-02-26 15:37:42 -05:00
|
|
|
SELECT :user_id, :topic_id, :post_number, ft.highest_post_number, :now, :now, :new_status
|
2013-03-06 15:17:07 -05:00
|
|
|
FROM topics AS ft
|
|
|
|
JOIN users u on u.id = :user_id
|
|
|
|
WHERE ft.id = :topic_id
|
|
|
|
AND NOT EXISTS(SELECT 1
|
|
|
|
FROM topic_users AS ftu
|
|
|
|
WHERE ftu.user_id = :user_id and ftu.topic_id = :topic_id)",
|
|
|
|
args)
|
2014-06-24 19:45:12 -04:00
|
|
|
|
|
|
|
MessageBus.publish("/topic/#{topic_id}", {notification_level_change: args[:new_status]}, user_ids: [user.id])
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-03-06 15:17:07 -05:00
|
|
|
|
2013-05-21 23:43:43 -04:00
|
|
|
def observe_after_save_callbacks_for(topic_id, user_id)
|
|
|
|
TopicUser.where(topic_id: topic_id, user_id: user_id).each do |topic_user|
|
|
|
|
UserActionObserver.instance.after_save topic_user
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-03-06 15:17:07 -05:00
|
|
|
|
2013-07-03 21:47:12 -04:00
|
|
|
def self.ensure_consistency!(topic_id=nil)
|
2014-08-10 20:26:46 -04:00
|
|
|
# TODO this needs some reworking, when we mark stuff skipped
|
|
|
|
# we up these numbers so they are not in-sync
|
|
|
|
# the simple fix is to add a column here, but table is already quite big
|
|
|
|
# long term we want to split up topic_users and allow for this better
|
2013-07-03 21:47:12 -04:00
|
|
|
builder = SqlBuilder.new <<SQL
|
2014-08-10 20:26:46 -04:00
|
|
|
|
2013-04-05 00:29:46 -04:00
|
|
|
UPDATE topic_users t
|
|
|
|
SET
|
2014-08-10 20:26:46 -04:00
|
|
|
last_read_post_number = LEAST(GREATEST(last_read, last_read_post_number), max_post_number),
|
2013-04-07 23:01:58 -04:00
|
|
|
seen_post_count = LEAST(max_post_number,GREATEST(t.seen_post_count, last_read))
|
2013-04-05 00:29:46 -04:00
|
|
|
FROM (
|
2013-04-07 21:12:52 -04:00
|
|
|
SELECT topic_id, user_id, MAX(post_number) last_read
|
2013-04-05 00:29:46 -04:00
|
|
|
FROM post_timings
|
|
|
|
GROUP BY topic_id, user_id
|
|
|
|
) as X
|
2013-04-07 23:01:58 -04:00
|
|
|
JOIN (
|
|
|
|
SELECT p.topic_id, MAX(p.post_number) max_post_number from posts p
|
|
|
|
GROUP BY p.topic_id
|
|
|
|
) as Y on Y.topic_id = X.topic_id
|
2013-07-03 21:47:12 -04:00
|
|
|
/*where*/
|
2013-04-05 00:29:46 -04:00
|
|
|
SQL
|
2013-07-03 21:47:12 -04:00
|
|
|
|
|
|
|
builder.where <<SQL
|
|
|
|
X.topic_id = t.topic_id AND
|
|
|
|
X.user_id = t.user_id AND
|
|
|
|
(
|
2014-08-10 20:26:46 -04:00
|
|
|
last_read_post_number <> LEAST(GREATEST(last_read, last_read_post_number), max_post_number) OR
|
2013-07-03 21:47:12 -04:00
|
|
|
seen_post_count <> LEAST(max_post_number,GREATEST(t.seen_post_count, last_read))
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
|
|
|
if topic_id
|
|
|
|
builder.where("t.topic_id = :topic_id", topic_id: topic_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
builder.exec
|
2013-04-05 00:29:46 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-23 22:48:32 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: topic_users
|
|
|
|
#
|
|
|
|
# user_id :integer not null
|
|
|
|
# topic_id :integer not null
|
|
|
|
# starred :boolean default(FALSE), not null
|
|
|
|
# posted :boolean default(FALSE), not null
|
|
|
|
# last_read_post_number :integer
|
|
|
|
# seen_post_count :integer
|
|
|
|
# starred_at :datetime
|
|
|
|
# last_visited_at :datetime
|
|
|
|
# first_visited_at :datetime
|
|
|
|
# notification_level :integer default(1), not null
|
|
|
|
# notifications_changed_at :datetime
|
|
|
|
# notifications_reason_id :integer
|
|
|
|
# total_msecs_viewed :integer default(0), not null
|
|
|
|
# cleared_pinned_at :datetime
|
|
|
|
# unstarred_at :datetime
|
2013-08-13 16:09:27 -04:00
|
|
|
# id :integer not null, primary key
|
2014-02-06 19:07:36 -05:00
|
|
|
# last_emailed_post_number :integer
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2014-05-27 21:49:50 -04:00
|
|
|
# index_topic_users_on_topic_id_and_user_id (topic_id,user_id) UNIQUE
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|