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/custom_wizard/step_updater.rb

47 Zeilen
956 B
Ruby

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
attr_accessor :refresh_required, :submission, :result, :step
2017-10-15 05:58:22 +02: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
@submission = submission.to_h.with_indifferent_access
@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
def validate
CustomWizard::UpdateValidator.new(self).perform
end
2017-10-15 05:58:22 +02:00
end