2023-03-02 19:46:21 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class TopicsFilter
|
2023-04-13 00:22:11 -05:00
|
|
|
attr_reader :topic_notification_levels
|
|
|
|
|
|
|
|
def initialize(guardian:, scope: Topic.all)
|
2023-03-21 21:04:57 -05:00
|
|
|
@guardian = guardian
|
|
|
|
@scope = scope
|
2023-04-13 00:22:11 -05:00
|
|
|
@topic_notification_levels = Set.new
|
2023-04-10 19:48:07 -05:00
|
|
|
end
|
|
|
|
|
2023-05-03 01:51:04 -05:00
|
|
|
FILTER_ALIASES = { "categories" => "category", "tags" => "tag" }
|
2023-04-13 00:22:11 -05:00
|
|
|
private_constant :FILTER_ALIASES
|
2023-03-02 19:46:21 -06:00
|
|
|
|
2023-03-29 20:00:42 -05:00
|
|
|
def filter_from_query_string(query_string)
|
|
|
|
return @scope if query_string.blank?
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
filters = {}
|
|
|
|
|
2023-03-31 01:32:12 -05:00
|
|
|
query_string.scan(
|
2023-05-08 01:04:47 -05:00
|
|
|
/(?<key_prefix>(?:-|=|-=|=-))?(?<key>[\w-]+):(?<value>[^\s]+)/,
|
2023-03-31 01:32:12 -05:00
|
|
|
) do |key_prefix, key, value|
|
2023-04-13 00:22:11 -05:00
|
|
|
key = FILTER_ALIASES[key] || key
|
|
|
|
|
|
|
|
filters[key] ||= {}
|
|
|
|
filters[key]["key_prefixes"] ||= []
|
|
|
|
filters[key]["key_prefixes"] << key_prefix
|
|
|
|
filters[key]["values"] ||= []
|
|
|
|
filters[key]["values"] << value
|
|
|
|
end
|
|
|
|
|
|
|
|
filters.each do |filter, hash|
|
|
|
|
key_prefixes = hash["key_prefixes"]
|
|
|
|
values = hash["values"]
|
|
|
|
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_values = extract_and_validate_value_for(filter, values)
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
case filter
|
2023-04-27 02:43:47 -05:00
|
|
|
when "activity-before"
|
|
|
|
filter_by_activity(before: filter_values)
|
|
|
|
when "activity-after"
|
|
|
|
filter_by_activity(after: filter_values)
|
2023-04-13 00:22:11 -05:00
|
|
|
when "category"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_categories(values: key_prefixes.zip(filter_values))
|
2023-04-27 02:43:47 -05:00
|
|
|
when "created-after"
|
|
|
|
filter_by_created(after: filter_values)
|
|
|
|
when "created-before"
|
|
|
|
filter_by_created(before: filter_values)
|
2023-04-11 20:25:06 -05:00
|
|
|
when "created-by"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_created_by_user(usernames: filter_values.flat_map { |value| value.split(",") })
|
2023-04-05 21:13:02 -05:00
|
|
|
when "in"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_in(values: filter_values)
|
2023-04-27 02:43:47 -05:00
|
|
|
when "latest-post-after"
|
|
|
|
filter_by_latest_post(after: filter_values)
|
|
|
|
when "latest-post-before"
|
|
|
|
filter_by_latest_post(before: filter_values)
|
2023-04-13 21:21:04 -05:00
|
|
|
when "likes-min"
|
|
|
|
filter_by_number_of_likes(min: filter_values)
|
|
|
|
when "likes-max"
|
|
|
|
filter_by_number_of_likes(max: filter_values)
|
|
|
|
when "likes-op-min"
|
|
|
|
filter_by_number_of_likes_in_first_post(min: filter_values)
|
|
|
|
when "likes-op-max"
|
|
|
|
filter_by_number_of_likes_in_first_post(max: filter_values)
|
2023-04-27 02:44:58 -05:00
|
|
|
when "order"
|
|
|
|
order_by(values: filter_values)
|
2023-04-13 17:05:55 -05:00
|
|
|
when "posts-min"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_by_number_of_posts(min: filter_values)
|
2023-04-13 17:05:55 -05:00
|
|
|
when "posts-max"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_by_number_of_posts(max: filter_values)
|
2023-04-13 18:48:38 -05:00
|
|
|
when "posters-min"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_by_number_of_posters(min: filter_values)
|
2023-04-13 18:48:38 -05:00
|
|
|
when "posters-max"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_by_number_of_posters(max: filter_values)
|
2023-03-29 20:00:42 -05:00
|
|
|
when "status"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_values.each { |status| @scope = filter_status(status: status) }
|
2024-06-13 12:03:49 -05:00
|
|
|
when "tag_group"
|
|
|
|
filter_tag_groups(values: key_prefixes.zip(filter_values))
|
2023-05-03 01:51:04 -05:00
|
|
|
when "tag"
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_tags(values: key_prefixes.zip(filter_values))
|
|
|
|
when "views-min"
|
|
|
|
filter_by_number_of_views(min: filter_values)
|
|
|
|
when "views-max"
|
|
|
|
filter_by_number_of_views(max: filter_values)
|
2024-07-17 11:36:38 -05:00
|
|
|
else
|
|
|
|
if custom_filter =
|
|
|
|
DiscoursePluginRegistry.custom_filter_mappings.find { |hash| hash.key?(filter) }
|
|
|
|
@scope = custom_filter[filter].call(@scope, filter_values)
|
|
|
|
end
|
2023-03-29 20:00:42 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@scope
|
|
|
|
end
|
|
|
|
|
2024-04-26 05:53:17 -05:00
|
|
|
def self.add_filter_by_status(status, &blk)
|
2024-04-29 08:56:52 -05:00
|
|
|
custom_status_filters[status] = blk
|
2024-04-26 05:53:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.custom_status_filters
|
2024-04-29 08:56:52 -05:00
|
|
|
@custom_status_filters ||= {}
|
2024-04-26 05:53:17 -05:00
|
|
|
end
|
|
|
|
|
2023-03-29 20:00:42 -05:00
|
|
|
def filter_status(status:, category_id: nil)
|
|
|
|
case status
|
|
|
|
when "open"
|
|
|
|
@scope = @scope.where("NOT topics.closed AND NOT topics.archived")
|
|
|
|
when "closed"
|
|
|
|
@scope = @scope.where("topics.closed")
|
|
|
|
when "archived"
|
|
|
|
@scope = @scope.where("topics.archived")
|
|
|
|
when "listed"
|
|
|
|
@scope = @scope.where("topics.visible")
|
|
|
|
when "unlisted"
|
|
|
|
@scope = @scope.where("NOT topics.visible")
|
|
|
|
when "deleted"
|
|
|
|
category = category_id.present? ? Category.find_by(id: category_id) : nil
|
|
|
|
|
|
|
|
if @guardian.can_see_deleted_topics?(category)
|
|
|
|
@scope = @scope.unscope(where: :deleted_at).where("topics.deleted_at IS NOT NULL")
|
|
|
|
end
|
2023-03-29 21:57:26 -05:00
|
|
|
when "public"
|
|
|
|
@scope = @scope.joins(:category).where("NOT categories.read_restricted")
|
2024-04-26 05:53:17 -05:00
|
|
|
else
|
|
|
|
if custom_filter = TopicsFilter.custom_status_filters[status]
|
|
|
|
@scope = custom_filter.call(@scope)
|
|
|
|
end
|
2023-03-29 20:00:42 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@scope
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2023-04-27 02:43:47 -05:00
|
|
|
YYYY_MM_DD_REGEXP =
|
2023-04-30 19:09:08 -05:00
|
|
|
/\A(?<year>[12][0-9]{3})-(?<month>0?[1-9]|1[0-2])-(?<day>0?[1-9]|[12]\d|3[01])\z/
|
2023-04-27 02:43:47 -05:00
|
|
|
private_constant :YYYY_MM_DD_REGEXP
|
|
|
|
|
2023-04-13 21:21:04 -05:00
|
|
|
def extract_and_validate_value_for(filter, values)
|
|
|
|
case filter
|
2023-04-27 02:43:47 -05:00
|
|
|
when "activity-before", "activity-after", "created-before", "created-after",
|
|
|
|
"latest-post-before", "latest-post-after"
|
|
|
|
value = values.last
|
|
|
|
|
|
|
|
if match_data = value.match(YYYY_MM_DD_REGEXP)
|
|
|
|
Time.zone.parse(
|
|
|
|
"#{match_data[:year].to_i}-#{match_data[:month].to_i}-#{match_data[:day].to_i}",
|
|
|
|
)
|
|
|
|
end
|
2023-04-13 21:21:04 -05:00
|
|
|
when "likes-min", "likes-max", "likes-op-min", "likes-op-max", "posts-min", "posts-max",
|
|
|
|
"posters-min", "posters-max", "views-min", "views-max"
|
|
|
|
value = values.last
|
|
|
|
value if value =~ /\A\d+\z/
|
2023-05-02 23:39:52 -05:00
|
|
|
when "order"
|
|
|
|
values.flat_map { |value| value.split(",") }
|
2023-05-02 23:39:11 -05:00
|
|
|
when "created-by"
|
|
|
|
values.flat_map { |value| value.split(",").map { |username| username.delete_prefix("@") } }
|
2023-04-13 21:21:04 -05:00
|
|
|
else
|
|
|
|
values
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_topic_range(column_name:, min: nil, max: nil, scope: nil)
|
2023-04-13 17:05:55 -05:00
|
|
|
{ min => ">=", max => "<=" }.each do |value, operator|
|
2023-04-13 18:48:38 -05:00
|
|
|
next if !value
|
2023-04-13 21:21:04 -05:00
|
|
|
@scope = (scope || @scope).where("#{column_name} #{operator} ?", value)
|
2023-04-13 17:05:55 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-27 02:43:47 -05:00
|
|
|
def filter_by_activity(before: nil, after: nil)
|
|
|
|
filter_by_topic_range(column_name: "topics.bumped_at", min: after, max: before)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_created(before: nil, after: nil)
|
|
|
|
filter_by_topic_range(column_name: "topics.created_at", min: after, max: before)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_latest_post(before: nil, after: nil)
|
|
|
|
filter_by_topic_range(column_name: "topics.last_posted_at", min: after, max: before)
|
|
|
|
end
|
|
|
|
|
2023-04-13 18:48:38 -05:00
|
|
|
def filter_by_number_of_posts(min: nil, max: nil)
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_by_topic_range(column_name: "topics.posts_count", min:, max:)
|
2023-04-13 18:48:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_number_of_posters(min: nil, max: nil)
|
2023-04-13 21:21:04 -05:00
|
|
|
filter_by_topic_range(column_name: "topics.participant_count", min:, max:)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_number_of_likes(min: nil, max: nil)
|
|
|
|
filter_by_topic_range(column_name: "topics.like_count", min:, max:)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_number_of_likes_in_first_post(min: nil, max: nil)
|
|
|
|
filter_by_topic_range(
|
|
|
|
column_name: "first_posts.like_count",
|
|
|
|
min:,
|
|
|
|
max:,
|
2023-04-27 02:44:58 -05:00
|
|
|
scope: self.joins_first_posts(@scope),
|
2023-04-13 21:21:04 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_by_number_of_views(min: nil, max: nil)
|
|
|
|
filter_by_topic_range(column_name: "views", min:, max:)
|
2023-04-13 18:48:38 -05:00
|
|
|
end
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
def filter_categories(values:)
|
2023-05-08 01:04:47 -05:00
|
|
|
category_slugs = {
|
|
|
|
include: {
|
|
|
|
with_subcategories: [],
|
|
|
|
without_subcategories: [],
|
|
|
|
},
|
|
|
|
exclude: {
|
|
|
|
with_subcategories: [],
|
|
|
|
without_subcategories: [],
|
|
|
|
},
|
|
|
|
}
|
2023-04-13 00:22:11 -05:00
|
|
|
|
|
|
|
values.each do |key_prefix, value|
|
2023-05-08 01:04:47 -05:00
|
|
|
exclude_categories = key_prefix&.include?("-")
|
|
|
|
exclude_subcategories = key_prefix&.include?("=")
|
2023-04-13 00:22:11 -05:00
|
|
|
|
|
|
|
value
|
|
|
|
.scan(
|
2023-05-08 19:10:08 -05:00
|
|
|
/\A(?<category_slugs>([\p{L}\p{N}\-:]+)(?<delimiter>[,])?([\p{L}\p{N}\-:]+)?(\k<delimiter>[\p{L}\p{N}\-:]+)*)\z/,
|
2023-04-13 00:22:11 -05:00
|
|
|
)
|
2023-05-08 01:04:47 -05:00
|
|
|
.each do |category_slugs_match, delimiter|
|
|
|
|
slugs = category_slugs_match.split(delimiter)
|
|
|
|
type = exclude_categories ? :exclude : :include
|
|
|
|
subcategory_type = exclude_subcategories ? :without_subcategories : :with_subcategories
|
|
|
|
category_slugs[type][subcategory_type].concat(slugs)
|
2023-04-13 00:22:11 -05:00
|
|
|
end
|
2023-04-11 20:25:06 -05:00
|
|
|
end
|
|
|
|
|
2023-05-08 01:04:47 -05:00
|
|
|
include_category_ids = []
|
2023-04-05 23:55:28 -05:00
|
|
|
|
2023-05-08 01:04:47 -05:00
|
|
|
if category_slugs[:include][:without_subcategories].present?
|
|
|
|
include_category_ids =
|
2023-04-13 00:22:11 -05:00
|
|
|
get_category_ids_from_slugs(
|
2023-05-08 01:04:47 -05:00
|
|
|
category_slugs[:include][:without_subcategories],
|
2023-04-13 00:22:11 -05:00
|
|
|
exclude_subcategories: true,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2023-05-08 01:04:47 -05:00
|
|
|
if category_slugs[:include][:with_subcategories].present?
|
|
|
|
include_category_ids.concat(
|
2023-04-13 00:22:11 -05:00
|
|
|
get_category_ids_from_slugs(
|
2023-05-08 01:04:47 -05:00
|
|
|
category_slugs[:include][:with_subcategories],
|
2023-04-13 00:22:11 -05:00
|
|
|
exclude_subcategories: false,
|
|
|
|
),
|
2023-04-05 23:55:28 -05:00
|
|
|
)
|
2023-04-13 00:22:11 -05:00
|
|
|
end
|
2023-04-10 19:48:07 -05:00
|
|
|
|
2023-05-08 01:04:47 -05:00
|
|
|
if include_category_ids.present?
|
|
|
|
@scope = @scope.where("topics.category_id IN (?)", include_category_ids)
|
|
|
|
elsif category_slugs[:include].values.flatten.present?
|
2023-04-13 00:22:11 -05:00
|
|
|
@scope = @scope.none
|
2023-05-08 01:04:47 -05:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
exclude_category_ids = []
|
|
|
|
|
|
|
|
if category_slugs[:exclude][:without_subcategories].present?
|
|
|
|
exclude_category_ids =
|
|
|
|
get_category_ids_from_slugs(
|
|
|
|
category_slugs[:exclude][:without_subcategories],
|
|
|
|
exclude_subcategories: true,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
if category_slugs[:exclude][:with_subcategories].present?
|
|
|
|
exclude_category_ids.concat(
|
|
|
|
get_category_ids_from_slugs(
|
|
|
|
category_slugs[:exclude][:with_subcategories],
|
|
|
|
exclude_subcategories: false,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
PERF: Optimise query for excluding topics in certain categories in TopicsFilter (#27027)
This commit optimises the database query generated by
`TopicsFilter#filter_categories` when the `-category:*` filter is used.
Previously, the method will add the `topics.category_id NOT IN
(<category ids to be excluded>)` filter to the resulting query. However,
we noticed that the performance of the query degrades as the number of
rows in the `topics` table grow and when the number of category ids to be
excluded is large.
Sample of query we ran on a large database in production to demonstrate
the improvement:
Before:
```
SELECT topics.id FROM topics WHERE topics.category_id NOT IN (83, 136, 149, 143, 153, 165, 161, 123, 155, 163, 144, 134, 69, 135, 158, 141, 151, 160, 131, 133, 89, 104, 150, 147, 132, 145, 108, 146, 122, 100, 128, 154, 95, 102, 140, 139, 88, 91, 87) ORDER BY topics.id DESC LIMIT 5;
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=27795.34..27795.34 rows=1 width=4) (actual time=29.317..30.165 rows=5 loops=1)
-> Sort (cost=27795.34..27795.34 rows=1 width=4) (actual time=29.316..30.163 rows=5 loops=1)
Sort Key: id DESC
Sort Method: top-N heapsort Memory: 25kB
-> Gather (cost=1000.10..27795.33 rows=1 width=4) (actual time=0.187..26.132 rows=73478 loops=1)
Workers Planned: 2
Workers Launched: 2
-> Parallel Seq Scan on topics (cost=0.10..26795.23 rows=1 width=4) (actual time=0.013..22.252 rows=24493 loops=3)
Filter: (category_id <> ALL ('{83,136,149,143,153,165,161,123,155,163,144,134,69,135,158,141,151,160,131,133,89,104,150,147,132,145,108,146,122,100,128,154,95,102,140,139,88,91,87}'::integer[]))
Rows Removed by Filter: 77276
Planning Time: 0.140 ms
Execution Time: 30.181 ms
```
After:
```
SELECT topics.id FROM topics WHERE NOT EXISTS (
SELECT 1
FROM unnest(array[83, 136, 149, 143, 153, 165, 161, 123, 155, 163, 144, 134, 69, 135, 158, 141, 151, 160, 131, 133, 89, 104, 150, 147, 132, 145, 108, 146, 122, 100, 128, 154, 95, 102, 140, 139, 88, 91, 87]) AS excluded_categories(category_id)
WHERE topics.category_id IS NULL OR excluded_categories.category_id = topics.category_id
) ORDER BY topics.id DESC LIMIT 5 ;
QUERY PLAN
-----------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=0.42..13.52 rows=5 width=4) (actual time=0.028..0.110 rows=5 loops=1)
-> Nested Loop Anti Join (cost=0.42..179929.62 rows=68715 width=4) (actual time=0.027..0.109 rows=5 loops=1)
Join Filter: ((topics.category_id IS NULL) OR (excluded_categories.category_id = topics.category_id))
Rows Removed by Join Filter: 239
-> Index Scan Backward using forum_threads_pkey on topics (cost=0.42..108925.71 rows=305301 width=8) (actual time=0.012..0.062 rows=44 loops=1)
-> Function Scan on unnest excluded_categories (cost=0.00..0.39 rows=39 width=4) (actual time=0.000..0.001 rows=6 loops=44)
Planning Time: 0.126 ms
Execution Time: 0.124 ms
(8 rows)
```
2024-05-14 22:03:07 -05:00
|
|
|
# Use `NOT EXISTS` instead of `NOT IN` to avoid performance issues with large arrays.
|
|
|
|
@scope = @scope.where(<<~SQL) if exclude_category_ids.present?
|
|
|
|
NOT EXISTS (
|
|
|
|
SELECT 1
|
|
|
|
FROM unnest(array[#{exclude_category_ids.join(",")}]) AS excluded_categories(category_id)
|
|
|
|
WHERE topics.category_id IS NULL OR excluded_categories.category_id = topics.category_id
|
|
|
|
)
|
|
|
|
SQL
|
2023-04-13 00:22:11 -05:00
|
|
|
end
|
2023-04-10 19:48:07 -05:00
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
def filter_created_by_user(usernames:)
|
|
|
|
@scope =
|
|
|
|
@scope.joins(:user).where(
|
|
|
|
"users.username_lower IN (:usernames)",
|
|
|
|
usernames: usernames.map(&:downcase),
|
|
|
|
)
|
|
|
|
end
|
2023-04-10 19:48:07 -05:00
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
def filter_in(values:)
|
|
|
|
values.uniq!
|
|
|
|
|
|
|
|
if values.delete("pinned")
|
|
|
|
@scope =
|
|
|
|
@scope.where(
|
|
|
|
"topics.pinned_at IS NOT NULL AND topics.pinned_until > topics.pinned_at AND ? < topics.pinned_until",
|
|
|
|
Time.zone.now,
|
2023-04-10 19:48:07 -05:00
|
|
|
)
|
2023-04-13 00:22:11 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
if @guardian.user
|
|
|
|
if values.delete("bookmarked")
|
|
|
|
@scope =
|
|
|
|
@scope.joins(:topic_users).where(
|
|
|
|
"topic_users.bookmarked AND topic_users.user_id = ?",
|
|
|
|
@guardian.user.id,
|
|
|
|
)
|
2023-04-10 19:48:07 -05:00
|
|
|
end
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
if values.present?
|
|
|
|
values.each do |value|
|
|
|
|
value
|
|
|
|
.split(",")
|
|
|
|
.each do |topic_notification_level|
|
|
|
|
if level = TopicUser.notification_levels[topic_notification_level.to_sym]
|
|
|
|
@topic_notification_levels << level
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@scope =
|
|
|
|
@scope.joins(:topic_users).where(
|
|
|
|
"topic_users.notification_level IN (:topic_notification_levels) AND topic_users.user_id = :user_id",
|
|
|
|
topic_notification_levels: @topic_notification_levels.to_a,
|
|
|
|
user_id: @guardian.user.id,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
elsif values.present?
|
|
|
|
@scope = @scope.none
|
2023-04-05 21:13:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
def get_category_ids_from_slugs(slugs, exclude_subcategories: false)
|
|
|
|
category_ids = Category.ids_from_slugs(slugs)
|
2023-04-03 05:36:59 -05:00
|
|
|
|
2023-03-31 01:32:12 -05:00
|
|
|
category_ids =
|
|
|
|
Category
|
2023-04-03 05:36:59 -05:00
|
|
|
.where(id: category_ids)
|
2023-03-31 01:32:12 -05:00
|
|
|
.filter { |category| @guardian.can_see_category?(category) }
|
|
|
|
.map(&:id)
|
|
|
|
|
|
|
|
if !exclude_subcategories
|
|
|
|
category_ids = category_ids.flat_map { |category_id| Category.subcategory_ids(category_id) }
|
|
|
|
end
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
category_ids
|
2023-03-31 01:32:12 -05:00
|
|
|
end
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
# Accepts an array of tag names and returns an array of tag ids and the tag ids of aliases for the tag names which the user can see.
|
|
|
|
# If a block is given, it will be called with the tag ids and alias tag ids as arguments.
|
|
|
|
def tag_ids_from_tag_names(tag_names)
|
|
|
|
tag_ids, alias_tag_ids =
|
2023-03-27 01:16:53 -05:00
|
|
|
DiscourseTagging
|
|
|
|
.filter_visible(Tag, @guardian)
|
|
|
|
.where_name(tag_names)
|
|
|
|
.pluck(:id, :target_tag_id)
|
2023-05-04 02:55:31 -05:00
|
|
|
.transpose
|
2023-03-27 01:16:53 -05:00
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
tag_ids ||= []
|
|
|
|
alias_tag_ids ||= []
|
2023-03-27 01:16:53 -05:00
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
yield(tag_ids, alias_tag_ids) if block_given?
|
2023-03-27 01:16:53 -05:00
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
all_tag_ids = tag_ids.concat(alias_tag_ids)
|
|
|
|
all_tag_ids.compact!
|
|
|
|
all_tag_ids.uniq!
|
|
|
|
all_tag_ids
|
|
|
|
end
|
2023-03-27 01:16:53 -05:00
|
|
|
|
2024-06-13 12:03:49 -05:00
|
|
|
def filter_tag_groups(values:)
|
|
|
|
values.each do |key_prefix, tag_groups|
|
|
|
|
tag_group_ids = TagGroup.visible(@guardian).where(name: tag_groups).pluck(:id)
|
|
|
|
exclude_clause = "NOT" if key_prefix == "-"
|
|
|
|
filter =
|
|
|
|
"tags.id #{exclude_clause} IN (SELECT tag_id FROM tag_group_memberships WHERE tag_group_id IN (?))"
|
|
|
|
|
|
|
|
query =
|
|
|
|
if exclude_clause.present?
|
|
|
|
@scope
|
|
|
|
.joins("LEFT JOIN topic_tags ON topic_tags.topic_id = topics.id")
|
|
|
|
.joins("LEFT JOIN tags ON tags.id = topic_tags.tag_id")
|
|
|
|
.where("tags.id IS NULL OR #{filter}", tag_group_ids)
|
|
|
|
else
|
|
|
|
@scope.joins(:tags).where(filter, tag_group_ids)
|
|
|
|
end
|
|
|
|
|
|
|
|
@scope = query.distinct(:id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-13 00:22:11 -05:00
|
|
|
def filter_tags(values:)
|
|
|
|
return if !SiteSetting.tagging_enabled?
|
|
|
|
|
|
|
|
exclude_all_tags = []
|
|
|
|
exclude_any_tags = []
|
|
|
|
include_any_tags = []
|
|
|
|
include_all_tags = []
|
|
|
|
|
|
|
|
values.each do |key_prefix, value|
|
|
|
|
break if key_prefix && key_prefix != "-"
|
|
|
|
|
|
|
|
value.scan(
|
2024-07-19 15:58:29 -05:00
|
|
|
/\A(?<tag_names>([\p{N}\p{L}\-_]+)(?<delimiter>[,+])?([\p{N}\p{L}\-]+)?(\k<delimiter>[\p{N}\p{L}\-]+)*)\z/,
|
2023-04-13 00:22:11 -05:00
|
|
|
) do |tag_names, delimiter|
|
|
|
|
match_all =
|
|
|
|
if delimiter == ","
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
(
|
|
|
|
case [key_prefix, match_all]
|
|
|
|
in ["-", true]
|
|
|
|
exclude_all_tags
|
|
|
|
in ["-", false]
|
|
|
|
exclude_any_tags
|
|
|
|
in [nil, true]
|
|
|
|
include_all_tags
|
|
|
|
in [nil, false]
|
|
|
|
include_any_tags
|
|
|
|
end
|
|
|
|
).concat(tag_names.split(delimiter))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if exclude_all_tags.present?
|
|
|
|
exclude_topics_with_all_tags(tag_ids_from_tag_names(exclude_all_tags))
|
|
|
|
end
|
|
|
|
|
|
|
|
if exclude_any_tags.present?
|
|
|
|
exclude_topics_with_any_tags(tag_ids_from_tag_names(exclude_any_tags))
|
|
|
|
end
|
|
|
|
|
|
|
|
if include_any_tags.present?
|
|
|
|
include_topics_with_any_tags(tag_ids_from_tag_names(include_any_tags))
|
|
|
|
end
|
|
|
|
|
|
|
|
if include_all_tags.present?
|
|
|
|
has_invalid_tags = false
|
|
|
|
|
|
|
|
all_tag_ids =
|
|
|
|
tag_ids_from_tag_names(include_all_tags) do |tag_ids, _|
|
|
|
|
has_invalid_tags = tag_ids.length < include_all_tags.length
|
|
|
|
end
|
|
|
|
|
|
|
|
if has_invalid_tags
|
|
|
|
@scope = @scope.none
|
|
|
|
else
|
|
|
|
include_topics_with_all_tags(all_tag_ids)
|
|
|
|
end
|
|
|
|
end
|
2023-03-02 19:46:21 -06:00
|
|
|
end
|
|
|
|
|
2023-03-29 20:00:42 -05:00
|
|
|
def topic_tags_alias
|
|
|
|
@topic_tags_alias ||= 0
|
|
|
|
"tt#{@topic_tags_alias += 1}"
|
2023-03-27 01:16:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def exclude_topics_with_all_tags(tag_ids)
|
|
|
|
where_clause = []
|
|
|
|
|
2023-03-29 20:00:42 -05:00
|
|
|
tag_ids.each do |tag_id|
|
|
|
|
sql_alias = "tt#{topic_tags_alias}"
|
2023-03-27 01:16:53 -05:00
|
|
|
|
|
|
|
@scope =
|
|
|
|
@scope.joins(
|
|
|
|
"LEFT JOIN topic_tags #{sql_alias} ON #{sql_alias}.topic_id = topics.id AND #{sql_alias}.tag_id = #{tag_id}",
|
|
|
|
)
|
|
|
|
|
|
|
|
where_clause << "#{sql_alias}.topic_id IS NULL"
|
|
|
|
end
|
|
|
|
|
|
|
|
@scope = @scope.where(where_clause.join(" OR "))
|
|
|
|
end
|
|
|
|
|
|
|
|
def exclude_topics_with_any_tags(tag_ids)
|
|
|
|
@scope =
|
2023-03-27 03:58:40 -05:00
|
|
|
@scope.where(
|
|
|
|
"topics.id NOT IN (SELECT DISTINCT topic_id FROM topic_tags WHERE topic_tags.tag_id IN (?))",
|
|
|
|
tag_ids,
|
|
|
|
)
|
2023-03-27 01:16:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_topics_with_all_tags(tag_ids)
|
2023-03-29 20:00:42 -05:00
|
|
|
tag_ids.each do |tag_id|
|
2023-05-04 02:55:31 -05:00
|
|
|
sql_alias = topic_tags_alias
|
2023-03-29 20:00:42 -05:00
|
|
|
|
2023-03-27 01:16:53 -05:00
|
|
|
@scope =
|
|
|
|
@scope.joins(
|
2023-03-29 20:00:42 -05:00
|
|
|
"INNER JOIN topic_tags #{sql_alias} ON #{sql_alias}.topic_id = topics.id AND #{sql_alias}.tag_id = #{tag_id}",
|
2023-03-27 01:16:53 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_topics_with_any_tags(tag_ids)
|
2023-05-04 02:55:31 -05:00
|
|
|
sql_alias = topic_tags_alias
|
|
|
|
|
|
|
|
@scope =
|
|
|
|
@scope
|
|
|
|
.joins("INNER JOIN topic_tags #{sql_alias} ON #{sql_alias}.topic_id = topics.id")
|
|
|
|
.where("#{sql_alias}.tag_id IN (?)", tag_ids)
|
|
|
|
.distinct(:id)
|
2023-03-02 19:46:21 -06:00
|
|
|
end
|
2023-04-27 02:44:58 -05:00
|
|
|
|
|
|
|
ORDER_BY_MAPPINGS = {
|
|
|
|
"activity" => {
|
|
|
|
column: "topics.bumped_at",
|
|
|
|
},
|
|
|
|
"category" => {
|
|
|
|
column: "categories.name",
|
|
|
|
scope: -> { @scope.joins(:category) },
|
|
|
|
},
|
|
|
|
"created" => {
|
|
|
|
column: "topics.created_at",
|
|
|
|
},
|
|
|
|
"latest-post" => {
|
|
|
|
column: "topics.last_posted_at",
|
|
|
|
},
|
|
|
|
"likes" => {
|
|
|
|
column: "topics.like_count",
|
|
|
|
},
|
|
|
|
"likes-op" => {
|
|
|
|
column: "first_posts.like_count",
|
|
|
|
scope: -> { joins_first_posts(@scope) },
|
|
|
|
},
|
|
|
|
"posters" => {
|
|
|
|
column: "topics.participant_count",
|
|
|
|
},
|
2023-06-27 17:21:56 -05:00
|
|
|
"title" => {
|
|
|
|
column: "LOWER(topics.title)",
|
|
|
|
},
|
2023-04-27 02:44:58 -05:00
|
|
|
"views" => {
|
|
|
|
column: "topics.views",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
private_constant :ORDER_BY_MAPPINGS
|
|
|
|
|
2023-04-30 19:09:08 -05:00
|
|
|
ORDER_BY_REGEXP = /\A(?<order_by>#{ORDER_BY_MAPPINGS.keys.join("|")})(?<asc>-asc)?\z/
|
2023-04-27 02:44:58 -05:00
|
|
|
private_constant :ORDER_BY_REGEXP
|
|
|
|
|
|
|
|
def order_by(values:)
|
|
|
|
values.each do |value|
|
2024-08-07 03:37:00 -05:00
|
|
|
# If the order by value is not recognized, check if it is a custom filter.
|
2023-04-27 02:44:58 -05:00
|
|
|
match_data = value.match(ORDER_BY_REGEXP)
|
|
|
|
if match_data && column_name = ORDER_BY_MAPPINGS.dig(match_data[:order_by], :column)
|
|
|
|
if scope = ORDER_BY_MAPPINGS.dig(match_data[:order_by], :scope)
|
|
|
|
@scope = instance_exec(&scope)
|
|
|
|
end
|
|
|
|
|
2023-06-27 17:21:56 -05:00
|
|
|
@scope = @scope.order("#{column_name} #{match_data[:asc] ? "ASC" : "DESC"}")
|
2024-08-07 03:37:00 -05:00
|
|
|
else
|
|
|
|
match_data = value.match /^(?<column>.*?)(?:-(?<asc>asc))?$/
|
|
|
|
key = "order:#{match_data[:column]}"
|
|
|
|
if custom_match =
|
|
|
|
DiscoursePluginRegistry.custom_filter_mappings.find { |hash| hash.key?(key) }
|
|
|
|
@scope = custom_match[key].call(@scope, match_data[:asc].nil? ? "DESC" : "ASC")
|
|
|
|
end
|
2023-04-27 02:44:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def joins_first_posts(scope)
|
|
|
|
scope.joins(
|
|
|
|
"INNER JOIN posts AS first_posts ON first_posts.topic_id = topics.id AND first_posts.post_number = 1",
|
|
|
|
)
|
|
|
|
end
|
2023-03-02 19:46:21 -06:00
|
|
|
end
|