mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:11:38 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
62 lines
1.8 KiB
Ruby
62 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class UserArchivedMessage < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :topic
|
|
|
|
def self.move_to_inbox!(user_id, topic)
|
|
topic_id = topic.id
|
|
|
|
return if (TopicUser.where(
|
|
user_id: user_id,
|
|
topic_id: topic_id,
|
|
notification_level: TopicUser.notification_levels[:muted]
|
|
).exists?)
|
|
|
|
UserArchivedMessage.where(user_id: user_id, topic_id: topic_id).destroy_all
|
|
trigger(:move_to_inbox, user_id, topic_id)
|
|
MessageBus.publish("/topic/#{topic_id}", { type: "move_to_inbox" }, user_ids: [user_id])
|
|
publish_topic_tracking_state(topic, user_id)
|
|
end
|
|
|
|
def self.archive!(user_id, topic)
|
|
topic_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)
|
|
trigger(:archive_message, user_id, topic_id)
|
|
MessageBus.publish("/topic/#{topic_id}", { type: "archived" }, user_ids: [user_id])
|
|
publish_topic_tracking_state(topic, user_id)
|
|
end
|
|
|
|
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
|
|
DiscourseEvent.trigger(event, user: user, topic: topic)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def self.publish_topic_tracking_state(topic, user_id)
|
|
TopicTrackingState.publish_private_message(
|
|
topic, archive_user_id: user_id
|
|
)
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_archived_messages
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer not null
|
|
# topic_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_archived_messages_on_user_id_and_topic_id (user_id,topic_id) UNIQUE
|
|
#
|