0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/lib/builder.rb

316 Zeilen
11 KiB
Ruby

2017-09-23 04:34:07 +02:00
class CustomWizard::Builder
2017-10-05 02:36:46 +02:00
2017-10-22 05:37:58 +02:00
attr_accessor :wizard, :updater, :submissions
2017-10-13 15:02:34 +02:00
def initialize(user, wizard_id)
data = PluginStore.get('custom_wizard', wizard_id)
2017-10-22 05:37:58 +02:00
return if data.blank?
2017-11-01 05:21:14 +01:00
@steps = data['steps']
2017-10-15 05:58:22 +02:00
@wizard = CustomWizard::Wizard.new(user,
2017-10-13 15:02:34 +02:00
id: wizard_id,
save_submissions: data['save_submissions'],
multiple_submissions: data['multiple_submissions'],
2017-10-17 09:18:53 +02:00
background: data["background"],
2017-11-01 05:21:14 +01:00
name: data["name"],
after_time: data["after_time"],
after_signup: data["after_signup"],
required: data["required"]
2017-10-13 15:02:34 +02:00
)
2017-10-22 05:37:58 +02:00
@submissions = Array.wrap(PluginStore.get("#{wizard_id}_submissions", user.id))
2017-10-05 02:36:46 +02:00
end
def self.sorted_handlers
@sorted_handlers ||= []
end
def self.step_handlers
sorted_handlers.map { |h| { wizard_id: h[:wizard_id], block: h[:block] } }
end
def self.add_step_handler(priority = 0, wizard_id, &block)
sorted_handlers << { priority: priority, wizard_id: wizard_id, block: block }
@sorted_handlers.sort_by! { |h| -h[:priority] }
2017-09-23 04:34:07 +02:00
end
2017-11-24 05:32:15 +01:00
USER_FIELDS = ['name', 'username', 'email', 'date_of_birth', 'title', 'locale']
PROFILE_FIELDS = ['location', 'website', 'bio_raw', 'profile_background', 'card_background']
def self.build_post(template, user, data)
post = template.gsub(/u\{(.*?)\}/) do |match|
result = ''
result = user.send($1) if USER_FIELDS.include?($1)
result = user.user_profile.send($1) if PROFILE_FIELDS.include?($1)
2017-11-24 05:32:15 +01:00
result
end
post.gsub!(/w\{(.*?)\}/) { |match| data[$1.to_sym] }
end
2017-09-23 04:34:07 +02:00
def build
2017-11-22 07:13:27 +01:00
unless (@wizard.completed? && !@wizard.multiple_submissions) || !@steps
2017-11-01 05:21:14 +01:00
@steps.each do |s|
2017-10-13 15:02:34 +02:00
@wizard.append_step(s['id']) do |step|
step.title = s['title'] if s['title']
step.description = s['description'] if s['description']
step.banner = s['banner'] if s['banner']
step.key = s['key'] if s['key']
if s['fields'] && s['fields'].length
s['fields'].each do |f|
params = {
id: f['id'],
type: f['type'],
required: f['required']
}
params[:label] = f['label'] if f['label']
params[:description] = f['description'] if f['description']
params[:key] = f['key'] if f['key']
2017-11-02 05:15:30 +01:00
if @submissions.last && @wizard.unfinished?
2017-10-17 15:17:53 +02:00
submission = @submissions.last
params[:value] = submission[f['id']] if submission[f['id']]
2017-10-13 15:02:34 +02:00
end
2017-11-07 04:14:27 +01:00
if s['actions'] && s['actions'].any?
profile_actions = s['actions'].select { |a| a['type'] === 'update_profile' }
if profile_actions.any?
profile_actions.each do |action|
if update = action['profile_updates'].select { |u| u['key'] === f['id'] }.first
attribute = update['value']
if UserProfile.column_names.include? attribute
params[:value] = UserProfile.find_by(user_id: @wizard.user.id).send(attribute)
elsif User.column_names.include? attribute
params[:value] = User.find(@wizard.user.id).send(attribute)
end
end
end
end
end
2017-10-13 15:02:34 +02:00
field = step.add_field(params)
if f['type'] === 'dropdown'
2017-11-09 03:50:48 +01:00
field.dropdown_none = f['dropdown_none'] if f['dropdown_none']
2017-10-13 15:02:34 +02:00
if f['choices'] && f['choices'].length > 0
f['choices'].each do |c|
field.add_choice(c['value'], label: c['label'])
end
elsif f['choices_key'] && f['choices_key'].length > 0
choices = I18n.t(f['choices_key'])
if choices.is_a?(Hash)
choices.each do |k, v|
field.add_choice(k, label: v)
end
end
elsif f['choices_preset'] && f['choices_preset'].length > 0
objects = []
if f['choices_preset'] === 'categories'
objects = Site.new(Guardian.new(@wizard.user)).categories
end
if f['choices_filters'] && f['choices_filters'].length > 0
f['choices_filters'].each do |f|
2017-11-08 09:52:50 +01:00
objects.reject! do |o|
prop = f['key']
if prop.include? 'custom_fields'
o.custom_fields[prop.split('.')[1]].to_s != f['value'].to_s
else
o[prop].to_s != f['value'].to_s
end
end
2017-10-13 15:02:34 +02:00
end
end
if objects.length > 0
objects.each do |o|
field.add_choice(o.id, label: o.name)
end
end
end
end
2017-09-23 04:34:07 +02:00
end
end
2017-10-13 15:02:34 +02:00
step.on_update do |updater|
@updater = updater
user = @wizard.user
if s['fields'] && s['fields'].length
s['fields'].each do |f|
value = updater.fields[f['id']]
2017-10-13 15:02:34 +02:00
min_length = f['min_length']
if min_length && value.is_a?(String) && value.length < min_length.to_i
label = f['label'] || I18n.t("#{f['key']}.label")
updater.errors.add(f['id'].to_s, I18n.t('wizard.field.too_short', label: label, min: min_length.to_i))
end
end
2017-10-05 02:36:46 +02:00
end
2017-10-13 15:02:34 +02:00
next if updater.errors.any?
2017-10-05 02:36:46 +02:00
2017-10-13 15:02:34 +02:00
CustomWizard::Builder.step_handlers.each do |handler|
if handler[:wizard_id] == @wizard.id
handler[:block].call(self)
end
2017-10-05 02:36:46 +02:00
end
2017-10-13 15:02:34 +02:00
next if updater.errors.any?
step_input = updater.fields.to_h
data = step_input
final_step = updater.step.next.nil?
2017-11-01 05:21:14 +01:00
## if the wizard has data from the previous steps make that accessible to the actions.
if @submissions && @submissions.last && !@submissions.last.key?("submitted_at")
submission = @submissions.last
data = submission.merge(data)
2017-11-01 05:21:14 +01:00
end
2017-10-30 07:24:51 +01:00
2017-10-13 15:02:34 +02:00
if s['actions'] && s['actions'].length
s['actions'].each do |a|
2017-10-30 07:24:51 +01:00
if a['type'] === 'create_topic' && data
title = data[a['title']]
2017-11-24 05:32:15 +01:00
if a['post_builder']
2017-11-24 07:03:39 +01:00
post = CustomWizard::Builder.build_post(a['post_template'], user, data)
2017-11-24 05:32:15 +01:00
else
post = data[a['post']]
end
2017-10-17 09:18:53 +02:00
2017-10-17 15:17:53 +02:00
if title
2017-10-17 09:18:53 +02:00
params = {
title: title,
raw: post,
skip_validations: true
}
params[:category] = a['category_id'] if a['category_id']
2017-10-17 15:17:53 +02:00
topic_custom_fields = {}
if a['add_fields']
a['add_fields'].each do |f|
2017-10-30 07:24:51 +01:00
value = data[f['value']]
2017-10-17 15:17:53 +02:00
key = f['key']
2017-11-23 00:19:55 +01:00
if key && key.include?('custom_fields')
2017-10-17 15:17:53 +02:00
keyArr = key.split('.')
if keyArr.length === 3
custom_key = keyArr.last
type = keyArr.first
if type === 'topic'
topic_custom_fields[custom_key] = value
elsif type === 'post'
params[:custom_fields] ||= {}
params[:custom_fields][custom_key.to_sym] = value
end
end
else
params[key.to_sym] = value
end
end
end
2017-10-17 09:18:53 +02:00
creator = PostCreator.new(user, params)
post = creator.create
if creator.errors.present?
updater.errors.add(:create_topic, creator.errors.full_messages.join(" "))
else
2017-10-17 15:17:53 +02:00
if topic_custom_fields.present?
topic_custom_fields.each do |k, v|
post.topic.custom_fields[k] = v
end
post.topic.save_custom_fields(true)
end
2017-11-01 05:21:14 +01:00
data['redirect_to'] = post.topic.url
2017-10-17 09:18:53 +02:00
end
2017-10-13 15:02:34 +02:00
end
end
2017-10-05 02:36:46 +02:00
2017-10-30 07:24:51 +01:00
if a['type'] === 'send_message' && data
title = data[a['title']]
2017-11-24 05:32:15 +01:00
if a['post_builder']
2017-11-24 07:03:39 +01:00
post = CustomWizard::Builder.build_post(a['post_template'], user, data)
2017-11-24 05:32:15 +01:00
else
post = data[a['post']]
end
2017-10-17 09:18:53 +02:00
if title && post
creator = PostCreator.new(user,
title: title,
raw: post,
archetype: Archetype.private_message,
target_usernames: a['username'])
post = creator.create
if creator.errors.present?
updater.errors.add(:send_message, creator.errors.full_messages.join(" "))
else
2017-11-01 05:21:14 +01:00
data['redirect_to'] = post.topic.url
2017-10-17 09:18:53 +02:00
end
end
end
2017-10-30 07:24:51 +01:00
if a['type'] === 'update_profile' && a['profile_updates'].length && data
2017-10-17 15:17:53 +02:00
user_updater = UserUpdater.new(user, user)
attributes = {}
a['profile_updates'].each do |pu|
2017-11-02 04:54:40 +01:00
attributes[pu['value'].to_sym] = data[pu['key']]
2017-10-13 15:02:34 +02:00
end
2017-10-17 15:17:53 +02:00
user_updater.update(attributes) if attributes.present?
2017-10-13 15:02:34 +02:00
end
2017-10-05 02:36:46 +02:00
end
2017-10-13 15:02:34 +02:00
end
2017-10-05 02:36:46 +02:00
2017-11-01 05:21:14 +01:00
if @wizard.save_submissions && updater.errors.empty?
2017-10-17 15:17:53 +02:00
if step_input
step_input.each do |key, value|
2017-11-01 05:21:14 +01:00
data[key] = value
2017-10-13 15:02:34 +02:00
end
2017-10-05 02:36:46 +02:00
end
2017-11-01 10:50:03 +01:00
if final_step
data['submitted_at'] = Time.now.iso8601
end
2017-11-01 05:21:14 +01:00
if data.present?
@submissions.pop(1) if @wizard.unfinished?
@submissions.push(data)
PluginStore.set("#{@wizard.id}_submissions", @wizard.user.id, @submissions)
end
end
# Ensure there is no submission left over after the user has completed a wizard with save_submissions off
2017-11-01 10:50:03 +01:00
if !@wizard.save_submissions && final_step
2017-11-01 05:21:14 +01:00
PluginStore.remove("#{@wizard.id}_submissions", @wizard.user.id)
end
2017-11-01 10:50:03 +01:00
if @wizard.after_time && final_step
2017-11-01 05:21:14 +01:00
@wizard.user.custom_fields.delete('redirect_to_wizard');
@wizard.user.save_custom_fields(true)
2017-10-05 02:36:46 +02:00
end
2017-11-01 10:50:03 +01:00
if updater.errors.empty?
# If the user will be redirected to a new wizard send them there straight away
user_redirect = user.custom_fields['redirect_to_wizard']
redirect_to = user_redirect ? "/w/#{user_redirect}" : data['redirect_to']
updater.result = { redirect_to: redirect_to } if redirect_to
end
2017-10-05 02:36:46 +02:00
end
2017-09-23 04:34:07 +02:00
end
end
end
@wizard
end
end