2017-10-15 05:58:22 +02:00
|
|
|
require_dependency 'wizard/step'
|
|
|
|
require_dependency 'wizard/field'
|
|
|
|
require_dependency 'wizard/step_updater'
|
|
|
|
require_dependency 'wizard/builder'
|
|
|
|
|
2019-12-05 07:48:32 +01:00
|
|
|
UserHistory.actions[:custom_wizard_step] = 1000
|
|
|
|
|
2017-09-23 04:34:07 +02:00
|
|
|
class CustomWizard::Wizard
|
2019-12-12 05:43:11 +01:00
|
|
|
include ActiveModel::SerializerSupport
|
2017-09-23 04:34:07 +02:00
|
|
|
|
2017-10-15 05:58:22 +02:00
|
|
|
attr_reader :steps, :user
|
2017-11-01 05:21:14 +01:00
|
|
|
attr_accessor :id,
|
|
|
|
:name,
|
|
|
|
:background,
|
|
|
|
:save_submissions,
|
|
|
|
:multiple_submissions,
|
2017-11-29 10:48:49 +01:00
|
|
|
:min_trust,
|
2017-11-01 05:21:14 +01:00
|
|
|
:after_time,
|
2018-05-09 07:06:43 +02:00
|
|
|
:after_time_scheduled,
|
2017-11-01 05:21:14 +01:00
|
|
|
:after_signup,
|
2017-11-22 10:34:21 +01:00
|
|
|
:required,
|
2019-11-04 18:49:30 +01:00
|
|
|
:prompt_completion,
|
2019-12-12 05:43:11 +01:00
|
|
|
:restart_on_revisit,
|
2020-03-21 18:30:11 +01:00
|
|
|
:needs_categories,
|
|
|
|
:needs_groups
|
2017-10-15 05:58:22 +02:00
|
|
|
|
2019-06-19 07:23:10 +02:00
|
|
|
def initialize(user=nil, attrs = {})
|
2017-10-15 05:58:22 +02:00
|
|
|
@steps = []
|
|
|
|
@user = user
|
|
|
|
@first_step = nil
|
2019-12-12 05:43:11 +01:00
|
|
|
@required = false
|
|
|
|
@needs_categories = false
|
2020-03-21 18:30:11 +01:00
|
|
|
@needs_groups = false
|
2017-11-01 05:21:14 +01:00
|
|
|
|
|
|
|
attrs.each do |key, value|
|
|
|
|
setter = "#{key}="
|
|
|
|
send(setter, value) if respond_to?(setter.to_sym, false)
|
|
|
|
end
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def create_step(step_name)
|
|
|
|
::Wizard::Step.new(step_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def append_step(step)
|
|
|
|
step = create_step(step) if step.is_a?(String)
|
|
|
|
|
|
|
|
yield step if block_given?
|
|
|
|
|
|
|
|
last_step = @steps.last
|
|
|
|
|
|
|
|
@steps << step
|
|
|
|
|
|
|
|
# If it's the first step
|
|
|
|
if @steps.size == 1
|
|
|
|
@first_step = step
|
|
|
|
step.index = 0
|
|
|
|
elsif last_step.present?
|
|
|
|
last_step.next = step
|
|
|
|
step.previous = last_step
|
|
|
|
step.index = last_step.index + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def start
|
2019-06-19 07:23:10 +02:00
|
|
|
return nil if !@user
|
|
|
|
|
2017-11-13 08:49:08 +01:00
|
|
|
if unfinished? && last_completed_step = ::UserHistory.where(
|
2017-11-08 09:52:50 +01:00
|
|
|
acting_user_id: @user.id,
|
|
|
|
action: ::UserHistory.actions[:custom_wizard_step],
|
|
|
|
context: @id,
|
|
|
|
subject: @steps.map(&:id)
|
2017-11-13 08:49:08 +01:00
|
|
|
).order("created_at").last
|
|
|
|
|
|
|
|
step_id = last_completed_step.subject
|
2017-11-09 03:50:48 +01:00
|
|
|
last_index = @steps.index { |s| s.id == step_id }
|
|
|
|
@steps[last_index + 1]
|
2017-11-08 09:52:50 +01:00
|
|
|
else
|
|
|
|
@first_step
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
def create_updater(step_id, fields)
|
|
|
|
step = @steps.find { |s| s.id == step_id }
|
|
|
|
wizard = self
|
|
|
|
CustomWizard::StepUpdater.new(@user, wizard, step, fields)
|
|
|
|
end
|
2017-10-15 05:58:22 +02:00
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
def unfinished?
|
2019-06-19 07:23:10 +02:00
|
|
|
return nil if !@user
|
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
most_recent = ::UserHistory.where(
|
2017-10-15 05:58:22 +02:00
|
|
|
acting_user_id: @user.id,
|
2017-10-22 05:37:58 +02:00
|
|
|
action: ::UserHistory.actions[:custom_wizard_step],
|
|
|
|
context: @id,
|
2017-11-02 05:15:30 +01:00
|
|
|
).distinct.order('updated_at DESC').first
|
2017-11-01 05:21:14 +01:00
|
|
|
|
2019-01-22 00:57:03 +01:00
|
|
|
if most_recent && most_recent.subject == "reset"
|
2019-01-14 03:53:53 +01:00
|
|
|
false
|
|
|
|
elsif most_recent
|
2017-11-01 05:21:14 +01:00
|
|
|
last_finished_step = most_recent.subject
|
|
|
|
last_step = CustomWizard::Wizard.step_ids(@id).last
|
|
|
|
last_finished_step != last_step
|
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def completed?
|
2019-06-19 07:23:10 +02:00
|
|
|
return nil if !@user
|
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
steps = CustomWizard::Wizard.step_ids(@id)
|
2017-10-15 05:58:22 +02:00
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
history = ::UserHistory.where(
|
|
|
|
acting_user_id: @user.id,
|
|
|
|
action: ::UserHistory.actions[:custom_wizard_step],
|
|
|
|
context: @id
|
|
|
|
)
|
|
|
|
|
2018-05-09 07:06:43 +02:00
|
|
|
if @after_time
|
|
|
|
history = history.where("updated_at > ?", @after_time_scheduled)
|
2017-11-01 05:21:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
completed = history.distinct.order(:subject).pluck(:subject)
|
|
|
|
|
|
|
|
(steps - completed).empty?
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|
|
|
|
|
2017-11-29 10:48:49 +01:00
|
|
|
def permitted?
|
2019-06-19 07:23:10 +02:00
|
|
|
user && (user.staff? || user.trust_level.to_i >= min_trust.to_i)
|
2017-11-29 10:48:49 +01:00
|
|
|
end
|
|
|
|
|
2019-01-14 03:53:53 +01:00
|
|
|
def reset
|
|
|
|
::UserHistory.create(
|
|
|
|
action: ::UserHistory.actions[:custom_wizard_step],
|
|
|
|
acting_user_id: @user.id,
|
|
|
|
context: @id,
|
|
|
|
subject: "reset"
|
|
|
|
)
|
|
|
|
end
|
2019-12-12 05:43:11 +01:00
|
|
|
|
|
|
|
def categories
|
|
|
|
@categories ||= ::Site.new(Guardian.new(@user)).categories
|
|
|
|
end
|
2020-03-21 18:30:11 +01:00
|
|
|
|
|
|
|
def groups
|
|
|
|
@groups ||= ::Site.new(Guardian.new(@user)).groups
|
|
|
|
end
|
2019-01-14 03:53:53 +01:00
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
def self.after_signup
|
|
|
|
rows = PluginStoreRow.where(plugin_name: 'custom_wizard')
|
|
|
|
wizards = [*rows].select { |r| r.value['after_signup'] }
|
|
|
|
if wizards.any?
|
|
|
|
wizards.first.key
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2017-10-15 05:58:22 +02:00
|
|
|
end
|
|
|
|
|
2017-11-22 10:34:21 +01:00
|
|
|
def self.prompt_completion(user)
|
|
|
|
rows = PluginStoreRow.where(plugin_name: 'custom_wizard')
|
|
|
|
wizards = [*rows].select { |r| r.value['prompt_completion'] }
|
|
|
|
if wizards.any?
|
|
|
|
wizards.reduce([]) do |result, w|
|
|
|
|
data = ::JSON.parse(w.value)
|
|
|
|
id = data['id']
|
|
|
|
name = data['name']
|
|
|
|
wizard = CustomWizard::Wizard.new(user, id: id, name: name)
|
|
|
|
result.push(id: id, name: name) if !wizard.completed?
|
2018-04-25 03:15:19 +02:00
|
|
|
result
|
2017-11-22 10:34:21 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-04 18:49:30 +01:00
|
|
|
def self.restart_on_revisit
|
|
|
|
rows = PluginStoreRow.where(plugin_name: 'custom_wizard')
|
|
|
|
wizards = [*rows].select { |r| r.value['restart_on_revisit'] }
|
|
|
|
if wizards.any?
|
|
|
|
wizards.first.key
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-02 08:41:14 +01:00
|
|
|
def self.steps(wizard_id)
|
|
|
|
wizard = PluginStore.get('custom_wizard', wizard_id)
|
|
|
|
wizard ? wizard['steps'] : nil
|
|
|
|
end
|
|
|
|
|
2017-11-01 05:21:14 +01:00
|
|
|
def self.step_ids(wizard_id)
|
2017-11-02 08:41:14 +01:00
|
|
|
steps = self.steps(wizard_id)
|
2017-11-03 06:56:10 +01:00
|
|
|
return [] if !steps
|
|
|
|
steps.map { |s| s['id'] }.flatten.uniq
|
2017-11-02 08:41:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.field_ids(wizard_id, step_id)
|
|
|
|
steps = self.steps(wizard_id)
|
2017-11-03 06:56:10 +01:00
|
|
|
return [] if !steps
|
2017-11-02 08:41:14 +01:00
|
|
|
step = steps.select { |s| s['id'] === step_id }.first
|
|
|
|
if step && fields = step['fields']
|
|
|
|
fields.map { |f| f['id'] }
|
|
|
|
else
|
2017-11-03 06:56:10 +01:00
|
|
|
[]
|
2017-11-02 08:41:14 +01:00
|
|
|
end
|
2017-09-23 04:34:07 +02:00
|
|
|
end
|
2017-11-07 08:40:09 +01:00
|
|
|
|
2019-12-06 10:05:19 +01:00
|
|
|
def self.add_wizard(obj)
|
|
|
|
wizard = obj.is_a?(String) ? ::JSON.parse(json) : obj
|
2017-11-07 08:40:09 +01:00
|
|
|
PluginStore.set('custom_wizard', wizard["id"], wizard)
|
|
|
|
end
|
2018-05-09 07:06:43 +02:00
|
|
|
|
2018-06-14 02:00:36 +02:00
|
|
|
def self.find(wizard_id)
|
2018-07-06 02:58:53 +02:00
|
|
|
PluginStore.get('custom_wizard', wizard_id)
|
2018-06-14 02:00:36 +02:00
|
|
|
end
|
|
|
|
|
2019-04-09 11:11:09 +02:00
|
|
|
def self.exists?(wizard_id)
|
|
|
|
PluginStoreRow.exists?(plugin_name: 'custom_wizard', key: wizard_id)
|
|
|
|
end
|
|
|
|
|
2018-07-06 02:58:53 +02:00
|
|
|
def self.create(user, wizard_id)
|
|
|
|
CustomWizard::Wizard.new(user, self.find(wizard_id).to_h)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.set_submission_redirect(user, wizard_id, url)
|
2018-05-24 07:32:22 +02:00
|
|
|
PluginStore.set("#{wizard_id.underscore}_submissions", user.id, [{ redirect_to: url }])
|
2018-05-09 07:06:43 +02:00
|
|
|
end
|
2018-07-06 02:58:53 +02:00
|
|
|
|
|
|
|
def self.set_wizard_redirect(user, wizard_id)
|
|
|
|
wizard = CustomWizard::Wizard.create(user, wizard_id)
|
|
|
|
|
|
|
|
if wizard.permitted?
|
|
|
|
user.custom_fields['redirect_to_wizard'] = wizard_id
|
|
|
|
user.save_custom_fields(true)
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2017-09-23 04:34:07 +02:00
|
|
|
end
|