2013-02-05 14:16:51 -05:00
|
|
|
module Jobs
|
|
|
|
|
|
|
|
class FeatureTopicUsers < Jobs::Base
|
|
|
|
|
|
|
|
def execute(args)
|
2013-04-17 19:34:58 -04:00
|
|
|
topic_id = args[:topic_id]
|
|
|
|
raise Discourse::InvalidParameters.new(:topic_id) unless topic_id.present?
|
|
|
|
|
|
|
|
topic = Topic.where(id: topic_id).first
|
|
|
|
|
|
|
|
# there are 3 cases here
|
|
|
|
# 1. topic was atomically nuked, this should be skipped
|
|
|
|
# 2. topic was deleted, this should be skipped
|
|
|
|
# 3. error an incorrect topic_id was sent
|
|
|
|
|
|
|
|
unless topic.present?
|
|
|
|
max_id = Topic.with_deleted.maximum(:id).to_i
|
|
|
|
raise Discourse::InvalidParameters.new(:topic_id) if max_id < topic_id
|
|
|
|
return
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-12 12:33:42 -04:00
|
|
|
topic.feature_topic_users(args)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|