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

269 Zeilen
5,6 KiB
Ruby

2021-03-11 07:30:15 +01:00
# frozen_string_literal: true
2020-03-30 08:16:03 +02:00
class CustomWizard::Mapper
attr_accessor :inputs, :data, :user
2021-03-11 07:30:15 +01:00
USER_FIELDS = [
2021-03-11 07:30:15 +01:00
'name',
'username',
'date_of_birth',
'title',
'locale',
'trust_level',
'email'
]
USER_OPTION_FIELDS = [
2021-03-11 07:30:15 +01:00
'email_level',
'email_messages_level',
'email_digests'
]
PROFILE_FIELDS = [
'location',
'website',
'bio_raw'
]
2021-03-11 07:30:15 +01:00
2020-04-07 15:33:11 +02:00
def self.user_fields
USER_FIELDS + USER_OPTION_FIELDS + PROFILE_FIELDS
2020-04-07 15:33:11 +02:00
end
2021-03-11 07:30:15 +01:00
2020-04-01 07:03:26 +02:00
OPERATORS = {
2020-04-01 14:16:26 +02:00
equal: '==',
2020-04-01 07:03:26 +02:00
greater: '>',
less: '<',
greater_or_equal: '>=',
2020-04-06 10:36:38 +02:00
less_or_equal: '<=',
2020-04-30 11:17:37 +02:00
regex: '=~',
2020-05-01 11:12:58 +02:00
is: {
present: "present?",
true: "==",
false: "=="
}
2020-04-01 07:03:26 +02:00
}
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
def initialize(params)
@inputs = params[:inputs] || {}
@data = params[:data] || {}
@user = params[:user]
@opts = params[:opts] || {}
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
def perform
2020-03-30 08:16:03 +02:00
multiple = @opts[:multiple]
2020-04-06 10:36:38 +02:00
perform_result = multiple ? [] : nil
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
inputs.each do |input|
2020-04-06 10:36:38 +02:00
input_type = input['type']
pairs = input['pairs']
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
if (input_type === 'conditional' && validate_pairs(pairs)) || input_type === 'assignment'
output = input['output']
output_type = input['output_type']
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
result = build_result(map_field(output, output_type), input_type)
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
if multiple
2020-04-06 10:36:38 +02:00
perform_result.push(result)
2020-03-30 08:16:03 +02:00
else
2020-04-06 10:36:38 +02:00
perform_result = result
2020-03-30 08:16:03 +02:00
break
end
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
if input_type === 'validation'
result = build_result(validate_pairs(pairs), input_type)
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
if multiple
perform_result.push(result)
2020-03-30 08:16:03 +02:00
else
2020-04-06 10:36:38 +02:00
perform_result = result
break
end
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
if input_type === 'association'
result = build_result(map_pairs(pairs), input_type)
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
if multiple
perform_result.push(result)
else
perform_result = result
2020-03-30 08:16:03 +02:00
break
end
end
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
perform_result
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
def build_result(result, type)
2020-04-07 09:54:30 +02:00
if @opts[:with_type]
2020-04-06 10:36:38 +02:00
{
type: type,
result: result
}
else
result
end
2020-03-30 08:16:03 +02:00
end
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
def validate_pairs(pairs)
2020-04-23 04:52:25 +02:00
pairs.all? do |pair|
2020-04-07 09:54:30 +02:00
connector = pair['connector']
operator = map_operator(connector)
2020-04-30 11:17:37 +02:00
key = map_field(pair['key'], pair['key_type'])
value = cast_value(map_field(pair['value'], pair['value_type']), key, connector)
2020-04-01 07:03:26 +02:00
begin
validation_result(key, value, operator)
2020-04-01 14:16:26 +02:00
rescue NoMethodError
#
2020-04-01 07:03:26 +02:00
end
2020-03-30 08:16:03 +02:00
end
end
2021-03-11 07:30:15 +01:00
2020-04-30 11:17:37 +02:00
def cast_value(value, key, connector)
2020-04-07 13:53:00 +02:00
if connector == 'regex'
Regexp.new(value)
else
if key.is_a?(String)
value.to_s
elsif key.is_a?(Integer)
value.to_i
else
value
end
end
end
2021-03-11 07:30:15 +01:00
def validation_result(key, value, operator)
result = nil
2021-03-11 07:30:15 +01:00
if operator.is_a?(Hash) && (operator = operator[value.to_sym]).present?
if value == "present"
result = key.public_send(operator)
elsif ["true", "false"].include?(value)
result = key.public_send(operator, ActiveRecord::Type::Boolean.new.cast(value))
end
elsif [key, value, operator].all? { |i| !i.nil? }
result = key.public_send(operator, value)
else
result = false
end
2021-03-11 07:30:15 +01:00
if operator == '=~'
2020-11-03 01:24:20 +01:00
result.nil? ? false : true
2020-04-07 09:54:30 +02:00
else
result
end
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
def map_pairs(pairs)
result = []
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
pairs.each do |pair|
key = map_field(pair['key'], pair['key_type'])
value = map_field(pair['value'], pair['value_type'])
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
if key && value
result.push(
key: key,
value: value
)
end
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
result
end
2021-03-11 07:30:15 +01:00
2020-04-06 10:36:38 +02:00
def map_operator(connector)
2020-04-01 07:03:26 +02:00
OPERATORS[connector.to_sym] || '=='
2020-03-30 08:16:03 +02:00
end
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
def map_field(value, type)
2020-04-02 10:21:03 +02:00
method = "map_#{type}"
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
if self.respond_to?(method)
self.send(method, value)
else
value
end
end
2021-03-11 07:30:15 +01:00
2020-04-13 14:17:22 +02:00
def map_text(value)
interpolate(value)
end
2021-03-11 07:30:15 +01:00
2020-04-07 10:33:51 +02:00
def map_wizard_field(value)
2020-03-30 08:16:03 +02:00
data && !data.key?("submitted_at") && data[value]
end
2021-03-11 07:30:15 +01:00
def map_wizard_action(value)
data && !data.key?("submitted_at") && data[value]
end
2020-03-30 08:16:03 +02:00
2020-04-02 10:21:03 +02:00
def map_user_field(value)
if value.include?(User::USER_FIELD_PREFIX)
user.custom_fields[value]
2020-03-30 08:16:03 +02:00
elsif PROFILE_FIELDS.include?(value)
user.user_profile.send(value)
2020-03-30 08:16:03 +02:00
elsif USER_FIELDS.include?(value)
user.send(value)
elsif USER_OPTION_FIELDS.include?(value)
user.user_option.send(value)
else
nil
2020-03-30 08:16:03 +02:00
end
end
2021-03-11 07:30:15 +01:00
def map_user_field_options(value)
if value.include?(User::USER_FIELD_PREFIX)
if field = UserField.find_by(id: value.split('_').last)
field.user_field_options.map(&:value)
end
end
end
2021-03-11 07:30:15 +01:00
def interpolate(string, opts = { user: true, wizard: true, value: true, template: false })
2020-04-16 07:14:03 +02:00
return string if string.blank?
2021-03-11 07:30:15 +01:00
2020-04-16 07:14:03 +02:00
if opts[:user]
string.gsub!(/u\{(.*?)\}/) { |match| map_user_field($1) || '' }
2020-03-30 08:16:03 +02:00
end
2021-03-11 07:30:15 +01:00
2020-04-16 07:14:03 +02:00
if opts[:wizard]
string.gsub!(/w\{(.*?)\}/) { |match| recurse(data, [*$1.split('.')]) || '' }
2020-04-16 07:14:03 +02:00
end
2021-03-11 07:30:15 +01:00
2020-04-16 07:14:03 +02:00
if opts[:value]
string.gsub!(/v\{(.*?)\}/) do |match|
attrs = $1.split(':')
key = attrs.first
format = attrs.last if attrs.length > 1
result = ''
2021-03-11 07:30:15 +01:00
2020-04-30 11:17:53 +02:00
if key == 'time'
2020-04-16 07:14:03 +02:00
time_format = format.present? ? format : "%B %-d, %Y"
result = Time.now.strftime(time_format)
end
2020-03-30 08:16:03 +02:00
2020-04-16 07:14:03 +02:00
result
end
2020-03-30 08:16:03 +02:00
end
2021-03-11 07:30:15 +01:00
if opts[:template]
template = Liquid::Template.parse(string)
string = template.render(data)
end
2020-04-16 07:14:03 +02:00
string
2020-03-30 08:16:03 +02:00
end
2021-03-11 07:30:15 +01:00
2020-03-30 08:16:03 +02:00
def recurse(data, keys)
2020-07-22 03:39:30 +02:00
return nil if data.nil?
2020-03-30 08:16:03 +02:00
k = keys.shift
result = data[k]
keys.empty? ? result : self.recurse(result, keys)
end
end