mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
DEV: Include post and topic attributes in imported quotes (#27851)
Currently, quotes imported via generic bulk import script do not include references to the quoted post. This change includes both topic and post attributes in a quote if the placeholder metadata includes a `post_id`
This commit is contained in:
parent
7f0e6e9592
commit
d896f5cb70
@ -859,13 +859,22 @@ class BulkImport::Generic < BulkImport::Base
|
||||
name = user_full_name_from_id(user_id)
|
||||
end
|
||||
|
||||
if quote["post_id"]
|
||||
topic_id = topic_id_from_imported_post_id(quote["post_id"])
|
||||
post_number = post_number_from_imported_id(quote["post_id"])
|
||||
end
|
||||
|
||||
bbcode =
|
||||
if username.present? && name.present?
|
||||
%Q|[quote="#{name}, username:#{username}"]|
|
||||
elsif username.present?
|
||||
%Q|[quote="#{username}"]|
|
||||
else
|
||||
if username.blank? && name.blank?
|
||||
"[quote]"
|
||||
else
|
||||
bbcode_parts = []
|
||||
bbcode_parts << name.presence || username
|
||||
bbcode_parts << "post:#{post_number}" if post_number.present?
|
||||
bbcode_parts << "topic:#{topic_id}" if topic_id.present?
|
||||
bbcode_parts << "username:#{username}" if username.present? && name.present?
|
||||
|
||||
%Q|[quote="#{bbcode_parts.join(", ")}"]|
|
||||
end
|
||||
|
||||
raw.gsub!(quote["placeholder"], bbcode)
|
||||
|
Loading…
Reference in New Issue
Block a user