2018-02-06 12:37:23 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-21 02:39:51 -04:00
|
|
|
# this class is used to mirror unread and new status back to end users
|
|
|
|
# in JavaScript there is a mirror class that is kept in-sync using the mssage bus
|
|
|
|
# the allows end users to always know which topics have unread posts in them
|
|
|
|
# and which topics are new
|
|
|
|
|
2013-05-29 04:11:04 -04:00
|
|
|
class TopicTrackingState
|
2013-05-21 02:39:51 -04:00
|
|
|
|
2013-05-24 06:58:26 -04:00
|
|
|
include ActiveModel::SerializerSupport
|
|
|
|
|
2013-05-21 02:39:51 -04:00
|
|
|
CHANNEL = "/user-tracking"
|
2018-03-05 03:18:23 -05:00
|
|
|
UNREAD_MESSAGE_TYPE = "unread".freeze
|
|
|
|
LATEST_MESSAGE_TYPE = "latest".freeze
|
2013-05-21 02:39:51 -04:00
|
|
|
|
2014-02-26 15:37:42 -05:00
|
|
|
attr_accessor :user_id,
|
|
|
|
:topic_id,
|
|
|
|
:highest_post_number,
|
|
|
|
:last_read_post_number,
|
|
|
|
:created_at,
|
2014-07-16 15:39:39 -04:00
|
|
|
:category_id,
|
2014-02-26 15:37:42 -05:00
|
|
|
:notification_level
|
2013-05-23 01:21:07 -04:00
|
|
|
|
2013-05-29 04:11:04 -04:00
|
|
|
def self.publish_new(topic)
|
2018-03-05 03:18:23 -05:00
|
|
|
return unless topic.regular?
|
2013-05-29 04:11:04 -04:00
|
|
|
|
|
|
|
message = {
|
|
|
|
topic_id: topic.id,
|
|
|
|
message_type: "new_topic",
|
|
|
|
payload: {
|
|
|
|
last_read_post_number: nil,
|
|
|
|
highest_post_number: 1,
|
|
|
|
created_at: topic.created_at,
|
2014-06-17 21:21:40 -04:00
|
|
|
topic_id: topic.id,
|
2016-03-29 20:17:52 -04:00
|
|
|
category_id: topic.category_id,
|
|
|
|
archetype: topic.archetype
|
2013-05-29 04:11:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
group_ids = topic.category && topic.category.secure_group_ids
|
|
|
|
|
2015-05-03 22:21:00 -04:00
|
|
|
MessageBus.publish("/new", message.as_json, group_ids: group_ids)
|
2013-05-29 04:11:04 -04:00
|
|
|
publish_read(topic.id, 1, topic.user_id)
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.publish_latest(topic, staff_only = false)
|
2018-03-05 03:18:23 -05:00
|
|
|
return unless topic.regular?
|
2014-08-04 23:27:34 -04:00
|
|
|
|
|
|
|
message = {
|
|
|
|
topic_id: topic.id,
|
2018-03-05 03:18:23 -05:00
|
|
|
message_type: LATEST_MESSAGE_TYPE,
|
2014-08-04 23:27:34 -04:00
|
|
|
payload: {
|
|
|
|
bumped_at: topic.bumped_at,
|
2016-03-29 20:17:52 -04:00
|
|
|
category_id: topic.category_id,
|
|
|
|
archetype: topic.archetype
|
2014-08-04 23:27:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 01:03:31 -05:00
|
|
|
group_ids =
|
|
|
|
if staff_only
|
|
|
|
[Group::AUTO_GROUPS[:staff]]
|
|
|
|
else
|
|
|
|
topic.category && topic.category.secure_group_ids
|
|
|
|
end
|
2015-05-03 22:21:00 -04:00
|
|
|
MessageBus.publish("/latest", message.as_json, group_ids: group_ids)
|
2014-08-04 23:27:34 -04:00
|
|
|
end
|
|
|
|
|
2018-03-05 03:18:23 -05:00
|
|
|
def self.unread_channel_key(user_id)
|
|
|
|
"/unread/#{user_id}"
|
|
|
|
end
|
|
|
|
|
2013-05-29 04:11:04 -04:00
|
|
|
def self.publish_unread(post)
|
2018-03-05 03:18:23 -05:00
|
|
|
return unless post.topic.regular?
|
2013-05-29 04:11:04 -04:00
|
|
|
# TODO at high scale we are going to have to defer this,
|
|
|
|
# perhaps cut down to users that are around in the last 7 days as well
|
2016-12-02 01:03:31 -05:00
|
|
|
|
|
|
|
group_ids =
|
|
|
|
if post.post_type == Post.types[:whisper]
|
|
|
|
[Group::AUTO_GROUPS[:staff]]
|
|
|
|
else
|
|
|
|
post.topic.category && post.topic.category.secure_group_ids
|
|
|
|
end
|
2013-05-29 04:11:04 -04:00
|
|
|
|
|
|
|
TopicUser
|
2017-07-27 21:20:09 -04:00
|
|
|
.tracking(post.topic_id)
|
|
|
|
.select([:user_id, :last_read_post_number, :notification_level])
|
|
|
|
.each do |tu|
|
2013-05-29 04:11:04 -04:00
|
|
|
|
|
|
|
message = {
|
|
|
|
topic_id: post.topic_id,
|
2018-03-05 03:18:23 -05:00
|
|
|
message_type: UNREAD_MESSAGE_TYPE,
|
2013-05-29 04:11:04 -04:00
|
|
|
payload: {
|
|
|
|
last_read_post_number: tu.last_read_post_number,
|
|
|
|
highest_post_number: post.post_number,
|
|
|
|
created_at: post.created_at,
|
2015-09-20 20:36:20 -04:00
|
|
|
category_id: post.topic.category_id,
|
2016-03-29 20:17:52 -04:00
|
|
|
notification_level: tu.notification_level,
|
|
|
|
archetype: post.topic.archetype
|
2013-05-29 04:11:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 03:18:23 -05:00
|
|
|
MessageBus.publish(self.unread_channel_key(tu.user_id), message.as_json, group_ids: group_ids)
|
2013-05-21 02:39:51 -04:00
|
|
|
end
|
2013-11-25 01:37:51 -05:00
|
|
|
|
2013-05-21 02:39:51 -04:00
|
|
|
end
|
|
|
|
|
2016-03-29 20:17:52 -04:00
|
|
|
def self.publish_recover(topic)
|
|
|
|
group_ids = topic.category && topic.category.secure_group_ids
|
|
|
|
|
|
|
|
message = {
|
|
|
|
topic_id: topic.id,
|
2018-03-05 03:47:51 -05:00
|
|
|
message_type: "recover"
|
2016-03-29 20:17:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MessageBus.publish("/recover", message.as_json, group_ids: group_ids)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.publish_delete(topic)
|
|
|
|
group_ids = topic.category && topic.category.secure_group_ids
|
|
|
|
|
|
|
|
message = {
|
|
|
|
topic_id: topic.id,
|
2018-03-05 03:47:51 -05:00
|
|
|
message_type: "delete"
|
2016-03-29 20:17:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MessageBus.publish("/delete", message.as_json, group_ids: group_ids)
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.publish_read(topic_id, last_read_post_number, user_id, notification_level = nil)
|
2013-11-25 01:37:51 -05:00
|
|
|
highest_post_number = Topic.where(id: topic_id).pluck(:highest_post_number).first
|
2013-05-30 02:19:12 -04:00
|
|
|
|
2013-11-25 01:37:51 -05:00
|
|
|
message = {
|
|
|
|
topic_id: topic_id,
|
|
|
|
message_type: "read",
|
|
|
|
payload: {
|
|
|
|
last_read_post_number: last_read_post_number,
|
|
|
|
highest_post_number: highest_post_number,
|
2014-02-26 15:37:42 -05:00
|
|
|
topic_id: topic_id,
|
|
|
|
notification_level: notification_level
|
2013-05-30 02:19:12 -04:00
|
|
|
}
|
2013-11-25 01:37:51 -05:00
|
|
|
}
|
|
|
|
|
2018-03-05 03:18:23 -05:00
|
|
|
MessageBus.publish(self.unread_channel_key(user_id), message.as_json, user_ids: [user_id])
|
2013-05-21 02:39:51 -04:00
|
|
|
end
|
|
|
|
|
2013-05-23 01:21:07 -04:00
|
|
|
def self.treat_as_new_topic_clause
|
2014-03-03 16:11:59 -05:00
|
|
|
User.where("GREATEST(CASE
|
2016-02-18 00:57:22 -05:00
|
|
|
WHEN COALESCE(uo.new_topic_duration_minutes, :default_duration) = :always THEN u.created_at
|
|
|
|
WHEN COALESCE(uo.new_topic_duration_minutes, :default_duration) = :last_visit THEN COALESCE(u.previous_visit_at,u.created_at)
|
|
|
|
ELSE (:now::timestamp - INTERVAL '1 MINUTE' * COALESCE(uo.new_topic_duration_minutes, :default_duration))
|
2015-09-06 21:57:50 -04:00
|
|
|
END, us.new_since, :min_date)",
|
2013-05-23 01:21:07 -04:00
|
|
|
now: DateTime.now,
|
|
|
|
last_visit: User::NewTopicDuration::LAST_VISIT,
|
|
|
|
always: User::NewTopicDuration::ALWAYS,
|
2015-09-06 21:57:50 -04:00
|
|
|
default_duration: SiteSetting.default_other_new_topic_duration_minutes,
|
|
|
|
min_date: Time.at(SiteSetting.min_new_topics_time).to_datetime
|
2017-08-31 00:06:56 -04:00
|
|
|
).where_clause.send(:predicates)[0]
|
2013-05-21 02:39:51 -04:00
|
|
|
end
|
|
|
|
|
2016-12-02 01:03:31 -05:00
|
|
|
def self.report(user, topic_id = nil)
|
2013-05-21 02:39:51 -04:00
|
|
|
|
2013-05-23 01:21:07 -04:00
|
|
|
# Sam: this is a hairy report, in particular I need custom joins and fancy conditions
|
|
|
|
# Dropping to sql_builder so I can make sense of it.
|
|
|
|
#
|
|
|
|
# Keep in mind, we need to be able to filter on a GROUP of users, and zero in on topic
|
|
|
|
# all our existing scope work does not do this
|
|
|
|
#
|
|
|
|
# This code needs to be VERY efficient as it is triggered via the message bus and may steal
|
|
|
|
# cycles from usual requests
|
|
|
|
#
|
2015-09-06 21:57:50 -04:00
|
|
|
#
|
2016-12-02 01:03:31 -05:00
|
|
|
sql = report_raw_sql(topic_id: topic_id, skip_unread: true, skip_order: true, staff: user.staff?)
|
2015-09-28 21:55:09 -04:00
|
|
|
sql << "\nUNION ALL\n\n"
|
2016-12-02 01:03:31 -05:00
|
|
|
sql << report_raw_sql(topic_id: topic_id, skip_new: true, skip_order: true, staff: user.staff?)
|
2015-09-06 21:57:50 -04:00
|
|
|
|
2018-06-20 03:48:02 -04:00
|
|
|
DB.query(
|
|
|
|
sql,
|
|
|
|
user_id: user.id,
|
|
|
|
topic_id: topic_id,
|
|
|
|
min_new_topic_date: Time.at(SiteSetting.min_new_topics_time).to_datetime
|
|
|
|
)
|
2015-09-06 21:57:50 -04:00
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.report_raw_sql(opts = nil)
|
2015-09-06 21:57:50 -04:00
|
|
|
|
|
|
|
unread =
|
|
|
|
if opts && opts[:skip_unread]
|
|
|
|
"1=0"
|
|
|
|
else
|
2017-08-31 00:06:56 -04:00
|
|
|
TopicQuery
|
|
|
|
.unread_filter(Topic, -999, staff: opts && opts[:staff])
|
|
|
|
.where_clause.send(:predicates)
|
|
|
|
.join(" AND ")
|
|
|
|
.gsub("-999", ":user_id")
|
2015-09-06 21:57:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
new =
|
|
|
|
if opts && opts[:skip_new]
|
|
|
|
"1=0"
|
|
|
|
else
|
2018-02-06 12:37:23 -05:00
|
|
|
TopicQuery.new_filter(Topic, "xxx").where_clause.send(:predicates).join(" AND ").gsub!("'xxx'", treat_as_new_topic_clause) +
|
|
|
|
" AND topics.created_at > :min_new_topic_date"
|
2015-09-06 21:57:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
select = (opts && opts[:select]) || "
|
|
|
|
u.id AS user_id,
|
2015-07-21 07:53:54 -04:00
|
|
|
topics.id AS topic_id,
|
2014-02-26 15:37:42 -05:00
|
|
|
topics.created_at,
|
2016-12-02 01:03:31 -05:00
|
|
|
#{opts && opts[:staff] ? "highest_staff_post_number highest_post_number" : "highest_post_number"},
|
2014-02-26 15:37:42 -05:00
|
|
|
last_read_post_number,
|
2015-07-21 07:53:54 -04:00
|
|
|
c.id AS category_id,
|
2015-09-06 21:57:50 -04:00
|
|
|
tu.notification_level"
|
|
|
|
|
2018-02-06 12:37:23 -05:00
|
|
|
sql = +<<SQL
|
2015-09-06 21:57:50 -04:00
|
|
|
SELECT #{select}
|
2015-07-21 08:45:04 -04:00
|
|
|
FROM topics
|
|
|
|
JOIN users u on u.id = :user_id
|
|
|
|
JOIN user_stats AS us ON us.user_id = u.id
|
2016-02-18 00:57:22 -05:00
|
|
|
JOIN user_options AS uo ON uo.user_id = u.id
|
2015-07-21 08:45:04 -04:00
|
|
|
JOIN categories c ON c.id = topics.category_id
|
2015-07-21 07:53:54 -04:00
|
|
|
LEFT JOIN topic_users tu ON tu.topic_id = topics.id AND tu.user_id = u.id
|
|
|
|
WHERE u.id = :user_id AND
|
|
|
|
topics.archetype <> 'private_message' AND
|
|
|
|
((#{unread}) OR (#{new})) AND
|
2013-05-23 01:21:07 -04:00
|
|
|
(topics.visible OR u.admin OR u.moderator) AND
|
2015-07-21 07:53:54 -04:00
|
|
|
topics.deleted_at IS NULL AND
|
2015-07-21 08:45:04 -04:00
|
|
|
( NOT c.read_restricted OR u.admin OR category_id IN (
|
2015-07-21 07:53:54 -04:00
|
|
|
SELECT c2.id FROM categories c2
|
|
|
|
JOIN category_groups cg ON cg.category_id = c2.id
|
2015-07-21 08:26:51 -04:00
|
|
|
JOIN group_users gu ON gu.user_id = :user_id AND cg.group_id = gu.group_id
|
2015-07-21 07:53:54 -04:00
|
|
|
WHERE c2.read_restricted )
|
|
|
|
)
|
|
|
|
AND NOT EXISTS( SELECT 1 FROM category_users cu
|
|
|
|
WHERE last_read_post_number IS NULL AND
|
|
|
|
cu.user_id = :user_id AND
|
|
|
|
cu.category_id = topics.category_id AND
|
|
|
|
cu.notification_level = #{CategoryUser.notification_levels[:muted]})
|
2015-07-21 07:48:07 -04:00
|
|
|
|
2013-05-23 01:21:07 -04:00
|
|
|
SQL
|
|
|
|
|
2015-09-06 21:57:50 -04:00
|
|
|
if opts && opts[:topic_id]
|
2015-07-21 07:53:54 -04:00
|
|
|
sql << " AND topics.id = :topic_id"
|
2013-05-23 01:21:07 -04:00
|
|
|
end
|
2014-09-10 08:19:24 -04:00
|
|
|
|
2015-09-28 21:55:09 -04:00
|
|
|
unless opts && opts[:skip_order]
|
|
|
|
sql << " ORDER BY topics.bumped_at DESC"
|
|
|
|
end
|
|
|
|
|
|
|
|
sql
|
2013-05-21 02:39:51 -04:00
|
|
|
end
|
|
|
|
|
2018-03-15 10:48:40 -04:00
|
|
|
def self.publish_private_message(topic, archive_user_id: nil,
|
2018-03-12 20:35:15 -04:00
|
|
|
post: nil,
|
|
|
|
group_archive: false)
|
|
|
|
|
2018-03-06 01:38:43 -05:00
|
|
|
return unless topic.private_message?
|
|
|
|
channels = {}
|
|
|
|
|
|
|
|
allowed_user_ids = topic.allowed_users.pluck(:id)
|
|
|
|
|
2018-03-06 22:39:23 -05:00
|
|
|
if post && allowed_user_ids.include?(post.user_id)
|
2018-03-06 01:38:43 -05:00
|
|
|
channels["/private-messages/sent"] = [post.user_id]
|
2018-03-15 04:01:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
if archive_user_id
|
2018-03-12 20:35:15 -04:00
|
|
|
user_ids = [archive_user_id]
|
2018-03-06 22:39:23 -05:00
|
|
|
|
|
|
|
[
|
|
|
|
"/private-messages/archive",
|
|
|
|
"/private-messages/inbox",
|
|
|
|
"/private-messages/sent",
|
|
|
|
].each do |channel|
|
|
|
|
channels[channel] = user_ids
|
|
|
|
end
|
2018-03-06 01:38:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
if channels.except("/private-messages/sent").blank?
|
|
|
|
channels["/private-messages/inbox"] = allowed_user_ids
|
|
|
|
end
|
|
|
|
|
2018-03-15 04:01:40 -04:00
|
|
|
topic.allowed_groups.each do |group|
|
|
|
|
group_user_ids = group.users.pluck(:id)
|
|
|
|
next if group_user_ids.blank?
|
|
|
|
group_channels = []
|
|
|
|
group_channels << "/private-messages/group/#{group.name.downcase}"
|
|
|
|
group_channels << "#{group_channels.first}/archive" if group_archive
|
|
|
|
group_channels.each { |channel| channels[channel] = group_user_ids }
|
|
|
|
end
|
|
|
|
|
2018-03-06 01:38:43 -05:00
|
|
|
message = {
|
|
|
|
topic_id: topic.id
|
|
|
|
}
|
|
|
|
|
2018-09-03 22:16:21 -04:00
|
|
|
channels.each do |channel, ids|
|
2018-03-06 01:38:43 -05:00
|
|
|
MessageBus.publish(
|
|
|
|
channel,
|
|
|
|
message.as_json,
|
2018-09-03 22:16:21 -04:00
|
|
|
user_ids: ids
|
2018-03-06 01:38:43 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2013-05-21 02:39:51 -04:00
|
|
|
end
|