1
0
Fork 0
discourse-custom-wizard-unl.../lib/builder.rb

437 Zeilen
14 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']
@wizard = CustomWizard::Wizard.new(user, data)
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
2018-08-19 02:34:20 +02:00
def self.sorted_field_validators
@sorted_field_validators ||= []
end
def self.field_validators
sorted_field_validators.map { |h| { type: h[:type], block: h[:block] } }
end
def self.add_field_validator(priority = 0, type, &block)
sorted_field_validators << { priority: priority, type: type, block: block }
@sorted_field_validators.sort_by! { |h| -h[:priority] }
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.fill_placeholders(string, user, data)
result = string.gsub(/u\{(.*?)\}/) do |match|
2017-11-24 05:32:15 +01:00
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
2019-01-23 00:07:29 +01:00
result.gsub(/w\{(.*?)\}/) { |match| data[$1.to_sym] }
2017-11-24 05:32:15 +01:00
end
2019-01-14 03:53:53 +01:00
def build(build_opts = {})
unless (@wizard.completed? && !@wizard.multiple_submissions && !@wizard.user.admin) || !@steps || !@wizard.permitted?
2019-01-14 03:53:53 +01:00
reset_submissions if build_opts[:reset]
@steps.each do |step_template|
@wizard.append_step(step_template['id']) do |step|
step.title = step_template['title'] if step_template['title']
step.description = step_template['description'] if step_template['description']
step.banner = step_template['banner'] if step_template['banner']
step.key = step_template['key'] if step_template['key']
if step_template['fields'] && step_template['fields'].length
step_template['fields'].each do |field_template|
2019-01-14 03:53:53 +01:00
append_field(step, step_template, field_template, build_opts)
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 step_template['fields'] && step_template['fields'].length
step_template['fields'].each do |field|
2018-08-19 02:34:20 +02:00
validate_field(field, updater, step_template) if field['type'] != 'text-only'
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
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?
2018-05-20 03:57:34 +02:00
data = updater.fields.to_h
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
if step_template['actions'] && step_template['actions'].length && data
step_template['actions'].each do |action|
2018-05-20 03:57:34 +02:00
self.send(action['type'].to_sym, user, action, data)
end
end
2018-05-20 03:57:34 +02:00
final_step = updater.step.next.nil?
2017-11-24 05:32:15 +01:00
2018-05-20 03:57:34 +02:00
if @wizard.save_submissions && updater.errors.empty?
save_submissions(data, final_step)
elsif final_step
PluginStore.remove("#{@wizard.id}_submissions", @wizard.user.id)
end
2017-10-17 09:18:53 +02:00
2018-05-24 07:34:58 +02:00
if final_step && @wizard.id === @wizard.user.custom_fields['redirect_to_wizard']
2018-05-20 03:57:34 +02:00
@wizard.user.custom_fields.delete('redirect_to_wizard');
@wizard.user.save_custom_fields(true)
end
2018-05-20 03:57:34 +02:00
if updater.errors.empty?
2018-05-24 07:34:58 +02:00
redirect_to = data['redirect_to']
2018-05-20 03:57:34 +02:00
updater.result = { redirect_to: redirect_to } if redirect_to
end
end
end
end
end
2017-10-17 15:17:53 +02:00
2018-05-20 03:57:34 +02:00
@wizard
end
2017-10-17 15:17:53 +02:00
2019-01-14 03:53:53 +01:00
def append_field(step, step_template, field_template, build_opts)
params = {
id: field_template['id'],
type: field_template['type'],
required: field_template['required']
}
params[:label] = field_template['label'] if field_template['label']
params[:description] = field_template['description'] if field_template['description']
params[:image] = field_template['image'] if field_template['image']
params[:key] = field_template['key'] if field_template['key']
## Load previously submitted values
2019-01-14 03:53:53 +01:00
if !build_opts[:reset] && @submissions.last && !@submissions.last.key?("submitted_at")
submission = @submissions.last
params[:value] = submission[field_template['id']] if submission[field_template['id']]
end
## If a field updates a profile field, load the current value
if step_template['actions'] && step_template['actions'].any?
profile_actions = step_template['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'] === field_template['id'] }.first
params[:value] = prefill_profile_field(update)
end
end
end
end
if field_template['type'] === 'checkbox'
params[:value] = standardise_boolean(params[:value])
end
2018-07-04 05:48:03 +02:00
field = step.add_field(params)
if field_template['type'] === 'dropdown'
build_dropdown_list(field, field_template)
end
end
def prefill_profile_field(update)
attribute = update['value']
custom_field = update['value_custom']
2018-05-24 07:34:58 +02:00
user_field = update['user_field']
2018-05-24 07:34:58 +02:00
if user_field || custom_field
UserCustomField.where(user_id: @wizard.user.id, name: user_field || custom_field).pluck(:value)
elsif UserProfile.column_names.include? attribute
UserProfile.find_by(user_id: @wizard.user.id).send(attribute)
elsif User.column_names.include? attribute
User.find(@wizard.user.id).send(attribute)
end
end
def build_dropdown_list(field, field_template)
field.dropdown_none = field_template['dropdown_none'] if field_template['dropdown_none']
if field_template['choices'] && field_template['choices'].length > 0
field_template['choices'].each do |c|
field.add_choice(c['key'], label: c['value'])
end
elsif field_template['choices_key'] && field_template['choices_key'].length > 0
choices = I18n.t(field_template['choices_key'])
if choices.is_a?(Hash)
choices.each { |k, v| field.add_choice(k, label: v) }
end
elsif field_template['choices_preset'] && field_template['choices_preset'].length > 0
objects = []
if field_template['choices_preset'] === 'categories'
objects = Site.new(Guardian.new(@wizard.user)).categories
end
if field_template['choices_filters'] && field_template['choices_filters'].length > 0
field_template['choices_filters'].each do |f|
objects.reject! do |o|
if f['key'].include? 'custom_fields'
o.custom_fields[f['key'].split('.')[1]].to_s != f['value'].to_s
else
o[prop].to_s != f['value'].to_s
end
end
end
end
if objects.length > 0
objects.each do |o|
field.add_choice(o.id, label: o.name)
end
end
end
end
2018-08-19 02:34:20 +02:00
def validate_field(field, updater, step_template)
2018-05-20 03:57:34 +02:00
value = updater.fields[field['id']]
min_length = field['min_length']
2017-10-17 09:18:53 +02:00
if min_length && value.is_a?(String) && value.strip.length < min_length.to_i
2018-05-20 03:57:34 +02:00
label = field['label'] || I18n.t("#{field['key']}.label")
updater.errors.add(field['id'].to_s, I18n.t('wizard.field.too_short', label: label, min: min_length.to_i))
end
## ensure all checkboxes are booleans
if field['type'] === 'checkbox'
updater.fields[field['id']] = standardise_boolean(value)
end
2018-08-19 02:34:20 +02:00
CustomWizard::Builder.field_validators.each do |validator|
if field['type'] === validator[:type]
validator[:block].call(field, updater, step_template)
end
end
2018-05-20 03:57:34 +02:00
end
2017-10-17 09:18:53 +02:00
def standardise_boolean(value)
!!HasCustomFields::Helpers::CUSTOM_FIELD_TRUE.include?(value)
end
2018-05-20 03:57:34 +02:00
def create_topic(user, action, data)
2019-01-22 03:45:49 +01:00
if action['custom_title_enabled']
title = CustomWizard::Builder.fill_placeholders(action['custom_title'], user, data)
2018-05-20 03:57:34 +02:00
else
title = data[action['title']]
end
2017-11-01 05:21:14 +01:00
2018-05-20 03:57:34 +02:00
if action['post_builder']
post = CustomWizard::Builder.fill_placeholders(action['post_template'], user, data)
2018-05-20 03:57:34 +02:00
else
post = data[action['post']]
end
2017-10-05 02:36:46 +02:00
2018-05-20 03:57:34 +02:00
if title
params = {
title: title,
raw: post,
skip_validations: true
}
if action['custom_category_enabled'] &&
!action['custom_category_wizard_field'] &&
action['custom_category_user_field_key']
if action['custom_category_user_field_key'].include?('custom_fields')
field = action['custom_category_user_field_key'].split('.').last
category_id = user.custom_fields[field]
else
category_id = user.send(action['custom_category_user_field_key'])
end
else
category_id = action['category_id']
end
2017-11-24 05:32:15 +01:00
2018-05-20 03:57:34 +02:00
params[:category] = category_id
2017-10-17 09:18:53 +02:00
2018-05-20 03:57:34 +02:00
topic_custom_fields = {}
2017-10-17 09:18:53 +02:00
2018-05-20 03:57:34 +02:00
if action['add_fields']
action['add_fields'].each do |field|
value = field['value_custom'].present? ? field['value_custom'] : data[field['value']]
2018-05-20 03:57:34 +02:00
key = field['key']
2017-10-17 09:18:53 +02:00
2018-06-05 04:54:05 +02:00
if key && (value.present? || value === false)
if key.include?('custom_fields')
keyArr = key.split('.')
2018-05-20 03:57:34 +02:00
if keyArr.length === 3
custom_key = keyArr.last
type = keyArr.first
2018-05-20 03:57:34 +02:00
if type === 'topic'
topic_custom_fields[custom_key] = value
elsif type === 'post'
params[:custom_fields] ||= {}
params[:custom_fields][custom_key.to_sym] = value
end
2018-05-20 03:57:34 +02:00
end
else
params[key.to_sym] = value
2018-05-20 03:57:34 +02:00
end
end
end
end
2017-10-17 09:18:53 +02:00
2018-05-20 03:57:34 +02:00
creator = PostCreator.new(user, params)
post = creator.create
2018-02-04 08:52:53 +01:00
2018-05-20 03:57:34 +02:00
if creator.errors.present?
updater.errors.add(:create_topic, creator.errors.full_messages.join(" "))
else
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
2018-02-04 08:52:53 +01:00
2018-09-18 03:56:42 +02:00
unless action['skip_redirect']
data['redirect_to'] = post.topic.url
end
2018-05-20 03:57:34 +02:00
end
end
end
2018-02-04 08:52:53 +01:00
2018-05-20 03:57:34 +02:00
def send_message(user, action, data)
title = data[action['title']]
2018-02-04 08:52:53 +01:00
2018-05-20 03:57:34 +02:00
if action['post_builder']
post = CustomWizard::Builder.fill_placeholders(action['post_template'], user, data)
2018-05-20 03:57:34 +02:00
else
post = data[action['post']]
end
2017-10-05 02:36:46 +02:00
2018-05-20 03:57:34 +02:00
if title && post
creator = PostCreator.new(user,
title: title,
raw: post,
archetype: Archetype.private_message,
target_usernames: action['username']
)
2017-10-05 02:36:46 +02:00
2018-05-20 03:57:34 +02:00
post = creator.create
2017-11-01 10:50:03 +01:00
2018-05-20 03:57:34 +02:00
if creator.errors.present?
updater.errors.add(:send_message, creator.errors.full_messages.join(" "))
else
2018-09-18 03:56:42 +02:00
unless action['skip_redirect']
data['redirect_to'] = post.topic.url
end
2018-05-20 03:57:34 +02:00
end
end
end
2017-11-01 05:21:14 +01:00
2018-05-20 03:57:34 +02:00
def update_profile(user, action, data)
return unless action['profile_updates'].length
2017-11-01 05:21:14 +01:00
2018-05-20 03:57:34 +02:00
attributes = {}
custom_fields = {}
2017-11-01 10:50:03 +01:00
2018-05-20 03:57:34 +02:00
action['profile_updates'].each do |pu|
value = pu['value']
custom_field = pu['value_custom']
2018-05-24 07:34:58 +02:00
user_field = pu['user_field']
2018-05-20 03:57:34 +02:00
key = pu['key']
2018-05-24 07:34:58 +02:00
if user_field || custom_field
custom_fields[user_field || custom_field] = data[key]
2018-05-20 03:57:34 +02:00
else
attributes[value.to_sym] = data[key]
2017-09-23 04:34:07 +02:00
end
end
2018-05-20 03:57:34 +02:00
if custom_fields.present?
attributes[:custom_fields] = custom_fields
2018-05-20 03:57:34 +02:00
end
if attributes.present?
user_updater = UserUpdater.new(user, user)
user_updater.update(attributes)
end
end
2019-06-03 09:09:24 +02:00
def send_to_api(user, action, data)
api_body = nil
if action['api_body'] != ""
begin
api_body_parsed = JSON.parse(action['api_body'])
2019-06-07 01:57:34 +02:00
rescue JSON::ParserError
raise Discourse::InvalidParameters, "Invalid API body definition: #{action['api_body']} for #{action['title']}"
end
api_body = CustomWizard::Builder.fill_placeholders(JSON.generate(api_body_parsed), user, data)
end
2019-06-03 09:09:24 +02:00
result = CustomWizard::Api::Endpoint.request(action['api'], action['api_endpoint'], api_body)
2019-06-07 01:57:34 +02:00
if error = result['error'] || (result[0] && result[0]['error'])
error = error['message'] || error
updater.errors.add(:send_to_api, error)
2019-06-03 09:09:24 +02:00
else
## add validation callback
end
end
2018-05-20 03:57:34 +02:00
def save_submissions(data, final_step)
if final_step
data['submitted_at'] = Time.now.iso8601
end
if data.present?
@submissions.pop(1) if @wizard.unfinished?
@submissions.push(data)
PluginStore.set("#{@wizard.id}_submissions", @wizard.user.id, @submissions)
end
2017-09-23 04:34:07 +02:00
end
2019-01-14 03:53:53 +01:00
def reset_submissions
@submissions.pop(1) if @wizard.unfinished?
PluginStore.set("#{@wizard.id}_submissions", @wizard.user.id, @submissions)
@wizard.reset
end
2017-09-23 04:34:07 +02:00
end