discourse/lib/suggested_topics_builder.rb

40 lines
792 B
Ruby
Raw Normal View History

2013-07-12 14:38:20 -04:00
require_dependency 'topic_list'
class SuggestedTopicsBuilder
attr_reader :excluded_topic_ids
attr_reader :results
def initialize(topic)
@excluded_topic_ids = [topic.id]
@results = []
end
def add_results(results)
return if results.blank?
# Only add results if we don't have those topic ids already
results = results.where('topics.id NOT IN (?)', @excluded_topic_ids)
.where(closed: false, archived: false, visible: true)
return if results.blank?
# Keep track of the ids we've added
2013-07-12 15:49:11 -04:00
@excluded_topic_ids.concat results.map {|r| r.id}
@results.concat results
2013-07-12 14:38:20 -04:00
end
def results_left
SiteSetting.suggested_topics - @results.size
end
def full?
results_left == 0
end
def size
@results.size
end
end