2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-10-23 14:40:39 -04:00
|
|
|
class CategoryDetailedSerializer < BasicCategorySerializer
|
|
|
|
|
2013-12-13 15:15:51 -05:00
|
|
|
attributes :topic_count,
|
|
|
|
:post_count,
|
|
|
|
:topics_day,
|
2013-04-05 16:09:27 -04:00
|
|
|
:topics_week,
|
|
|
|
:topics_month,
|
|
|
|
:topics_year,
|
2016-08-29 04:25:46 -04:00
|
|
|
:topics_all_time,
|
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
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def is_uncategorized
|
|
|
|
object.id == SiteSetting.uncategorized_category_id
|
|
|
|
end
|
2013-12-13 15:15:51 -05:00
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def include_is_uncategorized?
|
|
|
|
is_uncategorized
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def include_subcategory_ids?
|
|
|
|
subcategory_ids.present?
|
2013-12-13 15:15:51 -05:00
|
|
|
end
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def topics_day
|
|
|
|
count_with_subcategories(:topics_day)
|
2013-12-13 15:15:51 -05:00
|
|
|
end
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def topics_week
|
|
|
|
count_with_subcategories(:topics_week)
|
2013-12-13 15:15:51 -05:00
|
|
|
end
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def topics_month
|
|
|
|
count_with_subcategories(:topics_month)
|
2013-05-27 14:15:20 -04:00
|
|
|
end
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def topics_year
|
|
|
|
count_with_subcategories(:topics_year)
|
2013-05-27 14:15:20 -04:00
|
|
|
end
|
|
|
|
|
2016-08-29 04:25:46 -04:00
|
|
|
def topics_all_time
|
|
|
|
count_with_subcategories(:topic_count)
|
|
|
|
end
|
|
|
|
|
2014-02-05 18:39:26 -05:00
|
|
|
def count_with_subcategories(method)
|
2019-05-06 21:27:05 -04:00
|
|
|
count = object.public_send(method) || 0
|
|
|
|
|
2014-11-17 02:02:17 -05:00
|
|
|
object.subcategories.each do |category|
|
2019-05-06 21:27:05 -04:00
|
|
|
count += (category.public_send(method) || 0)
|
2014-11-17 02:02:17 -05:00
|
|
|
end
|
2019-05-06 21:27:05 -04:00
|
|
|
|
2014-11-17 02:02:17 -05:00
|
|
|
count
|
2013-10-31 18:02:24 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|