discourse/app/models/category_featured_topic.rb

59 lines
1.5 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class CategoryFeaturedTopic < ActiveRecord::Base
belongs_to :category
belongs_to :topic
# Populates the category featured topics
def self.feature_topics
transaction do
2013-02-07 10:45:24 -05:00
Category.all.each do |c|
2013-02-05 14:16:51 -05:00
feature_topics_for(c)
CategoryFeaturedUser.feature_users_in(c)
end
end
end
def self.feature_topics_for(c)
return if c.blank?
2013-02-07 10:45:24 -05:00
2013-02-05 14:16:51 -05:00
CategoryFeaturedTopic.transaction do
CategoryFeaturedTopic.delete_all(category_id: c.id)
2013-08-30 13:39:31 -04:00
query = TopicQuery.new(self.fake_admin, per_page: SiteSetting.category_featured_topics, except_topic_id: c.topic_id, visible: true)
results = query.list_category(c)
if results.present?
results.topic_ids.each_with_index do |topic_id, idx|
c.category_featured_topics.create(topic_id: topic_id, rank: idx)
end
end
2013-02-05 14:16:51 -05:00
end
end
2013-08-30 13:39:31 -04:00
private
def self.fake_admin
# fake an admin
admin = User.new
admin.admin = true
admin.id = -1
admin
end
2013-02-05 14:16:51 -05:00
end
# == Schema Information
#
# Table name: category_featured_topics
#
# category_id :integer not null
# topic_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
2013-06-16 20:48:58 -04:00
# rank :integer default(0), not null
2013-08-13 16:09:27 -04:00
# id :integer not null, primary key
#
# Indexes
#
2013-06-16 20:48:58 -04:00
# cat_featured_threads (category_id,topic_id) UNIQUE
# index_category_featured_topics_on_category_id_and_rank (category_id,rank)
#