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/controllers/wizard.rb

73 Zeilen
1,9 KiB
Ruby

2017-09-25 16:47:40 +02:00
class CustomWizard::WizardController < ::ApplicationController
2017-10-17 09:18:53 +02:00
prepend_view_path(Rails.root.join('plugins', 'discourse-custom-wizard', 'views'))
layout 'wizard'
requires_login
2017-10-17 09:18:53 +02:00
helper_method :wizard_page_title
2018-08-20 01:08:28 +02:00
helper_method :theme_ids
def wizard
CustomWizard::Template.new(PluginStore.get('custom_wizard', params[:wizard_id].underscore))
end
2017-10-17 09:18:53 +02:00
def wizard_page_title
wizard ? (wizard.name || wizard.id) : I18n.t('wizard.custom_title')
2017-09-25 16:47:40 +02:00
end
2018-08-20 01:08:28 +02:00
def theme_ids
wizard ? [wizard.theme_id] : nil
end
2017-09-25 16:47:40 +02:00
def index
2017-09-23 04:34:07 +02:00
respond_to do |format|
format.json do
2017-11-01 05:21:14 +01:00
builder = CustomWizard::Builder.new(current_user, params[:wizard_id].underscore)
2019-01-14 03:53:53 +01:00
builder_opts = {}
builder_opts[:reset] = params[:reset] if params[:reset]
2017-11-01 05:21:14 +01:00
if builder.wizard.present?
2019-01-14 03:53:53 +01:00
wizard = builder.build(builder_opts)
2017-10-22 05:37:58 +02:00
render_serialized(wizard, WizardSerializer)
else
render json: { error: I18n.t('wizard.none') }
end
2017-09-23 04:34:07 +02:00
end
format.html {}
end
end
2017-11-01 05:21:14 +01:00
## clean up if user skips wizard
def skip
params.require(:wizard_id)
2017-11-01 05:21:14 +01:00
wizard_id = params[:wizard_id]
user = current_user
wizard_template = PluginStore.get('custom_wizard', wizard_id.underscore)
wizard = CustomWizard::Wizard.new(user, wizard_template)
2017-11-01 05:21:14 +01:00
if wizard.required && !wizard.completed? && wizard.permitted?
2017-11-01 05:21:14 +01:00
return render json: { error: I18n.t('wizard.no_skip') }
end
result = success_json
submission = Array.wrap(PluginStore.get("#{wizard_id}_submissions", user.id)).last
if submission && submission['redirect_to']
result.merge!(redirect_to: submission['redirect_to'])
end
if submission && !wizard.save_submissions
PluginStore.remove("#{wizard_id}_submissions", user.id)
2017-11-01 05:21:14 +01:00
end
if user.custom_fields['redirect_to_wizard'] === wizard_id
user.custom_fields.delete('redirect_to_wizard')
user.save_custom_fields(true)
end
render json: result
end
2017-09-23 04:34:07 +02:00
end