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