2021-03-11 17:30:15 +11:00
|
|
|
# frozen_string_literal: true
|
2017-11-01 12:21:14 +08:00
|
|
|
module Jobs
|
2019-10-03 15:17:21 +10:00
|
|
|
class SetAfterTimeWizard < ::Jobs::Base
|
2017-11-01 12:21:14 +08:00
|
|
|
def execute(args)
|
2020-04-14 15:46:06 +10:00
|
|
|
if SiteSetting.custom_wizard_enabled
|
2020-05-14 13:42:38 +10:00
|
|
|
wizard = CustomWizard::Wizard.create(args[:wizard_id])
|
2021-03-11 17:30:15 +11:00
|
|
|
|
2020-04-14 15:46:06 +10:00
|
|
|
if wizard && wizard.after_time
|
|
|
|
user_ids = []
|
2018-07-06 10:58:53 +10:00
|
|
|
|
2020-04-14 15:46:06 +10:00
|
|
|
User.human_users.each do |user|
|
2021-06-17 17:50:22 +10:00
|
|
|
if CustomWizard::Wizard.set_user_redirect(wizard.id, user)
|
2020-04-14 15:46:06 +10:00
|
|
|
user_ids.push(user.id)
|
|
|
|
end
|
2018-07-06 10:58:53 +10:00
|
|
|
end
|
|
|
|
|
2022-01-31 17:18:04 +08:00
|
|
|
CustomWizard::Template.clear_cache_keys
|
|
|
|
|
2020-04-14 15:46:06 +10:00
|
|
|
MessageBus.publish "/redirect_to_wizard", wizard.id, user_ids: user_ids
|
|
|
|
end
|
2017-11-01 12:21:14 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|