2013-02-06 03:16:51 +08: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 23:45:24 +08:00
|
|
|
Category.all.each do |c|
|
2013-02-06 03:16:51 +08:00
|
|
|
feature_topics_for(c)
|
|
|
|
CategoryFeaturedUser.feature_users_in(c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.feature_topics_for(c)
|
|
|
|
return unless c.present?
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
CategoryFeaturedTopic.transaction do
|
|
|
|
exec_sql "DELETE FROM category_featured_topics WHERE category_id = :category_id", category_id: c.id
|
|
|
|
exec_sql "INSERT INTO category_featured_topics (category_id, topic_id, created_at, updated_at)
|
|
|
|
SELECT :category_id,
|
|
|
|
ft.id,
|
|
|
|
CURRENT_TIMESTAMP,
|
|
|
|
CURRENT_TIMESTAMP
|
|
|
|
FROM topics AS ft
|
|
|
|
WHERE ft.category_id = :category_id
|
|
|
|
AND ft.visible
|
|
|
|
AND ft.deleted_at IS NULL
|
|
|
|
AND ft.archetype <> '#{Archetype.private_message}'
|
|
|
|
ORDER BY ft.bumped_at DESC
|
2013-02-07 23:45:24 +08:00
|
|
|
LIMIT :featured_limit",
|
2013-02-06 03:16:51 +08:00
|
|
|
category_id: c.id,
|
|
|
|
featured_limit: SiteSetting.category_featured_topics
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|