2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2017-10-15 05:58:22 +02:00
|
|
|
class CustomWizard::StepUpdater
|
|
|
|
include ActiveModel::Model
|
|
|
|
|
2021-04-20 19:58:19 +02:00
|
|
|
attr_accessor :refresh_required, :result
|
|
|
|
attr_reader :step, :submission
|
2017-10-15 05:58:22 +02:00
|
|
|
|
2020-11-26 04:05:50 +01:00
|
|
|
def initialize(current_user, wizard, step, submission)
|
2017-10-15 05:58:22 +02:00
|
|
|
@current_user = current_user
|
|
|
|
@wizard = wizard
|
|
|
|
@step = step
|
|
|
|
@refresh_required = false
|
2021-04-20 19:58:19 +02:00
|
|
|
@submission = submission.with_indifferent_access
|
2019-07-02 06:49:14 +02:00
|
|
|
@result = {}
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2020-04-14 07:46:06 +02:00
|
|
|
if SiteSetting.custom_wizard_enabled &&
|
|
|
|
@step.present? &&
|
|
|
|
@step.updater.present? &&
|
|
|
|
success?
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-04-14 07:46:06 +02:00
|
|
|
@step.updater.call(self)
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-04-14 01:39:21 +02:00
|
|
|
UserHistory.create(
|
|
|
|
action: UserHistory.actions[:custom_wizard_step],
|
|
|
|
acting_user_id: @current_user.id,
|
|
|
|
context: @wizard.id,
|
|
|
|
subject: @step.id
|
|
|
|
)
|
2020-04-14 07:46:06 +02:00
|
|
|
else
|
|
|
|
false
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def success?
|
|
|
|
@errors.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh_required?
|
|
|
|
@refresh_required
|
|
|
|
end
|
2021-03-11 07:30:15 +01:00
|
|
|
|
2020-11-26 04:05:50 +01:00
|
|
|
def validate
|
|
|
|
CustomWizard::UpdateValidator.new(self).perform
|
|
|
|
end
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|