2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-24 01:50:20 -04:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class BotInput < ::Jobs::Base
|
2017-05-24 01:50:20 -04:00
|
|
|
|
|
|
|
sidekiq_options queue: 'critical', retry: false
|
|
|
|
|
|
|
|
def execute(args)
|
|
|
|
return unless user = User.find_by(id: args[:user_id])
|
|
|
|
|
|
|
|
I18n.with_locale(user.effective_locale) do
|
|
|
|
::DiscourseNarrativeBot::TrackSelector.new(args[:input].to_sym, user,
|
|
|
|
post_id: args[:post_id],
|
|
|
|
topic_id: args[:topic_id]
|
|
|
|
).select
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|