2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-30 10:42:26 -05:00
|
|
|
class CategoryList
|
2024-01-17 09:18:01 -06:00
|
|
|
CATEGORIES_PER_PAGE = 20
|
|
|
|
SUBCATEGORIES_PER_CATEGORY = 5
|
2023-12-11 09:58:45 -06:00
|
|
|
|
2021-03-30 10:42:26 -05:00
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2017-08-01 03:26:03 -05:00
|
|
|
cattr_accessor :preloaded_topic_custom_fields
|
|
|
|
self.preloaded_topic_custom_fields = Set.new
|
|
|
|
|
2013-05-28 20:15:30 -05:00
|
|
|
attr_accessor :categories, :uncategorized
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2023-03-23 12:39:38 -05:00
|
|
|
def self.register_included_association(association)
|
|
|
|
@included_assocations ||= []
|
|
|
|
@included_assocations << association if !@included_assocations.include?(association)
|
2023-03-22 15:12:08 -05:00
|
|
|
end
|
|
|
|
|
2023-03-23 12:39:38 -05:00
|
|
|
def self.included_associations
|
|
|
|
[
|
|
|
|
:uploaded_background,
|
2023-10-20 07:48:06 -05:00
|
|
|
:uploaded_background_dark,
|
2023-03-23 12:39:38 -05:00
|
|
|
:uploaded_logo,
|
|
|
|
:uploaded_logo_dark,
|
|
|
|
:topic_only_relative_url,
|
|
|
|
subcategories: [:topic_only_relative_url],
|
|
|
|
].concat(@included_assocations || [])
|
2023-03-22 15:12:08 -05:00
|
|
|
end
|
|
|
|
|
2016-08-17 16:23:16 -05:00
|
|
|
def initialize(guardian = nil, options = {})
|
2013-05-28 13:54:00 -05:00
|
|
|
@guardian = guardian || Guardian.new
|
2013-10-17 01:44:56 -05:00
|
|
|
@options = options
|
2013-05-28 13:54:00 -05:00
|
|
|
|
|
|
|
find_categories
|
2024-02-28 22:19:04 -06:00
|
|
|
find_relevant_topics if options[:include_topics]
|
2016-08-18 18:47:00 -05:00
|
|
|
|
|
|
|
prune_empty
|
|
|
|
find_user_data
|
|
|
|
sort_unpinned
|
|
|
|
trim_results
|
2020-03-17 15:33:15 -05:00
|
|
|
demote_muted
|
2017-08-01 03:26:03 -05:00
|
|
|
|
|
|
|
if preloaded_topic_custom_fields.present?
|
2017-08-01 03:57:26 -05:00
|
|
|
displayable_topics = @categories.map(&:displayable_topics)
|
|
|
|
displayable_topics.flatten!
|
|
|
|
displayable_topics.compact!
|
|
|
|
|
|
|
|
if displayable_topics.present?
|
|
|
|
Topic.preload_custom_fields(displayable_topics, preloaded_topic_custom_fields)
|
|
|
|
end
|
2017-08-01 03:26:03 -05:00
|
|
|
end
|
2016-08-17 16:23:16 -05:00
|
|
|
end
|
2013-05-28 14:56:46 -05:00
|
|
|
|
2016-08-17 16:23:16 -05:00
|
|
|
def preload_key
|
2020-04-30 01:48:34 -05:00
|
|
|
"categories_list"
|
2013-05-28 13:54:00 -05:00
|
|
|
end
|
|
|
|
|
2019-04-25 04:07:19 -05:00
|
|
|
def self.order_categories(categories)
|
|
|
|
if SiteSetting.fixed_category_positions
|
|
|
|
categories.order(:position, :id)
|
|
|
|
else
|
|
|
|
categories
|
|
|
|
.left_outer_joins(:featured_topics)
|
2024-01-08 18:19:37 -06:00
|
|
|
.where("topics.category_id IS NULL OR topics.category_id IN (?)", categories.select(:id))
|
2019-04-25 04:07:19 -05:00
|
|
|
.group("categories.id")
|
|
|
|
.order("max(topics.bumped_at) DESC NULLS LAST")
|
|
|
|
.order("categories.id ASC")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-28 13:54:00 -05:00
|
|
|
private
|
|
|
|
|
2024-03-27 14:32:45 -05:00
|
|
|
def relevant_topics_query
|
2022-12-22 14:29:49 -06:00
|
|
|
@all_topics =
|
2024-02-28 22:19:04 -06:00
|
|
|
Topic
|
|
|
|
.secured(@guardian)
|
|
|
|
.joins(
|
|
|
|
"INNER JOIN category_featured_topics ON topics.id = category_featured_topics.topic_id",
|
|
|
|
)
|
|
|
|
.where("category_featured_topics.category_id IN (?)", categories_with_descendants.map(&:id))
|
|
|
|
.select(
|
|
|
|
"topics.*, category_featured_topics.category_id AS category_featured_topic_category_id",
|
|
|
|
)
|
|
|
|
.includes(:shared_draft, :category, { topic_thumbnails: %i[optimized_image upload] })
|
|
|
|
.order("category_featured_topics.rank")
|
2021-10-29 09:52:23 -05:00
|
|
|
|
2022-08-17 11:51:02 -05:00
|
|
|
@all_topics = @all_topics.joins(:tags).where(tags: { name: @options[:tag] }) if @options[
|
|
|
|
:tag
|
|
|
|
].present?
|
|
|
|
|
2021-10-29 09:52:23 -05:00
|
|
|
if @guardian.authenticated?
|
|
|
|
@all_topics =
|
2023-06-28 20:25:58 -05:00
|
|
|
@all_topics
|
|
|
|
.joins(
|
|
|
|
"LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id = #{@guardian.user.id.to_i}",
|
|
|
|
)
|
|
|
|
.joins(
|
|
|
|
"LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = #{@guardian.user.id}",
|
|
|
|
)
|
|
|
|
.where(
|
|
|
|
"COALESCE(tu.notification_level,1) > :muted",
|
|
|
|
muted: TopicUser.notification_levels[:muted],
|
|
|
|
)
|
2021-10-29 09:52:23 -05:00
|
|
|
end
|
|
|
|
|
2022-08-17 11:51:02 -05:00
|
|
|
@all_topics = TopicQuery.remove_muted_tags(@all_topics, @guardian.user).includes(:last_poster)
|
2024-03-27 14:32:45 -05:00
|
|
|
end
|
2024-02-28 22:19:04 -06:00
|
|
|
|
2024-03-27 14:32:45 -05:00
|
|
|
def find_relevant_topics
|
2024-02-28 22:19:04 -06:00
|
|
|
featured_topics_by_category_id = Hash.new { |h, k| h[k] = [] }
|
|
|
|
|
2024-03-27 14:32:45 -05:00
|
|
|
relevant_topics_query.each do |t|
|
2016-08-22 16:01:43 -05:00
|
|
|
# hint for the serializer
|
2022-08-17 11:51:02 -05:00
|
|
|
t.include_last_poster = true
|
2021-03-04 16:04:19 -06:00
|
|
|
t.dismissed = dismissed_topic?(t)
|
2024-02-28 22:19:04 -06:00
|
|
|
featured_topics_by_category_id[t.category_featured_topic_category_id] << t
|
2016-08-22 16:01:43 -05:00
|
|
|
end
|
2016-08-18 18:47:00 -05:00
|
|
|
|
2024-02-28 22:19:04 -06:00
|
|
|
categories_with_descendants.each do |category|
|
|
|
|
category.displayable_topics = featured_topics_by_category_id[category.id]
|
2016-08-18 18:47:00 -05:00
|
|
|
end
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2016-08-18 18:47:00 -05:00
|
|
|
|
2021-03-04 16:04:19 -06:00
|
|
|
def dismissed_topic?(topic)
|
|
|
|
if @guardian.current_user
|
|
|
|
@dismissed_topic_users_lookup ||=
|
|
|
|
DismissedTopicUser.lookup_for(@guardian.current_user, @all_topics)
|
|
|
|
@dismissed_topic_users_lookup.include?(topic.id)
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-28 13:54:00 -05:00
|
|
|
def find_categories
|
2023-05-30 16:41:50 -05:00
|
|
|
query = Category.includes(CategoryList.included_associations).secured(@guardian)
|
2023-01-09 06:20:10 -06:00
|
|
|
|
2023-05-30 16:41:50 -05:00
|
|
|
query =
|
|
|
|
query.where(
|
2016-08-22 16:01:43 -05:00
|
|
|
"categories.parent_category_id = ?",
|
|
|
|
@options[:parent_category_id].to_i,
|
|
|
|
) if @options[:parent_category_id].present?
|
2018-06-07 00:28:18 -05:00
|
|
|
|
2023-05-30 16:41:50 -05:00
|
|
|
query = self.class.order_categories(query)
|
2023-12-11 09:58:45 -06:00
|
|
|
|
2024-03-28 11:19:09 -05:00
|
|
|
page = [1, @options[:page].to_i].max
|
2024-03-21 14:39:14 -05:00
|
|
|
if @guardian.can_lazy_load_categories? && @options[:parent_category_id].blank?
|
2024-01-17 09:18:01 -06:00
|
|
|
query =
|
|
|
|
query
|
|
|
|
.where(parent_category_id: nil)
|
|
|
|
.limit(CATEGORIES_PER_PAGE)
|
|
|
|
.offset((page - 1) * CATEGORIES_PER_PAGE)
|
2024-03-28 11:19:09 -05:00
|
|
|
elsif page > 1
|
|
|
|
# Pagination is supported only when lazy load is enabled. If it is not,
|
|
|
|
# everything is returned on page 1.
|
|
|
|
query = query.none
|
2023-12-11 09:58:45 -06:00
|
|
|
end
|
|
|
|
|
2023-05-30 16:41:50 -05:00
|
|
|
query =
|
|
|
|
DiscoursePluginRegistry.apply_modifier(:category_list_find_categories_query, query, self)
|
2013-05-28 13:54:00 -05:00
|
|
|
|
2023-05-30 16:41:50 -05:00
|
|
|
@categories = query.to_a
|
2015-09-07 11:52:53 -05:00
|
|
|
|
2024-03-21 14:39:14 -05:00
|
|
|
if @guardian.can_lazy_load_categories? && @options[:parent_category_id].blank?
|
2024-01-17 09:18:01 -06:00
|
|
|
categories_with_rownum =
|
|
|
|
Category
|
|
|
|
.secured(@guardian)
|
|
|
|
.select(:id, "ROW_NUMBER() OVER (PARTITION BY parent_category_id) rownum")
|
|
|
|
.where(parent_category_id: @categories.map { |c| c.id })
|
|
|
|
|
|
|
|
@categories +=
|
2024-02-09 11:48:26 -06:00
|
|
|
Category.includes(CategoryList.included_associations).where(
|
2024-01-17 09:18:01 -06:00
|
|
|
"id IN (WITH cte AS (#{categories_with_rownum.to_sql}) SELECT id FROM cte WHERE rownum <= ?)",
|
|
|
|
SUBCATEGORIES_PER_CATEGORY,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2023-11-09 10:23:24 -06:00
|
|
|
if Site.preloaded_category_custom_fields.any?
|
|
|
|
Category.preload_custom_fields(@categories, Site.preloaded_category_custom_fields)
|
2023-10-26 08:34:23 -05:00
|
|
|
end
|
|
|
|
|
2021-10-05 13:12:31 -05:00
|
|
|
include_subcategories = @options[:include_subcategories] == true
|
|
|
|
|
2021-05-13 18:45:14 -05:00
|
|
|
notification_levels = CategoryUser.notification_levels_for(@guardian.user)
|
2019-11-07 20:58:11 -06:00
|
|
|
default_notification_level = CategoryUser.default_notification_level
|
2015-09-15 07:58:22 -05:00
|
|
|
|
2024-01-17 12:26:51 -06:00
|
|
|
if @guardian.can_lazy_load_categories?
|
2023-12-18 08:46:09 -06:00
|
|
|
subcategory_ids = {}
|
|
|
|
Category
|
|
|
|
.secured(@guardian)
|
|
|
|
.where(parent_category_id: @categories.map(&:id))
|
|
|
|
.pluck(:id, :parent_category_id)
|
|
|
|
.each { |id, parent_id| (subcategory_ids[parent_id] ||= []) << id }
|
|
|
|
@categories.each { |c| c.subcategory_ids = subcategory_ids[c.id] || [] }
|
|
|
|
elsif @options[:parent_category_id].blank?
|
2021-10-05 13:12:31 -05:00
|
|
|
subcategory_ids = {}
|
|
|
|
subcategory_list = {}
|
2016-08-22 16:01:43 -05:00
|
|
|
to_delete = Set.new
|
|
|
|
@categories.each do |c|
|
|
|
|
if c.parent_category_id.present?
|
2021-10-05 13:12:31 -05:00
|
|
|
subcategory_ids[c.parent_category_id] ||= []
|
|
|
|
subcategory_ids[c.parent_category_id] << c.id
|
|
|
|
if include_subcategories
|
|
|
|
subcategory_list[c.parent_category_id] ||= []
|
|
|
|
subcategory_list[c.parent_category_id] << c
|
|
|
|
end
|
2016-08-22 16:01:43 -05:00
|
|
|
to_delete << c
|
2014-01-15 13:11:19 -06:00
|
|
|
end
|
2013-05-28 13:54:00 -05:00
|
|
|
end
|
2021-10-05 13:12:31 -05:00
|
|
|
@categories.each do |c|
|
|
|
|
c.subcategory_ids = subcategory_ids[c.id] || []
|
|
|
|
c.subcategory_list = subcategory_list[c.id] || [] if include_subcategories
|
|
|
|
end
|
2016-08-22 16:01:43 -05:00
|
|
|
@categories.delete_if { |c| to_delete.include?(c) }
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2013-05-28 13:54:00 -05:00
|
|
|
|
2024-03-25 11:56:32 -05:00
|
|
|
Category.preload_user_fields!(@guardian, categories_with_descendants)
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2016-08-18 18:47:00 -05:00
|
|
|
|
|
|
|
def prune_empty
|
|
|
|
return if SiteSetting.allow_uncategorized_topics
|
2021-05-03 22:05:08 -05:00
|
|
|
@categories.delete_if { |c| c.uncategorized? }
|
2016-08-18 18:47:00 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Attach some data for serialization to each topic
|
|
|
|
def find_user_data
|
|
|
|
if @guardian.current_user && @all_topics.present?
|
|
|
|
topic_lookup = TopicUser.lookup_for(@guardian.current_user, @all_topics)
|
|
|
|
@all_topics.each { |ft| ft.user_data = topic_lookup[ft.id] }
|
|
|
|
end
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2016-08-18 18:47:00 -05:00
|
|
|
|
|
|
|
# Put unpinned topics at the end of the list
|
|
|
|
def sort_unpinned
|
|
|
|
if @guardian.current_user && @all_topics.present?
|
2022-03-04 15:11:59 -06:00
|
|
|
categories_with_descendants.each do |c|
|
2017-03-01 11:03:12 -06:00
|
|
|
next if c.displayable_topics.blank? || c.displayable_topics.size <= c.num_featured_topics
|
2016-08-18 18:47:00 -05:00
|
|
|
unpinned = []
|
|
|
|
c.displayable_topics.each do |t|
|
|
|
|
unpinned << t if t.pinned_at && PinnedCheck.unpinned?(t, t.user_data)
|
|
|
|
end
|
|
|
|
c.displayable_topics = (c.displayable_topics - unpinned) + unpinned unless unpinned.empty?
|
|
|
|
end
|
|
|
|
end
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2016-08-18 18:47:00 -05:00
|
|
|
|
2020-03-17 15:33:15 -05:00
|
|
|
def demote_muted
|
|
|
|
muted_categories = @categories.select { |category| category.notification_level == 0 }
|
|
|
|
@categories = @categories.reject { |category| category.notification_level == 0 }
|
|
|
|
@categories.concat muted_categories
|
|
|
|
end
|
|
|
|
|
2016-08-18 18:47:00 -05:00
|
|
|
def trim_results
|
2022-03-04 15:11:59 -06:00
|
|
|
categories_with_descendants.each do |c|
|
2016-08-18 18:47:00 -05:00
|
|
|
next if c.displayable_topics.blank?
|
2017-03-01 11:03:12 -06:00
|
|
|
c.displayable_topics = c.displayable_topics[0, c.num_featured_topics]
|
2016-08-18 18:47:00 -05:00
|
|
|
end
|
2018-06-07 00:28:18 -05:00
|
|
|
end
|
2016-08-18 18:47:00 -05:00
|
|
|
|
2022-03-04 15:11:59 -06:00
|
|
|
def categories_with_descendants(categories = @categories)
|
|
|
|
return @categories_with_children if @categories_with_children && (categories == @categories)
|
|
|
|
return nil if categories.nil?
|
|
|
|
|
|
|
|
result = categories.flat_map { |c| [c, *categories_with_descendants(c.subcategory_list)] }
|
|
|
|
|
|
|
|
@categories_with_children = result if categories == @categories
|
|
|
|
|
|
|
|
result
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|