category stats shouldn't include deleted topics.

This commit is contained in:
Dan Neumann 2013-02-16 14:57:16 -06:00
parent 921c3f016f
commit fac75401ef
4 changed files with 66 additions and 35 deletions

View File

@ -17,7 +17,6 @@ class Category < ActiveRecord::Base
after_save :invalidate_site_cache after_save :invalidate_site_cache
after_destroy :invalidate_site_cache after_destroy :invalidate_site_cache
def uncategorized_validator def uncategorized_validator
return errors.add(:name, I18n.t(:is_reserved)) if name == SiteSetting.uncategorized_name return errors.add(:name, I18n.t(:is_reserved)) if name == SiteSetting.uncategorized_name
return errors.add(:slug, I18n.t(:is_reserved)) if slug == SiteSetting.uncategorized_name return errors.add(:slug, I18n.t(:is_reserved)) if slug == SiteSetting.uncategorized_name
@ -27,23 +26,21 @@ class Category < ActiveRecord::Base
order('topic_count desc') order('topic_count desc')
end end
# Recalculates `topics_year`, `topics_month`, and `topics_week`
# for each Category.
def self.update_stats def self.update_stats
exec_sql "UPDATE categories topics = Topic
SET topics_week = (SELECT COUNT(*) .select("COUNT(*)")
FROM topics as ft .where("topics.category_id = categories.id")
WHERE ft.category_id = categories.id .visible
AND ft.created_at > (CURRENT_TIMESTAMP - INTERVAL '1 WEEK')
AND ft.visible), topics_year = topics.created_since(1.year.ago).to_sql
topics_month = (SELECT COUNT(*) topics_month = topics.created_since(1.month.ago).to_sql
FROM topics as ft topics_week = topics.created_since(1.week.ago).to_sql
WHERE ft.category_id = categories.id
AND ft.created_at > (CURRENT_TIMESTAMP - INTERVAL '1 MONTH') Category.update_all("topics_year = (#{topics_year}),
AND ft.visible), topics_month = (#{topics_month}),
topics_year = (SELECT COUNT(*) topics_week = (#{topics_week})")
FROM topics as ft
WHERE ft.category_id = categories.id
AND ft.created_at > (CURRENT_TIMESTAMP - INTERVAL '1 YEAR')
AND ft.visible)"
end end
# Use the first paragraph of the topic's first post as the excerpt # Use the first paragraph of the topic's first post as the excerpt

View File

@ -168,6 +168,10 @@ class Topic < ActiveRecord::Base
where(visible: true) where(visible: true)
end end
def self.created_since(time_ago)
where("created_at > ?", time_ago)
end
def private_message? def private_message?
self.archetype == Archetype.private_message self.archetype == Archetype.private_message
end end

View File

@ -3,6 +3,10 @@ Fabricator(:topic) do
title { sequence(:title) { |i| "Test topic #{i}" } } title { sequence(:title) { |i| "Test topic #{i}" } }
end end
Fabricator(:deleted_topic, from: :topic) do
deleted_at Time.now
end
Fabricator(:topic_allowed_user) do Fabricator(:topic_allowed_user) do
end end

View File

@ -158,13 +158,15 @@ describe Category do
describe 'update_stats' do describe 'update_stats' do
# We're going to test with one topic. That's enough for stats!
before do before do
@category = Fabricate(:category) @category = Fabricate(:category)
end
# Create a non-invisible category to make sure count is 1 context 'with regular topics' do
@topic = Fabricate(:topic, user: @category.user, category: @category)
before do
@category.topics << Fabricate(:topic,
user: @category.user)
Category.update_stats Category.update_stats
@category.reload @category.reload
end end
@ -183,5 +185,29 @@ describe Category do
end end
context 'with deleted topics' do
before do
@category.topics << Fabricate(:deleted_topic,
user: @category.user)
Category.update_stats
@category.reload
end end
it 'does not count deleted topics for topics_week' do
@category.topics_week.should == 0
end
it 'does not count deleted topics for topics_month' do
@category.topics_month.should == 0
end
it 'does not count deleted topics for topics_year' do
@category.topics_year.should == 0
end
end
end
end