2015-12-23 08:09:17 +08:00
|
|
|
class UserArchivedMessage < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :topic
|
2016-02-07 20:39:07 +08:00
|
|
|
|
|
|
|
def self.move_to_inbox!(user_id, topic_id)
|
2016-02-15 07:56:39 +08:00
|
|
|
return if (TopicUser.where(
|
|
|
|
user_id: user_id,
|
|
|
|
topic_id: topic_id,
|
|
|
|
notification_level: TopicUser.notification_levels[:muted]
|
|
|
|
).exists?)
|
|
|
|
|
2016-02-07 20:39:07 +08:00
|
|
|
UserArchivedMessage.where(user_id: user_id, topic_id: topic_id).destroy_all
|
2017-02-28 22:56:41 +08:00
|
|
|
trigger(:move_to_inbox, user_id, topic_id)
|
2017-07-28 09:20:09 +08:00
|
|
|
MessageBus.publish("/topic/#{topic_id}", { type: "move_to_inbox" }, user_ids: [user_id])
|
2016-02-07 20:39:07 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.archive!(user_id, topic_id)
|
|
|
|
UserArchivedMessage.where(user_id: user_id, topic_id: topic_id).destroy_all
|
|
|
|
UserArchivedMessage.create!(user_id: user_id, topic_id: topic_id)
|
2017-02-28 22:56:41 +08:00
|
|
|
trigger(:archive_message, user_id, topic_id)
|
2017-07-28 09:20:09 +08:00
|
|
|
MessageBus.publish("/topic/#{topic_id}", { type: "archived" }, user_ids: [user_id])
|
2016-02-07 20:39:07 +08:00
|
|
|
end
|
2017-02-28 22:56:41 +08:00
|
|
|
|
|
|
|
def self.trigger(event, user_id, topic_id)
|
|
|
|
user = User.find_by(id: user_id)
|
|
|
|
topic = Topic.find_by(id: topic_id)
|
|
|
|
if user && topic
|
2017-07-28 09:20:09 +08:00
|
|
|
DiscourseEvent.trigger(event, user: user, topic: topic)
|
2017-02-28 22:56:41 +08:00
|
|
|
end
|
|
|
|
end
|
2015-12-23 08:09:17 +08:00
|
|
|
end
|
2016-01-11 14:30:56 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_archived_messages
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# topic_id :integer not null
|
2018-02-20 14:28:58 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2016-01-11 14:30:56 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_user_archived_messages_on_user_id_and_topic_id (user_id,topic_id) UNIQUE
|
|
|
|
#
|