mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
This reverts commit 20780a1eeed56b321daf18ee6bbfe681a51d1bf4. * SECURITY: re-adds accidentally reverted commit: 03d26cd6: ensure embed_url contains valid http(s) uri * when the merge commit e62a85cf was reverted, git chose the 2660c2e2 parent to land on instead of the 03d26cd6 parent (which contains security fixes)
55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupArchivedMessage < ActiveRecord::Base
|
|
belongs_to :group
|
|
belongs_to :topic
|
|
|
|
def self.move_to_inbox!(group_id, topic)
|
|
topic_id = topic.id
|
|
GroupArchivedMessage.where(group_id: group_id, topic_id: topic_id).destroy_all
|
|
trigger(:move_to_inbox, group_id, topic_id)
|
|
MessageBus.publish("/topic/#{topic_id}", { type: "move_to_inbox" }, group_ids: [group_id])
|
|
publish_topic_tracking_state(topic)
|
|
end
|
|
|
|
def self.archive!(group_id, topic)
|
|
topic_id = topic.id
|
|
GroupArchivedMessage.where(group_id: group_id, topic_id: topic_id).destroy_all
|
|
GroupArchivedMessage.create!(group_id: group_id, topic_id: topic_id)
|
|
trigger(:archive_message, group_id, topic_id)
|
|
MessageBus.publish("/topic/#{topic_id}", { type: "archived" }, group_ids: [group_id])
|
|
publish_topic_tracking_state(topic)
|
|
end
|
|
|
|
def self.trigger(event, group_id, topic_id)
|
|
group = Group.find_by(id: group_id)
|
|
topic = Topic.find_by(id: topic_id)
|
|
if group && topic
|
|
DiscourseEvent.trigger(event, group: group, topic: topic)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def self.publish_topic_tracking_state(topic)
|
|
TopicTrackingState.publish_private_message(
|
|
topic, group_archive: true
|
|
)
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: group_archived_messages
|
|
#
|
|
# id :integer not null, primary key
|
|
# group_id :integer not null
|
|
# topic_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_group_archived_messages_on_group_id_and_topic_id (group_id,topic_id) UNIQUE
|
|
#
|