DEV: Support phpBB 3.3 imports (#17641)

* handle polls with duplicate items
* handle polls with incorrect poll_option_total values
* handle group IDs in personal messages
* support for version 3.3
This commit is contained in:
communiteq
2022-07-25 22:07:03 +02:00
committed by GitHub
parent 994ca8f6de
commit 603f36ca4a
5 changed files with 29 additions and 11 deletions

View File

@ -73,19 +73,37 @@ module ImportScripts::PhpBB3
def get_recipient_user_ids(to_address)
return [] if to_address.blank?
# to_address looks like this: "u_91:u_1234:u_200"
# The "u_" prefix is discarded and the rest is a user_id.
# to_address looks like this: "u_91:u_1234:g_200"
# If there is a "u_" prefix, the prefix is discarded and the rest is a user_id
user_ids = to_address.split(':')
user_ids.uniq!
user_ids.map! { |u| u[2..-1].to_i }
user_ids.map! { |u| u[2..-1].to_i if u[0..1] == 'u_' }.compact
end
def get_recipient_group_ids(to_address)
return [] if to_address.blank?
# to_address looks like this: "u_91:u_1234:g_200"
# If there is a "g_" prefix, the prefix is discarded and the rest is a group_id
group_ids = to_address.split(':')
group_ids.uniq!
group_ids.map! { |g| g[2..-1].to_i if g[0..1] == 'g_' }.compact
end
def get_recipient_usernames(row)
import_user_ids = get_recipient_user_ids(row[:to_address])
import_user_ids.map! do |import_user_id|
usernames = import_user_ids.map do |import_user_id|
@lookup.find_user_by_import_id(@settings.prefix(import_user_id)).try(:username)
end.compact
import_group_ids = get_recipient_group_ids(row[:to_address])
import_group_ids.each do |import_group_id|
group = @lookup.find_group_by_import_id(@settings.prefix(import_group_id))
next unless group
usernames = usernames + group.users.pluck(:username)
end
usernames.uniq
end
def get_topic_title(row)

View File

@ -64,7 +64,7 @@ module ImportScripts::PhpBB3
arguments << "close=#{poll_data.close_time.iso8601}" if poll_data.close_time
if poll_data.max_options > 1
arguments << "type=multiple" << "max=#{poll_data.max_options}"
arguments << "type=multiple" << "max=#{[poll_data.max_options, poll_data.options.count].min}"
else
arguments << "type=regular"
end