discourse/app/serializers/category_detailed_serialize...

65 lines
1.3 KiB
Ruby
Raw Normal View History

2013-10-23 14:40:39 -04:00
class CategoryDetailedSerializer < BasicCategorySerializer
attributes :topic_count,
:post_count,
:topics_day,
:topics_week,
:topics_month,
:topics_year,
:topics_all_time,
:description_excerpt,
2013-10-31 18:02:24 -04:00
:is_uncategorized,
:subcategory_ids
2013-02-05 14:16:51 -05:00
2016-08-18 19:47:00 -04:00
has_many :displayable_topics, serializer: ListableTopicSerializer, embed: :objects, key: :topics
def include_displayable_topics?
displayable_topics.present?
end
def is_uncategorized
object.id == SiteSetting.uncategorized_category_id
end
def include_is_uncategorized?
is_uncategorized
2013-02-05 14:16:51 -05:00
end
def description_excerpt
2016-08-17 17:23:16 -04:00
PrettyText.excerpt(description, 300) if description
2013-02-05 14:16:51 -05:00
end
def include_subcategory_ids?
subcategory_ids.present?
end
def topics_day
count_with_subcategories(:topics_day)
end
def topics_week
count_with_subcategories(:topics_week)
end
def topics_month
count_with_subcategories(:topics_month)
end
def topics_year
count_with_subcategories(:topics_year)
end
def topics_all_time
count_with_subcategories(:topic_count)
end
def count_with_subcategories(method)
count = object.send(method) || 0
object.subcategories.each do |category|
count += (category.send(method) || 0)
end
count
2013-10-31 18:02:24 -04:00
end
2013-02-05 14:16:51 -05:00
end