2019-05-03 06:17:27 +08:00
# frozen_string_literal: true
2013-02-26 00:42:20 +08:00
#
2015-09-03 02:25:18 +08:00
# Helps us find topics.
# Returns a TopicList object containing the topics found.
2013-02-06 03:16:51 +08:00
#
2015-09-03 02:25:18 +08:00
2013-02-06 03:16:51 +08:00
class TopicQuery
2021-08-02 12:41:41 +08:00
include PrivateMessageLists
2024-07-16 10:30:04 +08:00
PG_MAX_INT = 2_147_483_647
DEFAULT_PER_PAGE_COUNT = 30
2017-02-16 04:25:43 +08:00
2018-08-14 15:01:04 +08:00
def self . validators
@validators || =
begin
2023-01-21 02:52:49 +08:00
int = lambda { | x | Integer === x || ( String === x && x . match? ( / \ A-?[0-9]+ \ z / ) ) }
2018-08-15 12:56:24 +08:00
zero_up_to_max_int = lambda { | x | int . call ( x ) && x . to_i . between? ( 0 , PG_MAX_INT ) }
2023-01-17 01:20:19 +08:00
array_or_string = lambda { | x | Array === x || String === x }
2024-07-16 10:30:04 +08:00
string = lambda { | x | String === x }
true_or_false = lambda { | x | x == true || x == false || x == " true " || x == " false " }
2023-01-17 01:20:19 +08:00
{
2024-07-16 10:30:04 +08:00
page : zero_up_to_max_int ,
2023-09-07 12:38:03 +08:00
before : zero_up_to_max_int ,
bumped_before : zero_up_to_max_int ,
2024-07-16 10:30:04 +08:00
topic_ids : array_or_string ,
category : string ,
order : string ,
ascending : true_or_false ,
2023-01-17 01:20:19 +08:00
min_posts : zero_up_to_max_int ,
2024-07-16 10:30:04 +08:00
max_posts : zero_up_to_max_int ,
status : string ,
filter : string ,
state : string ,
search : string ,
q : string ,
f : string ,
subset : string ,
group_name : string ,
2023-01-17 01:20:19 +08:00
tags : array_or_string ,
2024-07-16 10:30:04 +08:00
match_all_tags : true_or_false ,
no_subcategories : true_or_false ,
no_tags : true_or_false ,
exclude_tag : string ,
2023-01-17 01:20:19 +08:00
}
2018-09-03 12:45:32 +08:00
end
2018-08-14 15:01:04 +08:00
end
def self . validate? ( option , value )
if fn = validators [ option . to_sym ]
fn . call ( value )
else
true
end
end
2017-02-16 06:27:10 +08:00
def self . public_valid_options
2023-11-06 18:39:31 +08:00
# For these to work in Ember, add them to `controllers/discovery/list.js`
2017-02-16 06:27:10 +08:00
@public_valid_options || = % i [
page
2017-03-03 03:54:26 +08:00
before
2017-03-03 04:11:38 +08:00
bumped_before
2017-02-16 04:25:43 +08:00
topic_ids
category
order
ascending
2017-02-16 06:27:10 +08:00
min_posts
max_posts
2017-02-16 04:25:43 +08:00
status
2017-02-16 06:27:10 +08:00
filter
2017-02-16 04:25:43 +08:00
state
search
2017-02-16 06:27:10 +08:00
q
2020-08-06 14:33:45 +08:00
f
2023-08-18 12:44:04 +08:00
subset
2017-02-16 04:25:43 +08:00
group_name
2017-02-16 06:27:10 +08:00
tags
match_all_tags
no_subcategories
2021-10-07 03:18:42 +08:00
no_tags
exclude_tag
2023-01-09 20:10:19 +08:00
]
2017-02-16 06:27:10 +08:00
end
def self . valid_options
@valid_options || =
public_valid_options +
% i [
except_topic_ids
limit
page
per_page
visible
2018-01-15 13:13:29 +08:00
guardian
2018-03-14 03:59:12 +08:00
no_definitions
2020-09-14 19:07:35 +08:00
destination_category_id
2022-02-11 20:46:23 +08:00
include_all_pms
2020-09-14 19:07:35 +08:00
include_pms
2023-01-09 20:10:19 +08:00
]
2017-02-16 04:25:43 +08:00
end
2014-04-17 00:05:54 +08:00
# Maps `order` to a columns in `topics`
2013-11-14 03:17:06 +08:00
SORTABLE_MAPPING = {
" likes " = > " like_count " ,
2014-10-03 11:16:53 +08:00
" op_likes " = > " op_likes " ,
2013-11-14 03:17:06 +08:00
" views " = > " views " ,
" posts " = > " posts_count " ,
2014-08-19 01:26:12 +08:00
" activity " = > " bumped_at " ,
2013-11-15 04:50:36 +08:00
" posters " = > " participant_count " ,
2014-08-28 00:42:54 +08:00
" category " = > " category_id " ,
" created " = > " created_at " ,
2013-11-14 03:17:06 +08:00
}
2015-12-22 00:43:17 +08:00
cattr_accessor :results_filter_callbacks
self . results_filter_callbacks = [ ]
2017-02-16 04:25:43 +08:00
attr_accessor :options , :user , :guardian
def self . add_custom_filter ( key , & blk )
@custom_filters || = { }
valid_options << key
2017-02-16 06:27:10 +08:00
public_valid_options << key
2017-02-16 04:25:43 +08:00
@custom_filters [ key ] = blk
end
def self . remove_custom_filter ( key )
@custom_filters . delete ( key )
2017-02-16 06:27:10 +08:00
public_valid_options . delete ( key )
2017-02-16 04:25:43 +08:00
valid_options . delete ( key )
@custom_filters = nil if @custom_filters . length == 0
end
def self . apply_custom_filters ( results , topic_query )
if @custom_filters
@custom_filters . each { | key , filter | results = filter . call ( results , topic_query ) }
end
results
end
2013-07-17 03:20:18 +08:00
def initialize ( user = nil , options = { } )
2017-02-16 04:25:43 +08:00
options . assert_valid_keys ( TopicQuery . valid_options )
2015-09-22 03:14:05 +08:00
@options = options . dup
2013-07-17 03:20:18 +08:00
@user = user
2018-01-15 13:13:29 +08:00
@guardian = options [ :guardian ] || Guardian . new ( @user )
2013-02-06 03:16:51 +08:00
end
2014-02-22 03:17:45 +08:00
def joined_topic_user ( list = nil )
( list || Topic ) . joins (
" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = #{ @user . id . to_i } ) " ,
)
end
2018-11-12 10:04:30 +08:00
def get_pm_params ( topic )
if topic . private_message?
my_group_ids =
topic
. topic_allowed_groups
. joins (
"
LEFT JOIN group_users gu
ON topic_allowed_groups . group_id = gu . group_id
AND gu . user_id = #{@user.id.to_i}
" ,
)
. where ( " gu.group_id IS NOT NULL " )
. pluck ( :group_id )
target_group_ids = topic . topic_allowed_groups . pluck ( :group_id )
target_users = topic . topic_allowed_users
if my_group_ids . present?
# strip out users in groups you already belong to
target_users =
target_users . joins (
2020-12-11 07:56:26 +08:00
" LEFT JOIN group_users gu ON gu.user_id = topic_allowed_users.user_id AND #{ DB . sql_fragment ( " gu.group_id IN (?) " , my_group_ids ) } " ,
2018-11-12 10:04:30 +08:00
) . where ( " gu.group_id IS NULL " )
end
target_user_ids =
target_users . where ( " NOT topic_allowed_users.user_id = ? " , @user . id ) . pluck ( :user_id )
{
topic : topic ,
my_group_ids : my_group_ids ,
target_group_ids : target_group_ids ,
target_user_ids : target_user_ids ,
}
end
end
def list_related_for ( topic , pm_params : nil )
return if ! topic . private_message?
return if @user . blank?
2022-09-26 11:58:40 +08:00
2022-10-05 08:50:20 +08:00
return if ! @user . in_any_groups? ( SiteSetting . personal_message_enabled_groups_map )
2018-11-12 10:04:30 +08:00
builder = SuggestedTopicsBuilder . new ( topic )
pm_params = pm_params || get_pm_params ( topic )
if pm_params [ :my_group_ids ] . present?
builder . add_results (
related_messages_group (
pm_params . merge (
count : [ 6 , builder . results_left ] . max ,
exclude : builder . excluded_topic_ids ,
2023-01-09 20:10:19 +08:00
) ,
) ,
2018-11-12 10:04:30 +08:00
)
else
builder . add_results (
related_messages_user (
pm_params . merge (
count : [ 6 , builder . results_left ] . max ,
exclude : builder . excluded_topic_ids ,
2023-01-09 20:10:19 +08:00
) ,
) ,
2018-11-12 10:04:30 +08:00
)
end
params = { unordered : true }
params [ :preload_posters ] = true
create_list ( :suggested , params , builder . results )
end
2013-02-06 03:16:51 +08:00
# Return a list of suggested topics for a topic
2023-03-28 12:52:17 +08:00
# The include_random param was added so plugins can generate a suggested topics list without the random topics
def list_suggested_for ( topic , pm_params : nil , include_random : true )
2018-01-24 01:05:44 +08:00
# Don't suggest messages unless we have a user, and private messages are
# enabled.
2022-09-26 11:58:40 +08:00
if topic . private_message? &&
2022-10-05 08:50:20 +08:00
( @user . blank? || ! @user . in_any_groups? ( SiteSetting . personal_message_enabled_groups_map ) )
2022-09-26 11:58:40 +08:00
return
end
2016-02-03 15:50:05 +08:00
2013-07-13 02:38:20 +08:00
builder = SuggestedTopicsBuilder . new ( topic )
2013-02-06 03:16:51 +08:00
2018-11-12 10:04:30 +08:00
pm_params = pm_params || get_pm_params ( topic )
2016-02-03 15:50:05 +08:00
2023-03-14 02:37:49 +08:00
if DiscoursePluginRegistry . list_suggested_for_providers . any?
DiscoursePluginRegistry . list_suggested_for_providers . each do | provider |
suggested = provider . call ( topic , pm_params , self )
builder . add_results ( suggested [ :result ] ) if suggested && ! suggested [ :result ] . blank?
end
end
2013-07-13 02:38:20 +08:00
# When logged in we start with different results
2013-07-17 03:20:18 +08:00
if @user
2016-02-03 15:50:05 +08:00
if topic . private_message?
2018-10-29 13:09:58 +08:00
unless builder . full?
2016-02-03 15:50:05 +08:00
builder . add_results ( new_messages ( pm_params . merge ( count : builder . results_left ) ) )
2023-01-09 20:10:19 +08:00
end
2016-02-03 15:50:05 +08:00
2018-10-29 13:09:58 +08:00
unless builder . full?
builder . add_results ( unread_messages ( pm_params . merge ( count : builder . results_left ) ) )
2023-01-09 20:10:19 +08:00
end
2016-02-03 15:50:05 +08:00
else
2023-06-05 08:06:43 +08:00
if @user . new_new_view_enabled?
builder . add_results (
new_and_unread_results (
topic : ,
per_page : builder . results_left ,
max_age : SiteSetting . suggested_topics_unread_max_days_old ,
) ,
)
else
builder . add_results (
unread_results (
topic : topic ,
per_page : builder . results_left ,
max_age : SiteSetting . suggested_topics_unread_max_days_old ,
) ,
:high ,
)
2019-04-16 15:51:57 +08:00
2023-06-05 08:06:43 +08:00
unless builder . full?
builder . add_results ( new_results ( topic : topic , per_page : builder . category_results_left ) )
end
2023-01-09 20:10:19 +08:00
end
2016-02-03 15:50:05 +08:00
end
2013-02-06 03:16:51 +08:00
end
2018-10-29 07:47:59 +08:00
if ! topic . private_message?
2023-03-28 12:52:17 +08:00
if include_random && ! builder . full?
2016-02-03 15:50:05 +08:00
builder . add_results (
random_suggested ( topic , builder . results_left , builder . excluded_topic_ids ) ,
)
2023-01-09 20:10:19 +08:00
end
2016-02-03 15:50:05 +08:00
end
params = { unordered : true }
params [ :preload_posters ] = true if topic . private_message?
create_list ( :suggested , params , builder . results )
2013-02-06 03:16:51 +08:00
end
2013-03-28 04:17:49 +08:00
# The latest view of topics
def list_latest
2014-10-09 00:44:47 +08:00
create_list ( :latest , { } , latest_results )
2013-02-06 03:16:51 +08:00
end
2023-03-03 09:46:21 +08:00
def list_filter
2023-04-11 08:48:07 +08:00
topics_filter =
2023-05-03 12:40:00 +08:00
TopicsFilter . new (
guardian : @guardian ,
scope : latest_results ( include_muted : false , skip_ordering : true ) ,
)
2023-04-11 08:48:07 +08:00
results = topics_filter . filter_from_query_string ( @options [ :q ] )
if ! topics_filter . topic_notification_levels . include? ( NotificationLevels . all [ :muted ] )
results = remove_muted_topics ( results , @user )
end
2023-03-30 12:57:23 +08:00
2023-05-03 12:40:00 +08:00
results = apply_ordering ( results ) if results . order_values . empty?
2023-03-30 12:57:23 +08:00
create_list ( :filter , { } , results )
2023-03-03 09:46:21 +08:00
end
2013-02-06 03:16:51 +08:00
def list_read
2013-04-03 04:52:51 +08:00
create_list ( :read , unordered : true ) do | topics |
2017-04-27 00:26:37 +08:00
topics . where ( " tu.last_visited_at IS NOT NULL " ) . order ( " tu.last_visited_at DESC " )
2013-02-06 03:16:51 +08:00
end
end
def list_new
2023-02-27 20:11:01 +08:00
if @user & . new_new_view_enabled?
2023-08-18 12:44:04 +08:00
list =
case @options [ :subset ]
when " topics "
new_results
when " replies "
unread_results
else
new_and_unread_results
end
create_list ( :new , { unordered : true } , list )
2023-02-27 20:11:01 +08:00
else
create_list ( :new , { unordered : true } , new_results )
end
2013-02-06 03:16:51 +08:00
end
def list_unread
2015-02-23 13:50:52 +08:00
create_list ( :unread , { unordered : true } , unread_results )
2013-02-06 03:16:51 +08:00
end
2021-08-10 22:30:34 +08:00
def list_unseen
create_list ( :unseen , { unordered : true } , unseen_results )
end
2013-02-06 03:16:51 +08:00
def list_posted
2014-03-30 06:26:13 +08:00
create_list ( :posted ) { | l | l . where ( " tu.posted " ) }
2013-02-06 03:16:51 +08:00
end
2015-01-25 12:53:11 +08:00
def list_bookmarks
create_list ( :bookmarks ) { | l | l . where ( " tu.bookmarked " ) }
end
2024-01-17 10:01:04 +08:00
def list_hot
2024-02-15 15:27:54 +08:00
create_list ( :hot , unordered : true , prioritize_pinned : true ) do | topics |
2024-01-17 13:12:03 +08:00
topics = remove_muted_topics ( topics , user )
topics = remove_muted_categories ( topics , user , exclude : options [ :category ] )
TopicQuery . remove_muted_tags ( topics , user , options )
2024-01-17 10:01:04 +08:00
topics . joins ( " JOIN topic_hot_scores on topics.id = topic_hot_scores.topic_id " ) . order (
" topic_hot_scores.score DESC " ,
)
end
end
2013-12-28 01:10:35 +08:00
def list_top_for ( period )
2021-07-24 01:52:35 +08:00
score_column = TopTopic . score_column_for_period ( period )
2013-12-24 07:50:36 +08:00
create_list ( :top , unordered : true ) do | topics |
2020-05-08 03:04:53 +08:00
topics = remove_muted_categories ( topics , @user )
2021-07-24 01:52:35 +08:00
topics = topics . joins ( :top_topic ) . where ( " top_topics. #{ score_column } > 0 " )
2014-09-05 13:20:39 +08:00
if period == :yearly && @user . try ( :trust_level ) == TrustLevel [ 0 ]
2021-07-24 01:52:35 +08:00
topics . order ( << ~ SQL )
CASE WHEN (
COALESCE ( topics . pinned_at , '1900-01-01' ) > COALESCE ( tu . cleared_pinned_at , '1900-01-01' )
) THEN 0 ELSE 1 END ,
top_topics . #{score_column} DESC,
topics . bumped_at DESC
SQL
2014-01-19 02:03:09 +08:00
else
2021-07-24 01:52:35 +08:00
topics . order ( << ~ SQL )
COALESCE ( top_topics . #{score_column}, 0) DESC, topics.bumped_at DESC
SQL
2014-01-19 02:03:09 +08:00
end
2013-12-24 07:50:36 +08:00
end
2014-01-14 08:02:14 +08:00
end
2013-07-25 05:15:21 +08:00
def list_topics_by ( user )
2015-03-24 06:12:37 +08:00
@options [ :filtered_to_user ] = user . id
2013-07-25 05:15:21 +08:00
create_list ( :user_topics ) { | topics | topics . where ( user_id : user . id ) }
end
2018-03-14 19:40:28 +08:00
def list_group_topics ( group )
list =
default_results . where (
"
topics . user_id IN (
2022-11-02 03:05:13 +08:00
SELECT user_id FROM group_users gu WHERE gu . group_id = ?
2018-03-14 19:40:28 +08:00
)
2022-11-02 03:05:13 +08:00
" ,
group . id . to_i ,
)
2018-03-14 19:40:28 +08:00
create_list ( :group_topics , { } , list )
end
2015-02-23 13:50:52 +08:00
def list_category_topic_ids ( category )
2015-02-25 11:24:25 +08:00
query = default_results ( category : category . id )
2018-03-23 04:38:53 +08:00
pinned_ids =
query
. where ( " topics.pinned_at IS NOT NULL AND topics.category_id = ? " , category . id )
. limit ( nil )
. order ( " pinned_at DESC " )
. pluck ( :id )
non_pinned_ids =
query . where ( " topics.pinned_at IS NULL OR topics.category_id <> ? " , category . id ) . pluck ( :id )
2015-06-11 02:36:47 +08:00
( pinned_ids + non_pinned_ids )
2013-02-06 03:16:51 +08:00
end
2013-02-28 11:36:12 +08:00
def list_new_in_category ( category )
2014-02-05 04:55:30 +08:00
create_list ( :new_in_category , unordered : true , category : category . id ) do | list |
list . by_newest . first ( 25 )
2014-01-18 06:52:06 +08:00
end
2013-02-28 11:36:12 +08:00
end
DEV: Topic tracking state improvements (#13218)
I merged this PR in yesterday, finally thinking this was done https://github.com/discourse/discourse/pull/12958 but then a wild performance regression occurred. These are the problem methods:
https://github.com/discourse/discourse/blob/1aa20bd681e634f7fff22953ed62d90c2573b331/app/serializers/topic_tracking_state_serializer.rb#L13-L21
Turns out date comparison is super expensive on the backend _as well as_ the frontend.
The fix was to just move the `treat_as_new_topic_start_date` into the SQL query rather than using the slower `UserOption#treat_as_new_topic_start_date` method in ruby. After this change, 1% of the total time is spent with the `created_in_new_period` comparison instead of ~20%.
----
History:
Original PR which had to be reverted **https://github.com/discourse/discourse/pull/12555**. See the description there for what this PR is achieving, plus below.
The issue with the original PR is addressed in https://github.com/discourse/discourse/pull/12958/commits/92ef54f4020111ffacb0f2a27da5d5c2855f9d5d
If you went to the `x unread` link for a tag Chrome would freeze up and possibly crash, or eventually unfreeze after nearly 10 mins. Other routes for unread/new were similarly slow. From profiling the issue was the `sync` function of `topic-tracking-state.js`, which calls down to `isNew` which in turn calls `moment`, a change I had made in the PR above. The time it takes locally with ~1400 topics in the tracking state is 2.3 seconds.
To solve this issue, I have moved these calculations for "created in new period" and "unread not too old" into the tracking state serializer.
When I was looking at the profiler I also noticed this issue which was just compounding the problem. Every time we modify topic tracking state we recalculate the sidebar tracking/everything/tag counts. However this calls `forEachTracked` and `countTags` which can be quite expensive as they go through the whole tracking state (and were also calling the removed moment functions).
I added some logs and this was being called 30 times when navigating to a new /unread route because `sync` is being called from `build-topic-route` (one for each topic loaded due to pagination). So I just added a debounce here and it makes things even faster.
Finally, I changed topic tracking state to use a Map so our counts of the state keys is faster (Maps have .size whereas objects you have to do Object.keys(obj) which is O(n).)
<!-- NOTE: All pull requests should have tests (rspec in Ruby, qunit in JavaScript). If your code does not include test coverage, please include an explanation of why it was omitted. -->
2021-06-02 07:06:29 +08:00
def self . new_filter ( list , treat_as_new_topic_start_date : nil , treat_as_new_topic_clause_sql : nil )
if treat_as_new_topic_start_date
list =
list . where ( " topics.created_at >= :created_at " , created_at : treat_as_new_topic_start_date )
else
list = list . where ( " topics.created_at >= #{ treat_as_new_topic_clause_sql } " )
end
2013-05-23 13:21:07 +08:00
list . where ( " tu.last_read_post_number IS NULL " ) . where (
" COALESCE(tu.notification_level, :tracking) >= :tracking " ,
tracking : TopicUser . notification_levels [ :tracking ] ,
)
end
2022-06-30 08:18:12 +08:00
def self . unread_filter ( list , whisperer : false )
col_name = whisperer ? " highest_staff_post_number " : " highest_post_number "
2016-12-02 14:03:31 +08:00
2017-05-26 03:07:12 +08:00
list . where ( " tu.last_read_post_number < topics. #{ col_name } " ) . where (
2017-11-20 11:49:09 +08:00
" COALESCE(tu.notification_level, :regular) >= :tracking " ,
regular : TopicUser . notification_levels [ :regular ] ,
tracking : TopicUser . notification_levels [ :tracking ] ,
)
2013-05-21 14:39:51 +08:00
end
2022-06-01 14:54:42 +08:00
# Any changes here will need to be reflected in `lib/topic-list-tracked-filter.js` for the `isTrackedTopic` function on
# the client side. The `f=tracked` query param is not heavily used so we do not want to be querying for a topic's
# tracked status by default. Instead, the client will handle the filtering when the `f=tracked` query params is present.
2020-09-26 03:39:37 +08:00
def self . tracked_filter ( list , user_id )
2022-06-01 12:09:58 +08:00
tracked_category_ids_sql = << ~ SQL
SELECT cd . category_id FROM category_users cd
WHERE cd . user_id = :user_id AND cd . notification_level > = :tracking
SQL
has_sub_sub_categories = SiteSetting . max_category_nesting == 3
2020-09-26 03:39:37 +08:00
sql = + << ~ SQL
topics . category_id IN (
2022-06-01 12:09:58 +08:00
SELECT
c . id
FROM categories c
#{has_sub_sub_categories ? "LEFT JOIN categories parent_categories ON parent_categories.id = c.parent_category_id" : ""}
2022-06-08 10:45:59 +08:00
WHERE ( c . id IN ( #{tracked_category_ids_sql}))
2022-06-01 12:09:58 +08:00
OR c . parent_category_id IN ( #{tracked_category_ids_sql})
#{has_sub_sub_categories ? "OR (parent_categories.id IS NOT NULL AND parent_categories.parent_category_id IN (#{tracked_category_ids_sql}))" : ""}
2020-10-08 00:15:28 +08:00
)
2020-09-26 03:39:37 +08:00
SQL
sql << << ~ SQL if SiteSetting . tagging_enabled
OR topics . id IN (
SELECT tt . topic_id FROM topic_tags tt WHERE tt . tag_id IN (
SELECT tu . tag_id
FROM tag_users tu
WHERE tu . user_id = :user_id AND tu . notification_level > = :tracking
)
)
SQL
list . where ( sql , user_id : user_id , tracking : NotificationLevels . all [ :tracking ] )
end
2015-02-23 13:50:52 +08:00
def prioritize_pinned_topics ( topics , options )
2019-05-03 06:17:27 +08:00
pinned_clause =
if options [ :category_id ]
+ " topics.category_id = #{ options [ :category_id ] . to_i } AND "
else
+ " pinned_globally AND "
end
2015-02-23 13:50:52 +08:00
pinned_clause << " pinned_at IS NOT NULL "
2019-05-03 06:17:27 +08:00
2015-02-23 13:50:52 +08:00
if @user
pinned_clause << " AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL) "
end
unpinned_topics = topics . where ( " NOT ( #{ pinned_clause } ) " )
2021-08-19 19:43:58 +08:00
pinned_topics = topics . dup . offset ( nil ) . where ( pinned_clause ) . reorder ( pinned_at : :desc )
2015-02-23 13:50:52 +08:00
per_page = options [ :per_page ] || per_page_setting
limit = per_page unless options [ :limit ] == false
page = options [ :page ] . to_i
if page == 0
( pinned_topics + unpinned_topics ) [ 0 ... limit ] if limit
else
2017-08-31 12:06:56 +08:00
offset = ( page * per_page ) - pinned_topics . length
2023-02-16 17:40:11 +08:00
offset = 0 if offset < = 0
2015-02-26 11:48:56 +08:00
unpinned_topics . offset ( offset ) . to_a
2015-02-23 13:50:52 +08:00
end
end
2015-01-09 05:44:27 +08:00
def create_list ( filter , options = { } , topics = nil )
2021-10-12 12:55:03 +08:00
options [ :filter ] || = filter
2015-01-09 05:44:27 +08:00
topics || = default_results ( options )
topics = yield ( topics ) if block_given?
2023-04-08 00:01:42 +08:00
topics =
DiscoursePluginRegistry . apply_modifier ( :topic_query_create_list_topics , topics , options , self )
2015-02-23 13:50:52 +08:00
options = options . merge ( @options )
2024-02-15 15:27:54 +08:00
apply_pinning = filter != :private_messages
apply_pinning && = %w[ activity default ] . include? ( options [ :order ] || " activity " )
apply_pinning && = ! options [ :unordered ] || options [ :prioritize_pinned ]
topics = prioritize_pinned_topics ( topics , options ) if apply_pinning
2015-02-23 13:50:52 +08:00
2016-02-03 15:50:05 +08:00
topics = topics . to_a
if options [ :preload_posters ]
user_ids = [ ]
topics . each do | ft |
2023-02-28 00:20:00 +08:00
user_ids << ft . user_id << ft . last_post_user_id << ft . featured_user_ids <<
ft . allowed_user_ids
2016-02-03 15:50:05 +08:00
end
2020-07-17 17:48:08 +08:00
user_lookup = UserLookup . new ( user_ids )
2017-09-14 12:07:35 +08:00
2019-06-05 16:22:47 +08:00
# memoize for loop so we don't keep looking these up
translations = TopicPostersSummary . translations
2016-02-03 15:50:05 +08:00
topics . each do | t |
2017-09-14 12:07:35 +08:00
t . posters = t . posters_summary ( user_lookup : user_lookup , translations : translations )
2016-02-03 15:50:05 +08:00
end
end
topics . each do | t |
2023-05-31 22:02:06 +08:00
if filter == :private_messages
t . allowed_user_ids = t . allowed_users . map { | u | u . id }
t . allowed_group_ids = t . allowed_groups . map { | g | g . id }
else
t . allowed_user_ids = [ ]
t . allowed_group_ids = [ ]
end
2015-02-23 13:50:52 +08:00
end
2016-02-03 15:50:05 +08:00
list = TopicList . new ( filter , @user , topics , options . merge ( @options ) )
2018-08-15 07:22:03 +08:00
list . per_page = options [ :per_page ] || per_page_setting
2015-01-09 05:44:27 +08:00
list
end
def latest_results ( options = { } )
result = default_results ( options )
2021-08-10 22:30:34 +08:00
result = remove_muted ( result , @user , options )
result = apply_shared_drafts ( result , get_category_id ( options [ :category ] ) , options )
# plugins can remove topics here:
self . class . results_filter_callbacks . each do | filter_callback |
result = filter_callback . call ( :latest , result , @user , options )
end
result
end
def unseen_results ( options = { } )
result = default_results ( options )
2022-06-30 08:18:12 +08:00
result = unseen_filter ( result , @user . first_seen_at , @user . whisperer? ) if @user
2021-08-10 22:30:34 +08:00
result = remove_muted ( result , @user , options )
2018-12-07 20:44:23 +08:00
result = apply_shared_drafts ( result , get_category_id ( options [ :category ] ) , options )
2015-12-22 00:43:17 +08:00
# plugins can remove topics here:
self . class . results_filter_callbacks . each do | filter_callback |
result = filter_callback . call ( :latest , result , @user , options )
end
2015-01-09 05:44:27 +08:00
result
end
def unread_results ( options = { } )
2017-05-26 03:07:12 +08:00
result =
TopicQuery . unread_filter (
default_results ( options . reverse_merge ( unordered : true ) ) ,
2022-06-30 08:18:12 +08:00
whisperer : @user & . whisperer? ,
2015-01-09 05:44:27 +08:00
) . order ( " CASE WHEN topics.user_id = tu.user_id THEN 1 ELSE 2 END " )
2015-12-22 00:43:17 +08:00
2023-02-16 21:02:09 +08:00
result = apply_max_age_limit ( result , options )
2019-04-05 09:44:36 +08:00
2015-12-22 00:43:17 +08:00
self . class . results_filter_callbacks . each do | filter_callback |
result = filter_callback . call ( :unread , result , @user , options )
end
2015-01-09 05:44:27 +08:00
suggested_ordering ( result , options )
end
def new_results ( options = { } )
2015-02-23 13:50:52 +08:00
# TODO does this make sense or should it be ordered on created_at
# it is ordering on bumped_at now
DEV: Topic tracking state improvements (#13218)
I merged this PR in yesterday, finally thinking this was done https://github.com/discourse/discourse/pull/12958 but then a wild performance regression occurred. These are the problem methods:
https://github.com/discourse/discourse/blob/1aa20bd681e634f7fff22953ed62d90c2573b331/app/serializers/topic_tracking_state_serializer.rb#L13-L21
Turns out date comparison is super expensive on the backend _as well as_ the frontend.
The fix was to just move the `treat_as_new_topic_start_date` into the SQL query rather than using the slower `UserOption#treat_as_new_topic_start_date` method in ruby. After this change, 1% of the total time is spent with the `created_in_new_period` comparison instead of ~20%.
----
History:
Original PR which had to be reverted **https://github.com/discourse/discourse/pull/12555**. See the description there for what this PR is achieving, plus below.
The issue with the original PR is addressed in https://github.com/discourse/discourse/pull/12958/commits/92ef54f4020111ffacb0f2a27da5d5c2855f9d5d
If you went to the `x unread` link for a tag Chrome would freeze up and possibly crash, or eventually unfreeze after nearly 10 mins. Other routes for unread/new were similarly slow. From profiling the issue was the `sync` function of `topic-tracking-state.js`, which calls down to `isNew` which in turn calls `moment`, a change I had made in the PR above. The time it takes locally with ~1400 topics in the tracking state is 2.3 seconds.
To solve this issue, I have moved these calculations for "created in new period" and "unread not too old" into the tracking state serializer.
When I was looking at the profiler I also noticed this issue which was just compounding the problem. Every time we modify topic tracking state we recalculate the sidebar tracking/everything/tag counts. However this calls `forEachTracked` and `countTags` which can be quite expensive as they go through the whole tracking state (and were also calling the removed moment functions).
I added some logs and this was being called 30 times when navigating to a new /unread route because `sync` is being called from `build-topic-route` (one for each topic loaded due to pagination). So I just added a debounce here and it makes things even faster.
Finally, I changed topic tracking state to use a Map so our counts of the state keys is faster (Maps have .size whereas objects you have to do Object.keys(obj) which is O(n).)
<!-- NOTE: All pull requests should have tests (rspec in Ruby, qunit in JavaScript). If your code does not include test coverage, please include an explanation of why it was omitted. -->
2021-06-02 07:06:29 +08:00
result =
TopicQuery . new_filter (
default_results ( options . reverse_merge ( unordered : true ) ) ,
treat_as_new_topic_start_date : @user . user_option . treat_as_new_topic_start_date ,
)
2021-08-10 22:30:34 +08:00
result = remove_muted ( result , @user , options )
2021-02-04 08:27:34 +08:00
result = remove_dismissed ( result , @user )
2015-12-22 00:43:17 +08:00
self . class . results_filter_callbacks . each do | filter_callback |
result = filter_callback . call ( :new , result , @user , options )
end
2015-01-09 05:44:27 +08:00
suggested_ordering ( result , options )
end
2023-02-16 21:02:09 +08:00
def new_and_unread_results ( options = { } )
base = default_results ( options . reverse_merge ( unordered : true ) )
new_results =
TopicQuery . new_filter (
base ,
treat_as_new_topic_start_date : @user . user_option . treat_as_new_topic_start_date ,
)
2023-06-05 08:06:43 +08:00
2023-02-16 21:02:09 +08:00
new_results = remove_muted ( new_results , @user , options )
new_results = remove_dismissed ( new_results , @user )
unread_results =
apply_max_age_limit ( TopicQuery . unread_filter ( base , whisperer : @user & . whisperer? ) , options )
base . joins_values . concat ( new_results . joins_values , unread_results . joins_values )
base . joins_values . uniq!
results = base . merge ( new_results . or ( unread_results ) )
results = results . order ( " CASE WHEN topics.user_id = tu.user_id THEN 1 ELSE 2 END " )
suggested_ordering ( results , options )
end
2013-02-06 03:16:51 +08:00
protected
2014-12-16 00:54:26 +08:00
def per_page_setting
2021-06-17 06:20:09 +08:00
DEFAULT_PER_PAGE_COUNT
2014-12-16 00:54:26 +08:00
end
2018-03-26 22:43:30 +08:00
def apply_shared_drafts ( result , category_id , options )
2019-08-29 09:35:31 +08:00
# PERF: avoid any penalty if there are no shared drafts enabled
# on some sites the cost can be high eg: gearbox
return result if SiteSetting . shared_drafts_category == " "
2018-03-29 03:36:12 +08:00
drafts_category_id = SiteSetting . shared_drafts_category . to_i
viewing_shared = category_id && category_id == drafts_category_id
2018-12-07 02:59:29 +08:00
2021-02-01 22:16:34 +08:00
if guardian . can_see_shared_draft?
2020-12-15 03:08:20 +08:00
if options [ :destination_category_id ]
destination_category_id = get_category_id ( options [ :destination_category_id ] )
topic_ids = SharedDraft . where ( category_id : destination_category_id ) . pluck ( :topic_id )
return result . where ( id : topic_ids )
end
return result . includes ( :shared_draft ) . references ( :shared_draft ) if viewing_shared
elsif viewing_shared
return (
result . joins ( " LEFT OUTER JOIN shared_drafts sd ON sd.topic_id = topics.id " ) . where (
" sd.id IS NULL " ,
)
2023-01-09 20:10:19 +08:00
)
2018-03-26 22:43:30 +08:00
end
2020-12-15 03:08:20 +08:00
result . where ( " topics.category_id != ? " , drafts_category_id )
2013-11-15 04:50:36 +08:00
end
2013-11-14 03:17:06 +08:00
2023-05-03 12:40:00 +08:00
def apply_ordering ( result , options = { } )
2024-01-24 15:28:12 +08:00
order_option = options [ :order ]
2013-11-15 04:50:36 +08:00
sort_dir = ( options [ :ascending ] == " true " ) ? " ASC " : " DESC "
2024-01-24 15:28:12 +08:00
new_result =
DiscoursePluginRegistry . apply_modifier (
:topic_query_apply_ordering_result ,
result ,
order_option ,
sort_dir ,
options ,
self ,
)
return new_result if ! new_result . nil? && new_result != result
sort_column = SORTABLE_MAPPING [ order_option ] || " default "
2014-10-03 11:16:53 +08:00
# If we are sorting in the default order desc, we should consider including pinned
# topics. Otherwise, just use bumped_at.
if sort_column == " default "
2015-01-05 14:39:49 +08:00
if sort_dir == " DESC "
# If something requires a custom order, for example "unread" which sorts the least read
# to the top, do nothing
return result if options [ :unordered ]
2014-10-03 11:16:53 +08:00
end
2013-11-14 03:17:06 +08:00
sort_column = " bumped_at "
2018-06-07 13:28:18 +08:00
end
2014-10-03 11:16:53 +08:00
2016-02-26 00:22:23 +08:00
# If we are sorting by category, actually use the name
if sort_column == " category_id "
# TODO forces a table scan, slow
2021-07-24 01:52:35 +08:00
return result . references ( :categories ) . order ( << ~ SQL )
CASE WHEN categories . id = #{SiteSetting.uncategorized_category_id.to_i} THEN '' ELSE categories.name END #{sort_dir}
SQL
2016-02-26 00:22:23 +08:00
end
2013-11-14 03:17:06 +08:00
if sort_column == " op_likes "
return (
result . includes ( :first_post ) . order (
" (SELECT like_count FROM posts p3 WHERE p3.topic_id = topics.id AND p3.post_number = 1) #{ sort_dir } " ,
)
2023-01-09 20:10:19 +08:00
)
2013-11-14 03:17:06 +08:00
end
2014-06-18 09:23:31 +08:00
if sort_column . start_with? ( " custom_fields " )
field = sort_column . split ( " . " ) [ 1 ]
return (
result . order (
" (SELECT CASE WHEN EXISTS (SELECT true FROM topic_custom_fields tcf WHERE tcf.topic_id::integer = topics.id::integer AND tcf.name = ' #{ field } ') THEN (SELECT value::integer FROM topic_custom_fields tcf WHERE tcf.topic_id::integer = topics.id::integer AND tcf.name = ' #{ field } ') ELSE 0 END) #{ sort_dir } " ,
)
2023-01-09 20:10:19 +08:00
)
2014-06-18 09:23:31 +08:00
end
2013-07-17 03:20:18 +08:00
result . order ( " topics. #{ sort_column } #{ sort_dir } " )
end
2018-06-07 13:28:18 +08:00
2013-07-17 03:20:18 +08:00
def get_category_id ( category_id_or_slug )
2024-05-27 18:27:13 +08:00
return nil if category_id_or_slug . blank?
2013-07-17 03:20:18 +08:00
category_id = category_id_or_slug . to_i
2019-10-28 23:20:27 +08:00
if category_id == 0
2023-02-13 12:39:45 +08:00
category_id = Category . where ( slug : category_id_or_slug , parent_category_id : nil ) . pick ( :id )
2019-10-28 23:20:27 +08:00
end
2014-06-18 09:23:31 +08:00
category_id
2018-06-07 13:28:18 +08:00
end
2013-02-06 03:16:51 +08:00
2015-03-24 06:12:37 +08:00
# Create results based on a bunch of default options
def default_results ( options = { } )
options . reverse_merge! ( @options )
2021-06-17 06:20:09 +08:00
options . reverse_merge! ( per_page : per_page_setting ) unless options [ :limit ] == false
2015-03-24 06:12:37 +08:00
2023-01-17 16:50:15 +08:00
# Whether to include unlisted (visible = false) topics
viewing_own_topics = @user && @user . id == options [ :filtered_to_user ]
if options [ :visible ] . nil?
options [ :visible ] = true if @user . nil? || @user . regular?
options [ :visible ] = false if @guardian . can_see_unlisted_topics? || viewing_own_topics
end
2013-03-07 04:17:07 +08:00
2013-07-17 03:20:18 +08:00
# Start with a list of all topics
2023-03-03 09:46:21 +08:00
result = Topic . includes ( :category )
2013-03-07 04:17:07 +08:00
2018-06-07 13:28:18 +08:00
if @user
2014-02-22 03:17:45 +08:00
result =
result . joins (
" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = #{ @user . id . to_i } ) " ,
2014-02-27 00:09:02 +08:00
) . references ( " tu " )
2018-06-07 13:28:18 +08:00
end
2014-06-18 09:23:31 +08:00
category_id = get_category_id ( options [ :category ] )
2014-10-09 00:44:47 +08:00
@options [ :category_id ] = category_id
2014-06-18 09:23:31 +08:00
if category_id
2024-07-16 10:30:04 +08:00
if ActiveModel :: Type :: Boolean . new . cast ( options [ :no_subcategories ] )
PERF: Improve database query perf when loading topics for a category. (#14416)
* PERF: Improve database query perf when loading topics for a category.
Instead of left joining the `topics` table against `categories` by filtering with `categories.id`,
we can improve the query plan by filtering against `topics.category_id`
first before joining which helps to reduce the number of rows in the
topics table that has to be joined against the other tables and also
make better use of our existing index.
The following is a before and after of the query plan for a category
with many subcategories.
Before:
```
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
Limit (cost=1.28..747.09 rows=30 width=12) (actual time=85.502..2453.727 rows=30 loops=1)
-> Nested Loop Left Join (cost=1.28..566518.36 rows=22788 width=12) (actual time=85.501..2453.722 rows=30 loops=1)
Join Filter: (category_users.category_id = topics.category_id)
Filter: ((topics.category_id = 11) OR (COALESCE(category_users.notification_level, 1) <> 0) OR (tu.notification_level > 1))
-> Nested Loop Left Join (cost=1.00..566001.58 rows=22866 width=20) (actual time=85.494..2453.702 rows=30 loops=1)
Filter: ((COALESCE(tu.notification_level, 1) > 0) AND ((topics.category_id <> 11) OR (topics.pinned_at IS NULL) OR ((t
opics.pinned_at <= tu.cleared_pinned_at) AND (tu.cleared_pinned_at IS NOT NULL))))
Rows Removed by Filter: 1
-> Nested Loop (cost=0.57..528561.75 rows=68606 width=24) (actual time=85.472..2453.562 rows=31 loops=1)
Join Filter: ((topics.category_id = categories.id) AND ((categories.topic_id <> topics.id) OR (categories.id = 1
1)))
Rows Removed by Join Filter: 13938306
-> Index Scan using index_topics_on_bumped_at on topics (cost=0.42..100480.05 rows=715549 width=24) (actual ti
me=0.010..633.015 rows=464623 loops=1)
Filter: ((deleted_at IS NULL) AND ((archetype)::text <> 'private_message'::text))
Rows Removed by Filter: 105321
-> Materialize (cost=0.14..36.04 rows=30 width=8) (actual time=0.000..0.002 rows=30 loops=464623)
-> Index Scan using categories_pkey on categories (cost=0.14..35.89 rows=30 width=8) (actual time=0.006.
.0.040 rows=30 loops=1)
Index Cond: (id = ANY ('{11,53,57,55,54,56,112,94,107,115,116,117,97,95,102,103,101,105,99,114,106,1
13,104,98,100,96,108,109,110,111}'::integer[]))
-> Index Scan using index_topic_users_on_topic_id_and_user_id on topic_users tu (cost=0.43..0.53 rows=1 width=16) (a
ctual time=0.004..0.004 rows=0 loops=31)
Index Cond: ((topic_id = topics.id) AND (user_id = 1103877))
-> Materialize (cost=0.28..2.30 rows=1 width=8) (actual time=0.000..0.000 rows=0 loops=30)
-> Index Scan using index_category_users_on_user_id_and_last_seen_at on category_users (cost=0.28..2.29 rows=1 width
=8) (actual time=0.004..0.004 rows=0 loops=1)
Index Cond: (user_id = 1103877)
Planning Time: 1.359 ms
Execution Time: 2453.765 ms
(23 rows)
```
After:
```
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=1.28..438.55 rows=30 width=12) (actual time=38.297..657.215 rows=30 loops=1)
-> Nested Loop Left Join (cost=1.28..195944.68 rows=13443 width=12) (actual time=38.296..657.211 rows=30 loops=1)
Filter: ((categories.topic_id <> topics.id) OR (topics.category_id = 11))
Rows Removed by Filter: 29
-> Nested Loop Left Join (cost=1.13..193462.59 rows=13443 width=16) (actual time=38.289..657.092 rows=59 loops=1)
Join Filter: (category_users.category_id = topics.category_id)
Filter: ((topics.category_id = 11) OR (COALESCE(category_users.notification_level, 1) <> 0) OR (tu.notification_level > 1))
-> Nested Loop Left Join (cost=0.85..193156.79 rows=13489 width=20) (actual time=38.282..657.059 rows=59 loops=1)
Filter: ((COALESCE(tu.notification_level, 1) > 0) AND ((topics.category_id <> 11) OR (topics.pinned_at IS NULL) OR ((topics.pinned_at <= tu.cleared_pinned_at) AND (tu.cleared_pinned_at IS NOT NULL))))
Rows Removed by Filter: 1
-> Index Scan using index_topics_on_bumped_at on topics (cost=0.42..134521.06 rows=40470 width=24) (actual time=38.267..656.850 rows=60 loops=1)
Filter: ((deleted_at IS NULL) AND ((archetype)::text <> 'private_message'::text) AND (category_id = ANY ('{11,53,57,55,54,56,112,94,107,115,116,117,97,95,102,103,101,105,99,114,106,113,104,98,100,96,108,109,110,111}'::integer[])))
Rows Removed by Filter: 569895
-> Index Scan using index_topic_users_on_topic_id_and_user_id on topic_users tu (cost=0.43..1.43 rows=1 width=16) (actual time=0.003..0.003 rows=0 loops=60)
Index Cond: ((topic_id = topics.id) AND (user_id = 1103877))
-> Materialize (cost=0.28..2.30 rows=1 width=8) (actual time=0.000..0.000 rows=0 loops=59)
-> Index Scan using index_category_users_on_user_id_and_last_seen_at on category_users (cost=0.28..2.29 rows=1 width=8) (actual time=0.004..0.004 rows=0 loops=1)
Index Cond: (user_id = 1103877)
-> Index Scan using categories_pkey on categories (cost=0.14..0.17 rows=1 width=8) (actual time=0.001..0.001 rows=1 loops=59)
Index Cond: (id = topics.category_id)
Planning Time: 1.633 ms
Execution Time: 657.255 ms
(22 rows)
```
* PERF: Optimize index on topics bumped_at.
Replace `index_topics_on_bumped_at` index with a partial index on `Topic#bumped_at` filtered by archetype since there is already another index that covers private topics.
2021-09-28 10:05:00 +08:00
result = result . where ( " topics.category_id = ? " , category_id )
2014-06-18 09:23:31 +08:00
else
PERF: Improve database query perf when loading topics for a category. (#14416)
* PERF: Improve database query perf when loading topics for a category.
Instead of left joining the `topics` table against `categories` by filtering with `categories.id`,
we can improve the query plan by filtering against `topics.category_id`
first before joining which helps to reduce the number of rows in the
topics table that has to be joined against the other tables and also
make better use of our existing index.
The following is a before and after of the query plan for a category
with many subcategories.
Before:
```
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
Limit (cost=1.28..747.09 rows=30 width=12) (actual time=85.502..2453.727 rows=30 loops=1)
-> Nested Loop Left Join (cost=1.28..566518.36 rows=22788 width=12) (actual time=85.501..2453.722 rows=30 loops=1)
Join Filter: (category_users.category_id = topics.category_id)
Filter: ((topics.category_id = 11) OR (COALESCE(category_users.notification_level, 1) <> 0) OR (tu.notification_level > 1))
-> Nested Loop Left Join (cost=1.00..566001.58 rows=22866 width=20) (actual time=85.494..2453.702 rows=30 loops=1)
Filter: ((COALESCE(tu.notification_level, 1) > 0) AND ((topics.category_id <> 11) OR (topics.pinned_at IS NULL) OR ((t
opics.pinned_at <= tu.cleared_pinned_at) AND (tu.cleared_pinned_at IS NOT NULL))))
Rows Removed by Filter: 1
-> Nested Loop (cost=0.57..528561.75 rows=68606 width=24) (actual time=85.472..2453.562 rows=31 loops=1)
Join Filter: ((topics.category_id = categories.id) AND ((categories.topic_id <> topics.id) OR (categories.id = 1
1)))
Rows Removed by Join Filter: 13938306
-> Index Scan using index_topics_on_bumped_at on topics (cost=0.42..100480.05 rows=715549 width=24) (actual ti
me=0.010..633.015 rows=464623 loops=1)
Filter: ((deleted_at IS NULL) AND ((archetype)::text <> 'private_message'::text))
Rows Removed by Filter: 105321
-> Materialize (cost=0.14..36.04 rows=30 width=8) (actual time=0.000..0.002 rows=30 loops=464623)
-> Index Scan using categories_pkey on categories (cost=0.14..35.89 rows=30 width=8) (actual time=0.006.
.0.040 rows=30 loops=1)
Index Cond: (id = ANY ('{11,53,57,55,54,56,112,94,107,115,116,117,97,95,102,103,101,105,99,114,106,1
13,104,98,100,96,108,109,110,111}'::integer[]))
-> Index Scan using index_topic_users_on_topic_id_and_user_id on topic_users tu (cost=0.43..0.53 rows=1 width=16) (a
ctual time=0.004..0.004 rows=0 loops=31)
Index Cond: ((topic_id = topics.id) AND (user_id = 1103877))
-> Materialize (cost=0.28..2.30 rows=1 width=8) (actual time=0.000..0.000 rows=0 loops=30)
-> Index Scan using index_category_users_on_user_id_and_last_seen_at on category_users (cost=0.28..2.29 rows=1 width
=8) (actual time=0.004..0.004 rows=0 loops=1)
Index Cond: (user_id = 1103877)
Planning Time: 1.359 ms
Execution Time: 2453.765 ms
(23 rows)
```
After:
```
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=1.28..438.55 rows=30 width=12) (actual time=38.297..657.215 rows=30 loops=1)
-> Nested Loop Left Join (cost=1.28..195944.68 rows=13443 width=12) (actual time=38.296..657.211 rows=30 loops=1)
Filter: ((categories.topic_id <> topics.id) OR (topics.category_id = 11))
Rows Removed by Filter: 29
-> Nested Loop Left Join (cost=1.13..193462.59 rows=13443 width=16) (actual time=38.289..657.092 rows=59 loops=1)
Join Filter: (category_users.category_id = topics.category_id)
Filter: ((topics.category_id = 11) OR (COALESCE(category_users.notification_level, 1) <> 0) OR (tu.notification_level > 1))
-> Nested Loop Left Join (cost=0.85..193156.79 rows=13489 width=20) (actual time=38.282..657.059 rows=59 loops=1)
Filter: ((COALESCE(tu.notification_level, 1) > 0) AND ((topics.category_id <> 11) OR (topics.pinned_at IS NULL) OR ((topics.pinned_at <= tu.cleared_pinned_at) AND (tu.cleared_pinned_at IS NOT NULL))))
Rows Removed by Filter: 1
-> Index Scan using index_topics_on_bumped_at on topics (cost=0.42..134521.06 rows=40470 width=24) (actual time=38.267..656.850 rows=60 loops=1)
Filter: ((deleted_at IS NULL) AND ((archetype)::text <> 'private_message'::text) AND (category_id = ANY ('{11,53,57,55,54,56,112,94,107,115,116,117,97,95,102,103,101,105,99,114,106,113,104,98,100,96,108,109,110,111}'::integer[])))
Rows Removed by Filter: 569895
-> Index Scan using index_topic_users_on_topic_id_and_user_id on topic_users tu (cost=0.43..1.43 rows=1 width=16) (actual time=0.003..0.003 rows=0 loops=60)
Index Cond: ((topic_id = topics.id) AND (user_id = 1103877))
-> Materialize (cost=0.28..2.30 rows=1 width=8) (actual time=0.000..0.000 rows=0 loops=59)
-> Index Scan using index_category_users_on_user_id_and_last_seen_at on category_users (cost=0.28..2.29 rows=1 width=8) (actual time=0.004..0.004 rows=0 loops=1)
Index Cond: (user_id = 1103877)
-> Index Scan using categories_pkey on categories (cost=0.14..0.17 rows=1 width=8) (actual time=0.001..0.001 rows=1 loops=59)
Index Cond: (id = topics.category_id)
Planning Time: 1.633 ms
Execution Time: 657.255 ms
(22 rows)
```
* PERF: Optimize index on topics bumped_at.
Replace `index_topics_on_bumped_at` index with a partial index on `Topic#bumped_at` filtered by archetype since there is already another index that covers private topics.
2021-09-28 10:05:00 +08:00
result = result . where ( " topics.category_id IN (?) " , Category . subcategory_ids ( category_id ) )
2020-10-08 02:19:48 +08:00
if ! SiteSetting . show_category_definitions_in_topic_lists
PERF: Improve database query perf when loading topics for a category. (#14416)
* PERF: Improve database query perf when loading topics for a category.
Instead of left joining the `topics` table against `categories` by filtering with `categories.id`,
we can improve the query plan by filtering against `topics.category_id`
first before joining which helps to reduce the number of rows in the
topics table that has to be joined against the other tables and also
make better use of our existing index.
The following is a before and after of the query plan for a category
with many subcategories.
Before:
```
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
Limit (cost=1.28..747.09 rows=30 width=12) (actual time=85.502..2453.727 rows=30 loops=1)
-> Nested Loop Left Join (cost=1.28..566518.36 rows=22788 width=12) (actual time=85.501..2453.722 rows=30 loops=1)
Join Filter: (category_users.category_id = topics.category_id)
Filter: ((topics.category_id = 11) OR (COALESCE(category_users.notification_level, 1) <> 0) OR (tu.notification_level > 1))
-> Nested Loop Left Join (cost=1.00..566001.58 rows=22866 width=20) (actual time=85.494..2453.702 rows=30 loops=1)
Filter: ((COALESCE(tu.notification_level, 1) > 0) AND ((topics.category_id <> 11) OR (topics.pinned_at IS NULL) OR ((t
opics.pinned_at <= tu.cleared_pinned_at) AND (tu.cleared_pinned_at IS NOT NULL))))
Rows Removed by Filter: 1
-> Nested Loop (cost=0.57..528561.75 rows=68606 width=24) (actual time=85.472..2453.562 rows=31 loops=1)
Join Filter: ((topics.category_id = categories.id) AND ((categories.topic_id <> topics.id) OR (categories.id = 1
1)))
Rows Removed by Join Filter: 13938306
-> Index Scan using index_topics_on_bumped_at on topics (cost=0.42..100480.05 rows=715549 width=24) (actual ti
me=0.010..633.015 rows=464623 loops=1)
Filter: ((deleted_at IS NULL) AND ((archetype)::text <> 'private_message'::text))
Rows Removed by Filter: 105321
-> Materialize (cost=0.14..36.04 rows=30 width=8) (actual time=0.000..0.002 rows=30 loops=464623)
-> Index Scan using categories_pkey on categories (cost=0.14..35.89 rows=30 width=8) (actual time=0.006.
.0.040 rows=30 loops=1)
Index Cond: (id = ANY ('{11,53,57,55,54,56,112,94,107,115,116,117,97,95,102,103,101,105,99,114,106,1
13,104,98,100,96,108,109,110,111}'::integer[]))
-> Index Scan using index_topic_users_on_topic_id_and_user_id on topic_users tu (cost=0.43..0.53 rows=1 width=16) (a
ctual time=0.004..0.004 rows=0 loops=31)
Index Cond: ((topic_id = topics.id) AND (user_id = 1103877))
-> Materialize (cost=0.28..2.30 rows=1 width=8) (actual time=0.000..0.000 rows=0 loops=30)
-> Index Scan using index_category_users_on_user_id_and_last_seen_at on category_users (cost=0.28..2.29 rows=1 width
=8) (actual time=0.004..0.004 rows=0 loops=1)
Index Cond: (user_id = 1103877)
Planning Time: 1.359 ms
Execution Time: 2453.765 ms
(23 rows)
```
After:
```
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Limit (cost=1.28..438.55 rows=30 width=12) (actual time=38.297..657.215 rows=30 loops=1)
-> Nested Loop Left Join (cost=1.28..195944.68 rows=13443 width=12) (actual time=38.296..657.211 rows=30 loops=1)
Filter: ((categories.topic_id <> topics.id) OR (topics.category_id = 11))
Rows Removed by Filter: 29
-> Nested Loop Left Join (cost=1.13..193462.59 rows=13443 width=16) (actual time=38.289..657.092 rows=59 loops=1)
Join Filter: (category_users.category_id = topics.category_id)
Filter: ((topics.category_id = 11) OR (COALESCE(category_users.notification_level, 1) <> 0) OR (tu.notification_level > 1))
-> Nested Loop Left Join (cost=0.85..193156.79 rows=13489 width=20) (actual time=38.282..657.059 rows=59 loops=1)
Filter: ((COALESCE(tu.notification_level, 1) > 0) AND ((topics.category_id <> 11) OR (topics.pinned_at IS NULL) OR ((topics.pinned_at <= tu.cleared_pinned_at) AND (tu.cleared_pinned_at IS NOT NULL))))
Rows Removed by Filter: 1
-> Index Scan using index_topics_on_bumped_at on topics (cost=0.42..134521.06 rows=40470 width=24) (actual time=38.267..656.850 rows=60 loops=1)
Filter: ((deleted_at IS NULL) AND ((archetype)::text <> 'private_message'::text) AND (category_id = ANY ('{11,53,57,55,54,56,112,94,107,115,116,117,97,95,102,103,101,105,99,114,106,113,104,98,100,96,108,109,110,111}'::integer[])))
Rows Removed by Filter: 569895
-> Index Scan using index_topic_users_on_topic_id_and_user_id on topic_users tu (cost=0.43..1.43 rows=1 width=16) (actual time=0.003..0.003 rows=0 loops=60)
Index Cond: ((topic_id = topics.id) AND (user_id = 1103877))
-> Materialize (cost=0.28..2.30 rows=1 width=8) (actual time=0.000..0.000 rows=0 loops=59)
-> Index Scan using index_category_users_on_user_id_and_last_seen_at on category_users (cost=0.28..2.29 rows=1 width=8) (actual time=0.004..0.004 rows=0 loops=1)
Index Cond: (user_id = 1103877)
-> Index Scan using categories_pkey on categories (cost=0.14..0.17 rows=1 width=8) (actual time=0.001..0.001 rows=1 loops=59)
Index Cond: (id = topics.category_id)
Planning Time: 1.633 ms
Execution Time: 657.255 ms
(22 rows)
```
* PERF: Optimize index on topics bumped_at.
Replace `index_topics_on_bumped_at` index with a partial index on `Topic#bumped_at` filtered by archetype since there is already another index that covers private topics.
2021-09-28 10:05:00 +08:00
result =
2023-03-14 03:33:26 +08:00
result . where (
" categories.topic_id IS DISTINCT FROM topics.id OR topics.category_id = ? " ,
category_id ,
)
2020-10-08 02:19:48 +08:00
end
2013-11-09 04:05:14 +08:00
end
2014-06-18 09:23:31 +08:00
result = result . references ( :categories )
2018-06-07 13:28:18 +08:00
2016-11-02 00:18:31 +08:00
if ! @options [ :order ]
2021-10-12 12:55:03 +08:00
filter = ( options [ :filter ] || options [ :f ] )
2016-11-02 00:18:31 +08:00
# category default sort order
2019-10-21 18:32:27 +08:00
sort_order , sort_ascending =
2023-02-13 12:39:45 +08:00
Category . where ( id : category_id ) . pick ( :sort_order , :sort_ascending )
2023-09-06 02:05:30 +08:00
if sort_order && ( filter . blank? || %w[ default latest unseen ] . include? ( filter . to_s ) )
2016-11-02 00:18:31 +08:00
options [ :order ] = sort_order
options [ :ascending ] = ! ! sort_ascending ? " true " : " false "
2020-07-07 15:56:38 +08:00
else
options [ :order ] = " default "
options [ :ascending ] = " false "
2016-11-02 00:18:31 +08:00
end
2013-11-09 04:05:14 +08:00
end
2018-06-07 13:28:18 +08:00
end
2013-11-09 04:05:14 +08:00
2023-04-06 06:58:35 +08:00
if SiteSetting . tagging_enabled
PERF: Improve performance of queries when loading a topic list (#22949)
What is the context of this change?
Before 7c6a8f1c74ea7ea3e81d9ffa80ca2227ee36a006, we were using
`preload(:tags)` on the topics relation but that was accidentally
removed in the refactor. This was discovered and fixed in
5bec894a8c64eb54e349b1570cf76bc03efe3a3d but insteadl of using
`preload(:tags)` we ended up using `includes(:tags)`. The problem here
is that `includes(:tags)` can either result in `preload(:tags)` or
`eager_load(:tags)` but for some reason ActiveRecord is deciding to
`eager_load(:tags)` resulting in a joins to the `topic_tags` and `tags`
table which is not necessarily and leads to more inefficient queries.
When `includes(:tags)` is used, listing the latest topics ended up
generating the following sample queries to fetch the list of topics to display.
```
SELECT DISTINCT "topics"."pinned_at" AS alias_0, "topics"."id" FROM "topics" LEFT OUTER JOIN "categories" ON "categories"."id" = "topics"."category_id" LEFT OUTER JOIN "topic_tags" ON "topic_tags"."topic_id" = "topics"."id" LEFT OUTER JOIN "tags" ON "tags"."id" = "topic_tags"."tag_id" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = 29) LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = 29 WHERE "topics"."deleted_at" IS NULL AND (topics.archetype <> 'private_message') AND (COALESCE(categories.topic_id, 0) <> topics.id) AND (COALESCE(tu.notification_level,1) > 0) AND (topics.category_id = -1
OR
(COALESCE(category_users.notification_level, 1) <> 0 AND (topics.category_id IS NULL OR topics.category_id NOT IN(-1)))
OR tu.notification_level > 1) AND (pinned_globally AND pinned_at IS NOT NULL AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL)) ORDER BY "topics"."pinned_at" DESC LIMIT 30
SELECT "topics"."id" AS t0_r0, "topics"."title" AS t0_r1, "topics"."last_posted_at" AS t0_r2, "topics"."created_at" AS t0_r3, "topics"."updated_at" AS t0_r4, "topics"."views" AS t0_r5, "topics"."posts_count" AS t0_r6, "topics"."user_id" AS t0_r7, "topics"."last_post_user_id" AS t0_r8, "topics"."reply_count" AS t0_r9, "topics"."featured_user1_id" AS t0_r10, "topics"."featured_user2_id" AS t0_r11, "topics"."featured_user3_id" AS t0_r12, "topics"."deleted_at" AS t0_r13, "topics"."highest_post_number" AS t0_r14, "topics"."like_count" AS t0_r15, "topics"."incoming_link_count" AS t0_r16, "topics"."category_id" AS t0_r17, "topics"."visible" AS t0_r18, "topics"."moderator_posts_count" AS t0_r19, "topics"."closed" AS t0_r20, "topics"."archived" AS t0_r21, "topics"."bumped_at" AS t0_r22, "topics"."has_summary" AS t0_r23, "topics"."archetype" AS t0_r24, "topics"."featured_user4_id" AS t0_r25, "topics"."notify_moderators_count" AS t0_r26, "topics"."spam_count" AS t0_r27, "topics"."pinned_at" AS t0_r28, "topics"."score" AS t0_r29, "topics"."percent_rank" AS t0_r30, "topics"."subtype" AS t0_r31, "topics"."slug" AS t0_r32, "topics"."deleted_by_id" AS t0_r33, "topics"."participant_count" AS t0_r34, "topics"."word_count" AS t0_r35, "topics"."excerpt" AS t0_r36, "topics"."pinned_globally" AS t0_r37, "topics"."pinned_until" AS t0_r38, "topics"."fancy_title" AS t0_r39, "topics"."highest_staff_post_number" AS t0_r40, "topics"."featured_link" AS t0_r41, "topics"."reviewable_score" AS t0_r42, "topics"."image_upload_id" AS t0_r43, "topics"."slow_mode_seconds" AS t0_r44, "topics"."bannered_until" AS t0_r45, "topics"."external_id" AS t0_r46, "categories"."id" AS t1_r0, "categories"."name" AS t1_r1, "categories"."color" AS t1_r2, "categories"."topic_id" AS t1_r3, "categories"."topic_count" AS t1_r4, "categories"."created_at" AS t1_r5, "categories"."updated_at" AS t1_r6, "categories"."user_id" AS t1_r7, "categories"."topics_year" AS t1_r8, "categories"."topics_month" AS t1_r9, "categories"."topics_week" AS t1_r10, "categories"."slug" AS t1_r11, "categories"."description" AS t1_r12, "categories"."text_color" AS t1_r13, "categories"."read_restricted" AS t1_r14, "categories"."auto_close_hours" AS t1_r15, "categories"."post_count" AS t1_r16, "categories"."latest_post_id" AS t1_r17, "categories"."latest_topic_id" AS t1_r18, "categories"."position" AS t1_r19, "categories"."parent_category_id" AS t1_r20, "categories"."posts_year" AS t1_r21, "categories"."posts_month" AS t1_r22, "categories"."posts_week" AS t1_r23, "categories"."email_in" AS t1_r24, "categories"."email_in_allow_strangers" AS t1_r25, "categories"."topics_day" AS t1_r26, "categories"."posts_day" AS t1_r27, "categories"."allow_badges" AS t1_r28, "categories"."name_lower" AS t1_r29, "categories"."auto_close_based_on_last_post" AS t1_r30, "categories"."topic_template" AS t1_r31, "categories"."contains_messages" AS t1_r32, "categories"."sort_order" AS t1_r33, "categories"."sort_ascending" AS t1_r34, "categories"."uploaded_logo_id" AS t1_r35, "categories"."uploaded_background_id" AS t1_r36, "categories"."topic_featured_link_allowed" AS t1_r37, "categories"."all_topics_wiki" AS t1_r38, "categories"."show_subcategory_list" AS t1_r39, "categories"."num_featured_topics" AS t1_r40, "categories"."default_view" AS t1_r41, "categories"."subcategory_list_style" AS t1_r42, "categories"."default_top_period" AS t1_r43, "categories"."mailinglist_mirror" AS t1_r44, "categories"."minimum_required_tags" AS t1_r45, "categories"."navigate_to_first_post_after_read" AS t1_r46, "categories"."search_priority" AS t1_r47, "categories"."allow_global_tags" AS t1_r48, "categories"."reviewable_by_group_id" AS t1_r49, "categories"."read_only_banner" AS t1_r50, "categories"."default_list_filter" AS t1_r51, "categories"."allow_unlimited_owner_edits_on_first_post" AS t1_r52, "categories"."default_slow_mode_seconds" AS t1_r53, "categories"."uploaded_logo_dark_id" AS t1_r54, "tags"."id" AS t2_r0, "tags"."name" AS t2_r1, "tags"."created_at" AS t2_r2, "tags"."updated_at" AS t2_r3, "tags"."pm_topic_count" AS t2_r4, "tags"."target_tag_id" AS t2_r5, "tags"."description" AS t2_r6, "tags"."public_topic_count" AS t2_r7, "tags"."staff_topic_count" AS t2_r8 FROM "topics" LEFT OUTER JOIN "categories" ON "categories"."id" = "topics"."category_id" LEFT OUTER JOIN "topic_tags" ON "topic_tags"."topic_id" = "topics"."id" LEFT OUTER JOIN "tags" ON "tags"."id" = "topic_tags"."tag_id" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = 29) LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = 29 WHERE "topics"."deleted_at" IS NULL AND (topics.archetype <> 'private_message') AND (COALESCE(categories.topic_id, 0) <> topics.id) AND (COALESCE(tu.notification_level,1) > 0) AND (topics.category_id = -1
OR
(COALESCE(category_users.notification_level, 1) <> 0 AND (topics.category_id IS NULL OR topics.category_id NOT IN(-1)))
OR tu.notification_level > 1) AND (pinned_globally AND pinned_at IS NOT NULL AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL)) AND "topics"."id" = 7 ORDER BY "topics"."pinned_at" DESC
SELECT DISTINCT topics.bumped_at AS alias_0, "topics"."id" FROM "topics" LEFT OUTER JOIN "categories" ON "categories"."id" = "topics"."category_id" LEFT OUTER JOIN "topic_tags" ON "topic_tags"."topic_id" = "topics"."id" LEFT OUTER JOIN "tags" ON "tags"."id" = "topic_tags"."tag_id" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = 29) LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = 29 WHERE "topics"."deleted_at" IS NULL AND (topics.archetype <> 'private_message') AND (COALESCE(categories.topic_id, 0) <> topics.id) AND (COALESCE(tu.notification_level,1) > 0) AND (topics.category_id = -1
OR
(COALESCE(category_users.notification_level, 1) <> 0 AND (topics.category_id IS NULL OR topics.category_id NOT IN(-1)))
OR tu.notification_level > 1) AND (NOT ( pinned_globally AND pinned_at IS NOT NULL AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL) )) ORDER BY topics.bumped_at DESC LIMIT 30
SELECT "topics"."id" AS t0_r0, "topics"."title" AS t0_r1, "topics"."last_posted_at" AS t0_r2, "topics"."created_at" AS t0_r3, "topics"."updated_at" AS t0_r4, "topics"."views" AS t0_r5, "topics"."posts_count" AS t0_r6, "topics"."user_id" AS t0_r7, "topics"."last_post_user_id" AS t0_r8, "topics"."reply_count" AS t0_r9, "topics"."featured_user1_id" AS t0_r10, "topics"."featured_user2_id" AS t0_r11, "topics"."featured_user3_id" AS t0_r12, "topics"."deleted_at" AS t0_r13, "topics"."highest_post_number" AS t0_r14, "topics"."like_count" AS t0_r15, "topics"."incoming_link_count" AS t0_r16, "topics"."category_id" AS t0_r17, "topics"."visible" AS t0_r18, "topics"."moderator_posts_count" AS t0_r19, "topics"."closed" AS t0_r20, "topics"."archived" AS t0_r21, "topics"."bumped_at" AS t0_r22, "topics"."has_summary" AS t0_r23, "topics"."archetype" AS t0_r24, "topics"."featured_user4_id" AS t0_r25, "topics"."notify_moderators_count" AS t0_r26, "topics"."spam_count" AS t0_r27, "topics"."pinned_at" AS t0_r28, "topics"."score" AS t0_r29, "topics"."percent_rank" AS t0_r30, "topics"."subtype" AS t0_r31, "topics"."slug" AS t0_r32, "topics"."deleted_by_id" AS t0_r33, "topics"."participant_count" AS t0_r34, "topics"."word_count" AS t0_r35, "topics"."excerpt" AS t0_r36, "topics"."pinned_globally" AS t0_r37, "topics"."pinned_until" AS t0_r38, "topics"."fancy_title" AS t0_r39, "topics"."highest_staff_post_number" AS t0_r40, "topics"."featured_link" AS t0_r41, "topics"."reviewable_score" AS t0_r42, "topics"."image_upload_id" AS t0_r43, "topics"."slow_mode_seconds" AS t0_r44, "topics"."bannered_until" AS t0_r45, "topics"."external_id" AS t0_r46, "categories"."id" AS t1_r0, "categories"."name" AS t1_r1, "categories"."color" AS t1_r2, "categories"."topic_id" AS t1_r3, "categories"."topic_count" AS t1_r4, "categories"."created_at" AS t1_r5, "categories"."updated_at" AS t1_r6, "categories"."user_id" AS t1_r7, "categories"."topics_year" AS t1_r8, "categories"."topics_month" AS t1_r9, "categories"."topics_week" AS t1_r10, "categories"."slug" AS t1_r11, "categories"."description" AS t1_r12, "categories"."text_color" AS t1_r13, "categories"."read_restricted" AS t1_r14, "categories"."auto_close_hours" AS t1_r15, "categories"."post_count" AS t1_r16, "categories"."latest_post_id" AS t1_r17, "categories"."latest_topic_id" AS t1_r18, "categories"."position" AS t1_r19, "categories"."parent_category_id" AS t1_r20, "categories"."posts_year" AS t1_r21, "categories"."posts_month" AS t1_r22, "categories"."posts_week" AS t1_r23, "categories"."email_in" AS t1_r24, "categories"."email_in_allow_strangers" AS t1_r25, "categories"."topics_day" AS t1_r26, "categories"."posts_day" AS t1_r27, "categories"."allow_badges" AS t1_r28, "categories"."name_lower" AS t1_r29, "categories"."auto_close_based_on_last_post" AS t1_r30, "categories"."topic_template" AS t1_r31, "categories"."contains_messages" AS t1_r32, "categories"."sort_order" AS t1_r33, "categories"."sort_ascending" AS t1_r34, "categories"."uploaded_logo_id" AS t1_r35, "categories"."uploaded_background_id" AS t1_r36, "categories"."topic_featured_link_allowed" AS t1_r37, "categories"."all_topics_wiki" AS t1_r38, "categories"."show_subcategory_list" AS t1_r39, "categories"."num_featured_topics" AS t1_r40, "categories"."default_view" AS t1_r41, "categories"."subcategory_list_style" AS t1_r42, "categories"."default_top_period" AS t1_r43, "categories"."mailinglist_mirror" AS t1_r44, "categories"."minimum_required_tags" AS t1_r45, "categories"."navigate_to_first_post_after_read" AS t1_r46, "categories"."search_priority" AS t1_r47, "categories"."allow_global_tags" AS t1_r48, "categories"."reviewable_by_group_id" AS t1_r49, "categories"."read_only_banner" AS t1_r50, "categories"."default_list_filter" AS t1_r51, "categories"."allow_unlimited_owner_edits_on_first_post" AS t1_r52, "categories"."default_slow_mode_seconds" AS t1_r53, "categories"."uploaded_logo_dark_id" AS t1_r54, "tags"."id" AS t2_r0, "tags"."name" AS t2_r1, "tags"."created_at" AS t2_r2, "tags"."updated_at" AS t2_r3, "tags"."pm_topic_count" AS t2_r4, "tags"."target_tag_id" AS t2_r5, "tags"."description" AS t2_r6, "tags"."public_topic_count" AS t2_r7, "tags"."staff_topic_count" AS t2_r8 FROM "topics" LEFT OUTER JOIN "categories" ON "categories"."id" = "topics"."category_id" LEFT OUTER JOIN "topic_tags" ON "topic_tags"."topic_id" = "topics"."id" LEFT OUTER JOIN "tags" ON "tags"."id" = "topic_tags"."tag_id" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = 29) LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = 29 WHERE "topics"."deleted_at" IS NULL AND (topics.archetype <> 'private_message') AND (COALESCE(categories.topic_id, 0) <> topics.id) AND (COALESCE(tu.notification_level,1) > 0) AND (topics.category_id = -1
OR
(COALESCE(category_users.notification_level, 1) <> 0 AND (topics.category_id IS NULL OR topics.category_id NOT IN(-1)))
OR tu.notification_level > 1) AND (NOT ( pinned_globally AND pinned_at IS NOT NULL AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL) )) AND "topics"."id" IN (477, 481, 480, 479, 478, 467, 466, 230, 209, 183, 173, 179, 168, 139, 102, 144, 150, 118, 126, 88, 63, 46, 117, 171, 45, 77, 154, 158, 43, 79) ORDER BY topics.bumped_at DESC
```
Note how there are two extra queries which has to select `DISTINCT
topics.pinned_at` and `DISTINCT topics.bumped_at` because of the
unnecessary left joins to the `topic_tags` and `tags` table result in
duplicated rows in the topic tables. As a result, PG is not able to
use our indexes to effectively execute the query.
Comparing this to the queries being executed when `preload(:tags)` is
used.
```
SELECT "topics"."id" AS t0_r0, "topics"."title" AS t0_r1, "topics"."last_posted_at" AS t0_r2, "topics"."created_at" AS t0_r3, "topics"."updated_at" AS t0_r4, "topics"."views" AS t0_r5, "topics"."posts_count" AS t0_r6, "topics"."user_id" AS t0_r7, "topics"."last_post_user_id" AS t0_r8, "topics"."reply_count" AS t0_r9, "topics"."featured_user1_id" AS t0_r10, "topics"."featured_user2_id" AS t0_r11, "topics"."featured_user3_id" AS t0_r12, "topics"."deleted_at" AS t0_r13, "topics"."highest_post_number" AS t0_r14, "topics"."like_count" AS t0_r15, "topics"."incoming_link_count" AS t0_r16, "topics"."category_id" AS t0_r17, "topics"."visible" AS t0_r18, "topics"."moderator_posts_count" AS t0_r19, "topics"."closed" AS t0_r20, "topics"."archived" AS t0_r21, "topics"."bumped_at" AS t0_r22, "topics"."has_summary" AS t0_r23, "topics"."archetype" AS t0_r24, "topics"."featured_user4_id" AS t0_r25, "topics"."notify_moderators_count" AS t0_r26, "topics"."spam_count" AS t0_r27, "topics"."pinned_at" AS t0_r28, "topics"."score" AS t0_r29, "topics"."percent_rank" AS t0_r30, "topics"."subtype" AS t0_r31, "topics"."slug" AS t0_r32, "topics"."deleted_by_id" AS t0_r33, "topics"."participant_count" AS t0_r34, "topics"."word_count" AS t0_r35, "topics"."excerpt" AS t0_r36, "topics"."pinned_globally" AS t0_r37, "topics"."pinned_until" AS t0_r38, "topics"."fancy_title" AS t0_r39, "topics"."highest_staff_post_number" AS t0_r40, "topics"."featured_link" AS t0_r41, "topics"."reviewable_score" AS t0_r42, "topics"."image_upload_id" AS t0_r43, "topics"."slow_mode_seconds" AS t0_r44, "topics"."bannered_until" AS t0_r45, "topics"."external_id" AS t0_r46, "categories"."id" AS t1_r0, "categories"."name" AS t1_r1, "categories"."color" AS t1_r2, "categories"."topic_id" AS t1_r3, "categories"."topic_count" AS t1_r4, "categories"."created_at" AS t1_r5, "categories"."updated_at" AS t1_r6, "categories"."user_id" AS t1_r7, "categories"."topics_year" AS t1_r8, "categories"."topics_month" AS t1_r9, "categories"."topics_week" AS t1_r10, "categories"."slug" AS t1_r11, "categories"."description" AS t1_r12, "categories"."text_color" AS t1_r13, "categories"."read_restricted" AS t1_r14, "categories"."auto_close_hours" AS t1_r15, "categories"."post_count" AS t1_r16, "categories"."latest_post_id" AS t1_r17, "categories"."latest_topic_id" AS t1_r18, "categories"."position" AS t1_r19, "categories"."parent_category_id" AS t1_r20, "categories"."posts_year" AS t1_r21, "categories"."posts_month" AS t1_r22, "categories"."posts_week" AS t1_r23, "categories"."email_in" AS t1_r24, "categories"."email_in_allow_strangers" AS t1_r25, "categories"."topics_day" AS t1_r26, "categories"."posts_day" AS t1_r27, "categories"."allow_badges" AS t1_r28, "categories"."name_lower" AS t1_r29, "categories"."auto_close_based_on_last_post" AS t1_r30, "categories"."topic_template" AS t1_r31, "categories"."contains_messages" AS t1_r32, "categories"."sort_order" AS t1_r33, "categories"."sort_ascending" AS t1_r34, "categories"."uploaded_logo_id" AS t1_r35, "categories"."uploaded_background_id" AS t1_r36, "categories"."topic_featured_link_allowed" AS t1_r37, "categories"."all_topics_wiki" AS t1_r38, "categories"."show_subcategory_list" AS t1_r39, "categories"."num_featured_topics" AS t1_r40, "categories"."default_view" AS t1_r41, "categories"."subcategory_list_style" AS t1_r42, "categories"."default_top_period" AS t1_r43, "categories"."mailinglist_mirror" AS t1_r44, "categories"."minimum_required_tags" AS t1_r45, "categories"."navigate_to_first_post_after_read" AS t1_r46, "categories"."search_priority" AS t1_r47, "categories"."allow_global_tags" AS t1_r48, "categories"."reviewable_by_group_id" AS t1_r49, "categories"."read_only_banner" AS t1_r50, "categories"."default_list_filter" AS t1_r51, "categories"."allow_unlimited_owner_edits_on_first_post" AS t1_r52, "categories"."default_slow_mode_seconds" AS t1_r53, "categories"."uploaded_logo_dark_id" AS t1_r54 FROM "topics" LEFT OUTER JOIN "categories" ON "categories"."id" = "topics"."category_id" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = 29) LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = 29 WHERE "topics"."deleted_at" IS NULL AND (topics.archetype <> 'private_message') AND (COALESCE(categories.topic_id, 0) <> topics.id) AND (COALESCE(tu.notification_level,1) > 0) AND (topics.category_id = -1
OR
(COALESCE(category_users.notification_level, 1) <> 0 AND (topics.category_id IS NULL OR topics.category_id NOT IN(-1)))
OR tu.notification_level > 1) AND (pinned_globally AND pinned_at IS NOT NULL AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL)) ORDER BY "topics"."pinned_at" DESC LIMIT 30
SELECT "topic_tags".* FROM "topic_tags" WHERE "topic_tags"."topic_id" = 7
SELECT "topics"."id" AS t0_r0, "topics"."title" AS t0_r1, "topics"."last_posted_at" AS t0_r2, "topics"."created_at" AS t0_r3, "topics"."updated_at" AS t0_r4, "topics"."views" AS t0_r5, "topics"."posts_count" AS t0_r6, "topics"."user_id" AS t0_r7, "topics"."last_post_user_id" AS t0_r8, "topics"."reply_count" AS t0_r9, "topics"."featured_user1_id" AS t0_r10, "topics"."featured_user2_id" AS t0_r11, "topics"."featured_user3_id" AS t0_r12, "topics"."deleted_at" AS t0_r13, "topics"."highest_post_number" AS t0_r14, "topics"."like_count" AS t0_r15, "topics"."incoming_link_count" AS t0_r16, "topics"."category_id" AS t0_r17, "topics"."visible" AS t0_r18, "topics"."moderator_posts_count" AS t0_r19, "topics"."closed" AS t0_r20, "topics"."archived" AS t0_r21, "topics"."bumped_at" AS t0_r22, "topics"."has_summary" AS t0_r23, "topics"."archetype" AS t0_r24, "topics"."featured_user4_id" AS t0_r25, "topics"."notify_moderators_count" AS t0_r26, "topics"."spam_count" AS t0_r27, "topics"."pinned_at" AS t0_r28, "topics"."score" AS t0_r29, "topics"."percent_rank" AS t0_r30, "topics"."subtype" AS t0_r31, "topics"."slug" AS t0_r32, "topics"."deleted_by_id" AS t0_r33, "topics"."participant_count" AS t0_r34, "topics"."word_count" AS t0_r35, "topics"."excerpt" AS t0_r36, "topics"."pinned_globally" AS t0_r37, "topics"."pinned_until" AS t0_r38, "topics"."fancy_title" AS t0_r39, "topics"."highest_staff_post_number" AS t0_r40, "topics"."featured_link" AS t0_r41, "topics"."reviewable_score" AS t0_r42, "topics"."image_upload_id" AS t0_r43, "topics"."slow_mode_seconds" AS t0_r44, "topics"."bannered_until" AS t0_r45, "topics"."external_id" AS t0_r46, "categories"."id" AS t1_r0, "categories"."name" AS t1_r1, "categories"."color" AS t1_r2, "categories"."topic_id" AS t1_r3, "categories"."topic_count" AS t1_r4, "categories"."created_at" AS t1_r5, "categories"."updated_at" AS t1_r6, "categories"."user_id" AS t1_r7, "categories"."topics_year" AS t1_r8, "categories"."topics_month" AS t1_r9, "categories"."topics_week" AS t1_r10, "categories"."slug" AS t1_r11, "categories"."description" AS t1_r12, "categories"."text_color" AS t1_r13, "categories"."read_restricted" AS t1_r14, "categories"."auto_close_hours" AS t1_r15, "categories"."post_count" AS t1_r16, "categories"."latest_post_id" AS t1_r17, "categories"."latest_topic_id" AS t1_r18, "categories"."position" AS t1_r19, "categories"."parent_category_id" AS t1_r20, "categories"."posts_year" AS t1_r21, "categories"."posts_month" AS t1_r22, "categories"."posts_week" AS t1_r23, "categories"."email_in" AS t1_r24, "categories"."email_in_allow_strangers" AS t1_r25, "categories"."topics_day" AS t1_r26, "categories"."posts_day" AS t1_r27, "categories"."allow_badges" AS t1_r28, "categories"."name_lower" AS t1_r29, "categories"."auto_close_based_on_last_post" AS t1_r30, "categories"."topic_template" AS t1_r31, "categories"."contains_messages" AS t1_r32, "categories"."sort_order" AS t1_r33, "categories"."sort_ascending" AS t1_r34, "categories"."uploaded_logo_id" AS t1_r35, "categories"."uploaded_background_id" AS t1_r36, "categories"."topic_featured_link_allowed" AS t1_r37, "categories"."all_topics_wiki" AS t1_r38, "categories"."show_subcategory_list" AS t1_r39, "categories"."num_featured_topics" AS t1_r40, "categories"."default_view" AS t1_r41, "categories"."subcategory_list_style" AS t1_r42, "categories"."default_top_period" AS t1_r43, "categories"."mailinglist_mirror" AS t1_r44, "categories"."minimum_required_tags" AS t1_r45, "categories"."navigate_to_first_post_after_read" AS t1_r46, "categories"."search_priority" AS t1_r47, "categories"."allow_global_tags" AS t1_r48, "categories"."reviewable_by_group_id" AS t1_r49, "categories"."read_only_banner" AS t1_r50, "categories"."default_list_filter" AS t1_r51, "categories"."allow_unlimited_owner_edits_on_first_post" AS t1_r52, "categories"."default_slow_mode_seconds" AS t1_r53, "categories"."uploaded_logo_dark_id" AS t1_r54 FROM "topics" LEFT OUTER JOIN "categories" ON "categories"."id" = "topics"."category_id" LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = 29) LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = 29 WHERE "topics"."deleted_at" IS NULL AND (topics.archetype <> 'private_message') AND (COALESCE(categories.topic_id, 0) <> topics.id) AND (COALESCE(tu.notification_level,1) > 0) AND (topics.category_id = -1
OR
(COALESCE(category_users.notification_level, 1) <> 0 AND (topics.category_id IS NULL OR topics.category_id NOT IN(-1)))
OR tu.notification_level > 1) AND (NOT ( pinned_globally AND pinned_at IS NOT NULL AND (topics.pinned_at > tu.cleared_pinned_at OR tu.cleared_pinned_at IS NULL) )) ORDER BY topics.bumped_at DESC LIMIT 30
SELECT "topic_tags".* FROM "topic_tags" WHERE "topic_tags"."topic_id" IN (477, 481, 480, 479, 478, 467, 466, 230, 209, 183, 173, 179, 168, 139, 102, 144, 150, 118, 126, 88, 63, 46, 117, 171, 45, 77, 154, 158, 43, 79)
SELECT "tags"."id", "tags"."name", "tags"."created_at", "tags"."updated_at", "tags"."pm_topic_count", "tags"."target_tag_id", "tags"."description", "tags"."public_topic_count", "tags"."staff_topic_count" FROM "tags" WHERE "tags"."id" IN (10, 20, 26, 7, 27, 28, 30, 19, 9, 4, 15, 29, 14, 18, 11, 25, 1, 21, 8, 22, 5, 32)
```
We end up with queries that are much more efficient as those queries can
effectively use the indexes.
2023-08-03 10:48:41 +08:00
# Use `preload` here instead since `includes` can end up calling `eager_load` which can unnecessarily lead to
# joins on the `topic_tags` and `tags` table leading to a much slower query.
result = result . preload ( :tags )
2023-04-06 06:58:35 +08:00
result = filter_by_tags ( result )
end
2023-05-03 12:40:00 +08:00
result = apply_ordering ( result , options ) if ! options [ :skip_ordering ]
2020-09-14 19:07:35 +08:00
2023-03-23 05:31:33 +08:00
all_listable_topics =
@guardian . filter_allowed_categories (
Topic . unscoped . listable_topics ,
category_id_column : " categories.id " ,
)
2020-09-14 19:07:35 +08:00
2022-02-11 20:46:23 +08:00
if options [ :include_pms ] || options [ :include_all_pms ]
all_pm_topics =
if options [ :include_all_pms ] && @guardian . is_admin?
Topic . unscoped . private_messages
else
Topic . unscoped . private_messages_for_user ( @user )
end
2020-09-14 19:07:35 +08:00
result = result . merge ( all_listable_topics . or ( all_pm_topics ) )
else
result = result . merge ( all_listable_topics )
end
2018-03-14 03:59:12 +08:00
2014-02-11 07:06:20 +08:00
# Don't include the category topics if excluded
if options [ :no_definitions ]
2014-02-05 04:55:30 +08:00
result = result . where ( " COALESCE(categories.topic_id, 0) <> topics.id " )
end
2013-07-17 03:20:18 +08:00
result = result . limit ( options [ :per_page ] ) unless options [ :limit ] == false
2015-03-24 06:12:37 +08:00
result = result . visible if options [ :visible ]
2013-12-24 07:50:36 +08:00
result =
result . where . not ( topics : { id : options [ :except_topic_ids ] } ) . references ( :topics ) if options [
:except_topic_ids
]
2016-05-10 04:33:55 +08:00
if options [ :page ]
offset = options [ :page ] . to_i * options [ :per_page ]
2016-05-12 01:39:21 +08:00
result = result . offset ( offset ) if offset > 0
2016-05-10 04:33:55 +08:00
end
2013-07-17 03:20:18 +08:00
if options [ :topic_ids ]
2013-08-16 20:53:40 +08:00
result = result . where ( " topics.id in (?) " , options [ :topic_ids ] ) . references ( :topics )
2013-05-28 15:52:52 +08:00
end
2020-09-10 22:49:11 +08:00
if search = options [ :search ] . presence
2018-02-20 17:47:44 +08:00
result =
result . where (
" topics.id in (select pp.topic_id from post_search_data pd join posts pp on pp.id = pd.post_id where pd.search_data @@ #{ Search . ts_query ( term : search . to_s ) } ) " ,
)
2014-05-15 22:31:45 +08:00
end
2014-07-17 07:29:09 +08:00
# NOTE protect against SYM attack can be removed with Ruby 2.2
#
state = options [ :state ]
if @user && state && TopicUser . notification_levels . keys . map ( & :to_s ) . include? ( state )
level = TopicUser . notification_levels [ state . to_sym ]
result =
result . where (
" topics.id IN (
SELECT topic_id
FROM topic_users
WHERE user_id = ? AND
notification_level = ?) " ,
@user . id ,
level ,
)
end
2017-03-03 03:54:26 +08:00
if before = options [ :before ]
if ( before = before . to_i ) > 0
result = result . where ( " topics.created_at < ? " , before . to_i . days . ago )
end
2018-06-07 13:28:18 +08:00
end
2017-03-03 03:54:26 +08:00
2017-03-03 04:11:38 +08:00
if bumped_before = options [ :bumped_before ]
if ( bumped_before = bumped_before . to_i ) > 0
result = result . where ( " topics.bumped_at < ? " , bumped_before . to_i . days . ago )
end
2018-06-07 13:28:18 +08:00
end
2017-03-03 04:11:38 +08:00
2014-01-13 11:40:21 +08:00
if status = options [ :status ]
2023-03-03 09:46:21 +08:00
result =
2023-03-30 09:00:42 +08:00
TopicsFilter . new ( scope : result , guardian : @guardian ) . filter_status (
status : options [ :status ] ,
2023-03-03 09:46:21 +08:00
category_id : options [ :category ] ,
2023-03-30 09:00:42 +08:00
)
2018-06-07 13:28:18 +08:00
end
2014-01-13 11:40:21 +08:00
2020-08-06 14:33:45 +08:00
if ( filter = ( options [ :filter ] || options [ :f ] ) ) && @user
2015-01-07 15:20:10 +08:00
action = ( PostActionType . types [ :like ] if filter == " liked " )
if action
result =
result . where (
" topics.id IN (SELECT pp.topic_id
2015-01-07 10:58:34 +08:00
FROM post_actions pa
JOIN posts pp ON pp . id = pa . post_id
WHERE pa . user_id = :user_id AND
2015-01-07 15:20:10 +08:00
pa . post_action_type_id = :action AND
2015-01-07 10:58:34 +08:00
pa . deleted_at IS NULL
) " ,
user_id : @user . id ,
2015-01-07 15:20:10 +08:00
action : action ,
2018-06-07 13:28:18 +08:00
)
2015-01-07 10:58:34 +08:00
end
2020-07-23 08:30:08 +08:00
2020-09-26 03:39:37 +08:00
result = TopicQuery . tracked_filter ( result , @user . id ) if filter == " tracked "
2018-06-07 13:28:18 +08:00
end
2015-01-07 10:58:34 +08:00
2014-06-05 21:30:24 +08:00
result = result . where ( " topics.posts_count <= ? " , options [ :max_posts ] ) if options [
:max_posts
] . present?
result = result . where ( " topics.posts_count >= ? " , options [ :min_posts ] ) if options [
:min_posts
] . present?
2017-02-16 04:25:43 +08:00
result = TopicQuery . apply_custom_filters ( result , self )
2020-09-14 19:07:35 +08:00
result
2013-02-06 03:16:51 +08:00
end
2021-08-10 22:30:34 +08:00
def remove_muted ( list , user , options )
2023-04-11 08:48:07 +08:00
if options && ( options [ :include_muted ] . nil? || options [ :include_muted ] ) &&
options [ :state ] != " muted "
list = remove_muted_topics ( list , user )
end
2021-08-10 22:30:34 +08:00
list = remove_muted_categories ( list , user , exclude : options [ :category ] )
2021-11-16 14:40:50 +08:00
TopicQuery . remove_muted_tags ( list , user , options )
2021-08-10 22:30:34 +08:00
end
2015-11-02 06:20:22 +08:00
def remove_muted_topics ( list , user )
if user
2015-11-02 11:59:10 +08:00
list =
list . where (
" COALESCE(tu.notification_level,1) > :muted " ,
muted : TopicUser . notification_levels [ :muted ] ,
)
2015-11-02 06:20:22 +08:00
end
list
2018-06-07 13:28:18 +08:00
end
2019-09-07 00:12:13 +08:00
2014-07-29 12:34:54 +08:00
def remove_muted_categories ( list , user , opts = nil )
2014-06-18 09:23:31 +08:00
category_id = get_category_id ( opts [ :exclude ] ) if opts
2018-06-07 13:28:18 +08:00
2019-11-19 10:34:24 +08:00
if user
2023-06-27 12:49:34 +08:00
watched_tag_ids =
2023-07-04 13:08:29 +08:00
if user . watched_precedence_over_muted
2023-06-27 12:49:34 +08:00
TagUser
. where ( user : user )
. where ( " notification_level >= ? " , TopicUser . notification_levels [ :watching ] )
. pluck ( :tag_id )
else
[ ]
end
# OR watched_topic_tags.id IS NOT NULL",
2019-11-14 08:16:13 +08:00
list =
2023-06-27 12:49:34 +08:00
list . references ( " cu " ) . joins (
" LEFT JOIN category_users ON category_users.category_id = topics.category_id AND category_users.user_id = #{ user . id } " ,
)
if watched_tag_ids . present?
list =
list . joins (
" LEFT JOIN topic_tags watched_topic_tags ON watched_topic_tags.topic_id = topics.id AND #{ DB . sql_fragment ( " watched_topic_tags.tag_id IN (?) " , watched_tag_ids ) } " ,
2019-11-14 08:16:13 +08:00
)
2023-06-27 12:49:34 +08:00
end
list =
list . where (
" topics.category_id = :category_id
2022-02-17 07:42:02 +08:00
OR
( COALESCE ( category_users . notification_level , :default ) < > :muted AND ( topics . category_id IS NULL OR topics . category_id NOT IN ( :indirectly_muted_category_ids ) ) )
2023-06-27 12:49:34 +08:00
#{watched_tag_ids.present? ? "OR watched_topic_tags.id IS NOT NULL" : ""}
2019-11-19 10:34:24 +08:00
OR tu . notification_level > :regular " ,
2023-06-27 12:49:34 +08:00
category_id : category_id || - 1 ,
default : CategoryUser . default_notification_level ,
indirectly_muted_category_ids :
CategoryUser . indirectly_muted_category_ids ( user ) . presence || [ - 1 ] ,
muted : CategoryUser . notification_levels [ :muted ] ,
regular : TopicUser . notification_levels [ :regular ] ,
)
2019-11-19 10:34:24 +08:00
elsif SiteSetting . mute_all_categories_by_default
category_ids = [
SiteSetting . default_categories_watching . split ( " | " ) ,
SiteSetting . default_categories_tracking . split ( " | " ) ,
2020-08-20 03:05:04 +08:00
SiteSetting . default_categories_watching_first_post . split ( " | " ) ,
2022-06-20 11:49:33 +08:00
SiteSetting . default_categories_normal . split ( " | " ) ,
2019-11-19 10:34:24 +08:00
] . flatten . map ( & :to_i )
category_ids << category_id if category_id . present? && category_ids . exclude? ( category_id )
2023-03-23 05:31:33 +08:00
list = list . where ( " categories.id IN (?) " , category_ids ) if category_ids . present?
2019-11-19 10:18:16 +08:00
else
category_ids = SiteSetting . default_categories_muted . split ( " | " ) . map ( & :to_i )
category_ids -= [ category_id ] if category_id . present? && category_ids . include? ( category_id )
2023-03-23 05:31:33 +08:00
list = list . where ( " categories.id NOT IN (?) " , category_ids ) if category_ids . present?
2015-11-02 06:20:22 +08:00
end
2014-02-03 13:05:49 +08:00
2018-06-07 13:28:18 +08:00
list
end
2019-09-07 00:12:13 +08:00
2021-11-16 14:40:50 +08:00
def self . remove_muted_tags ( list , user , opts = { } )
2020-08-20 13:10:03 +08:00
if ! SiteSetting . tagging_enabled || SiteSetting . remove_muted_tags_from_latest == " never "
2019-05-28 00:44:24 +08:00
return list
end
2020-08-20 13:10:03 +08:00
muted_tag_ids = [ ]
if user . present?
muted_tag_ids = TagUser . lookup ( user , :muted ) . pluck ( :tag_id )
else
2020-08-27 01:35:29 +08:00
muted_tag_names = SiteSetting . default_tags_muted . split ( " | " )
2022-12-23 04:29:17 +08:00
muted_tag_ids = Tag . where ( name : muted_tag_names ) . pluck ( :id ) if muted_tag_names . present?
2020-08-20 13:10:03 +08:00
end
2019-05-28 00:44:24 +08:00
return list if muted_tag_ids . blank?
# if viewing the topic list for a muted tag, show all the topics
2024-07-16 10:30:04 +08:00
if ! ActiveModel :: Type :: Boolean . new . cast ( opts [ :no_tags ] ) && opts [ :tags ] . present?
2020-07-20 18:01:29 +08:00
if TagUser
. lookup ( user , :muted )
. joins ( :tag )
. where ( " lower(tags.name) = ? " , opts [ :tags ] . first . downcase )
. exists?
return list
2023-01-09 20:10:19 +08:00
end
2019-05-28 00:44:24 +08:00
end
2023-07-04 13:08:29 +08:00
query_params = { tag_ids : muted_tag_ids }
if user && ! opts [ :skip_categories ]
query_params [ :regular ] = CategoryUser . notification_levels [ :regular ]
query_params [ :watching_or_infinite ] = if user . watched_precedence_over_muted ||
SiteSetting . watched_precedence_over_muted
CategoryUser . notification_levels [ :watching ]
else
99
end
end
2019-06-03 10:23:23 +08:00
if SiteSetting . remove_muted_tags_from_latest == " always "
2019-05-28 00:44:24 +08:00
list =
list . where (
"
NOT EXISTS (
SELECT 1
FROM topic_tags tt
WHERE tt . tag_id IN ( :tag_ids )
2023-06-27 12:49:34 +08:00
AND tt . topic_id = topics . id
#{user && !opts[:skip_categories] ? "AND COALESCE(category_users.notification_level, :regular) < :watching_or_infinite" : ""})",
2023-07-04 13:08:29 +08:00
query_params ,
2019-05-28 00:44:24 +08:00
)
else
list =
list . where (
"
EXISTS (
SELECT 1
FROM topic_tags tt
2023-06-27 12:49:34 +08:00
WHERE ( tt . tag_id NOT IN ( :tag_ids )
AND tt . topic_id = topics . id )
#{user && !opts[:skip_categories] ? "OR COALESCE(category_users.notification_level, :regular) >= :watching_or_infinite" : ""}
2019-05-28 00:44:24 +08:00
) OR NOT EXISTS ( SELECT 1 FROM topic_tags tt WHERE tt . topic_id = topics . id ) " ,
2023-07-04 13:08:29 +08:00
query_params ,
2019-05-28 00:44:24 +08:00
)
2016-04-26 03:55:15 +08:00
end
2018-06-07 13:28:18 +08:00
end
2014-02-03 13:05:49 +08:00
2021-02-04 08:27:34 +08:00
def remove_dismissed ( list , user )
2019-11-14 08:16:13 +08:00
if user
2021-07-30 17:00:48 +08:00
list . joins ( << ~ SQL ) . where ( " dismissed_topic_users.id IS NULL " )
LEFT JOIN dismissed_topic_users
ON dismissed_topic_users . topic_id = topics . id
AND dismissed_topic_users . user_id = #{user.id.to_i}
SQL
else
list
2019-11-14 08:16:13 +08:00
end
end
2016-02-03 15:50:05 +08:00
def new_messages ( params )
DEV: Topic tracking state improvements (#13218)
I merged this PR in yesterday, finally thinking this was done https://github.com/discourse/discourse/pull/12958 but then a wild performance regression occurred. These are the problem methods:
https://github.com/discourse/discourse/blob/1aa20bd681e634f7fff22953ed62d90c2573b331/app/serializers/topic_tracking_state_serializer.rb#L13-L21
Turns out date comparison is super expensive on the backend _as well as_ the frontend.
The fix was to just move the `treat_as_new_topic_start_date` into the SQL query rather than using the slower `UserOption#treat_as_new_topic_start_date` method in ruby. After this change, 1% of the total time is spent with the `created_in_new_period` comparison instead of ~20%.
----
History:
Original PR which had to be reverted **https://github.com/discourse/discourse/pull/12555**. See the description there for what this PR is achieving, plus below.
The issue with the original PR is addressed in https://github.com/discourse/discourse/pull/12958/commits/92ef54f4020111ffacb0f2a27da5d5c2855f9d5d
If you went to the `x unread` link for a tag Chrome would freeze up and possibly crash, or eventually unfreeze after nearly 10 mins. Other routes for unread/new were similarly slow. From profiling the issue was the `sync` function of `topic-tracking-state.js`, which calls down to `isNew` which in turn calls `moment`, a change I had made in the PR above. The time it takes locally with ~1400 topics in the tracking state is 2.3 seconds.
To solve this issue, I have moved these calculations for "created in new period" and "unread not too old" into the tracking state serializer.
When I was looking at the profiler I also noticed this issue which was just compounding the problem. Every time we modify topic tracking state we recalculate the sidebar tracking/everything/tag counts. However this calls `forEachTracked` and `countTags` which can be quite expensive as they go through the whole tracking state (and were also calling the removed moment functions).
I added some logs and this was being called 30 times when navigating to a new /unread route because `sync` is being called from `build-topic-route` (one for each topic loaded due to pagination). So I just added a debounce here and it makes things even faster.
Finally, I changed topic tracking state to use a Map so our counts of the state keys is faster (Maps have .size whereas objects you have to do Object.keys(obj) which is O(n).)
<!-- NOTE: All pull requests should have tests (rspec in Ruby, qunit in JavaScript). If your code does not include test coverage, please include an explanation of why it was omitted. -->
2021-06-02 07:06:29 +08:00
TopicQuery . new_filter (
messages_for_groups_or_user ( params [ :my_group_ids ] ) ,
treat_as_new_topic_start_date : Time . at ( SiteSetting . min_new_topics_time ) . to_datetime ,
2016-02-03 15:50:05 +08:00
) . limit ( params [ :count ] )
end
def unread_messages ( params )
2018-10-29 13:09:58 +08:00
query =
TopicQuery . unread_filter (
2017-09-15 22:45:01 +08:00
messages_for_groups_or_user ( params [ :my_group_ids ] ) ,
2022-06-30 08:18:12 +08:00
whisperer : @user . whisperer? ,
2020-09-03 14:02:15 +08:00
)
first_unread_pm_at =
if params [ :my_group_ids ] . present?
GroupUser . where ( user_id : @user . id , group_id : params [ :my_group_ids ] ) . minimum (
:first_unread_pm_at ,
)
else
2023-02-13 12:39:45 +08:00
UserStat . where ( user_id : @user . id ) . pick ( :first_unread_pm_at )
2020-09-03 14:02:15 +08:00
end
query = query . where ( " topics.updated_at >= ? " , first_unread_pm_at ) if first_unread_pm_at
query = query . limit ( params [ :count ] ) if params [ :count ]
2018-10-29 13:09:58 +08:00
query
PERF: Avoid unnecessary expensive joins if possible.
```
EXPLAIN ANALYZE SELECT "topics".* FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (
topics.id IN (
SELECT topic_id
FROM topic_allowed_groups tg
JOIN group_users gu ON gu.user_id = 13455 AND gu.group_id =
tg.group_id
WHERE gu.group_id IN (47)
)
)
AND (
topics.id IN (
SELECT ta.topic_id
FROM topic_allowed_users ta
WHERE ta.user_id IN (32852,-10)
)
OR
topics.id IN (
SELECT tg.topic_id
FROM topic_allowed_groups tg
WHERE tg.group_id IN (-10)
)
)
AND (topics.id NOT IN (69933,69995,69988,69984,69968,69973,69971,69952))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 3;
```
Planning time: 1.277 ms
Execution time: 71.577 ms
```
EXPLAIN ANALYZE SELECT "topics".* FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
LEFT JOIN (
SELECT * FROM topic_allowed_groups _tg
LEFT JOIN group_users gu
ON gu.user_id = 13455
AND gu.group_id = _tg.group_id
AND gu.group_id IN (47)
) tg ON topics.id = tg.topic_id
LEFT JOIN topic_allowed_users ta2 ON topics.id = ta2.topic_id AND
ta2.user_id IN (32852)
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (tg.topic_id IS NOT NULL)
AND (ta2.topic_id IS NOT NULL)
AND (topics.id NOT IN (69933,69995,69988,69984,69968,69973,69971,69952))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 3;
```
Planning time: 1.191 ms
Execution time: 0.129 ms
2017-09-14 11:12:59 +08:00
end
2017-09-15 22:21:05 +08:00
def related_messages_user ( params )
2017-09-15 22:45:01 +08:00
messages = messages_for_user . limit ( params [ :count ] )
messages = allowed_messages ( messages , params )
end
def related_messages_group ( params )
2017-05-26 03:07:12 +08:00
messages = messages_for_groups_or_user ( params [ :my_group_ids ] ) . limit ( params [ :count ] )
2017-09-15 22:45:01 +08:00
messages = allowed_messages ( messages , params )
2018-06-07 13:28:18 +08:00
end
2017-09-15 22:45:01 +08:00
def allowed_messages ( messages , params )
user_ids = ( params [ :target_user_ids ] || [ ] )
group_ids = ( ( params [ :target_group_ids ] - params [ :my_group_ids ] ) || [ ] )
PERF: Avoid unnecessary expensive joins if possible.
```
EXPLAIN ANALYZE SELECT "topics".* FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (
topics.id IN (
SELECT topic_id
FROM topic_allowed_groups tg
JOIN group_users gu ON gu.user_id = 13455 AND gu.group_id =
tg.group_id
WHERE gu.group_id IN (47)
)
)
AND (
topics.id IN (
SELECT ta.topic_id
FROM topic_allowed_users ta
WHERE ta.user_id IN (32852,-10)
)
OR
topics.id IN (
SELECT tg.topic_id
FROM topic_allowed_groups tg
WHERE tg.group_id IN (-10)
)
)
AND (topics.id NOT IN (69933,69995,69988,69984,69968,69973,69971,69952))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 3;
```
Planning time: 1.277 ms
Execution time: 71.577 ms
```
EXPLAIN ANALYZE SELECT "topics".* FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
LEFT JOIN (
SELECT * FROM topic_allowed_groups _tg
LEFT JOIN group_users gu
ON gu.user_id = 13455
AND gu.group_id = _tg.group_id
AND gu.group_id IN (47)
) tg ON topics.id = tg.topic_id
LEFT JOIN topic_allowed_users ta2 ON topics.id = ta2.topic_id AND
ta2.user_id IN (32852)
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (tg.topic_id IS NOT NULL)
AND (ta2.topic_id IS NOT NULL)
AND (topics.id NOT IN (69933,69995,69988,69984,69968,69973,69971,69952))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 3;
```
Planning time: 1.191 ms
Execution time: 0.129 ms
2017-09-14 11:12:59 +08:00
2017-09-15 22:45:01 +08:00
if user_ids . present?
messages =
messages . joins (
"
LEFT JOIN topic_allowed_users ta2
ON topics . id = ta2 . topic_id
2020-12-11 07:56:26 +08:00
AND #{DB.sql_fragment("ta2.user_id IN (?)", user_ids)}
2017-09-15 22:45:01 +08:00
" ,
)
end
if group_ids . present?
messages =
messages . joins (
"
LEFT JOIN topic_allowed_groups tg2
ON topics . id = tg2 . topic_id
2020-12-11 07:56:26 +08:00
AND #{DB.sql_fragment("tg2.group_id IN (?)", group_ids)}
2017-09-15 22:45:01 +08:00
" ,
)
2016-02-03 15:50:05 +08:00
end
messages =
if user_ids . present? && group_ids . present?
messages . where ( " ta2.topic_id IS NOT NULL OR tg2.topic_id IS NOT NULL " )
elsif user_ids . present?
messages . where ( " ta2.topic_id IS NOT NULL " )
elsif group_ids . present?
2017-09-15 22:45:01 +08:00
messages . where ( " tg2.topic_id IS NOT NULL " )
2016-02-03 15:50:05 +08:00
end
end
def messages_for_groups_or_user ( group_ids )
2017-09-15 22:45:01 +08:00
if group_ids . present?
PERF: Avoid `NOT IN (<subquery>>` which can get really slow.
```
EXPLAIN ANALYZE SELECT "topics".*
FROM "topics" LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND
tu.user_id = 13455
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (
topics.id IN (
SELECT topic_id
FROM topic_allowed_users
WHERE user_id = 13455
)
)
AND (
topics.id IN (
SELECT ta.topic_id
FROM topic_allowed_users ta
WHERE ta.user_id IN (2,1995,8307,17621,22980,-10)
)
OR
topics.id IN (
SELECT tg.topic_id
FROM topic_allowed_groups tg
WHERE tg.group_id IN (-10)
)
)
AND (topics.id NOT IN (68559,60069,42145))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at
DESC LIMIT 5;
```
Planning time: 1.196 ms
Execution time: 21.176 ms
```
EXPLAIN ANALYZE SELECT "topics".*
FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
LEFT JOIN topic_allowed_users ta ON topics.id = ta.topic_id AND
ta.user_id = 13455
LEFT JOIN topic_allowed_users ta2 ON topics.id = ta2.topic_id AND
ta2.user_id IN (2,1995,8307,17621,22980,-10)
LEFT JOIN topic_allowed_groups tg ON topics.id = tg.topic_id AND
tg.group_id IN (-10)
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (ta.topic_id IS NOT NULL)
AND (ta2.topic_id IS NOT NULL OR tg.topic_id IS NOT NULL)
AND (topics.id NOT IN (68559,60069,42145))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 5;
```
Planning time: 1.792 ms
Execution time: 2.546 ms
2017-09-13 22:22:33 +08:00
base_messages . joins (
"
2017-09-15 22:45:01 +08:00
LEFT JOIN (
PERF: Avoid `NOT IN (<subquery>>` which can get really slow.
```
EXPLAIN ANALYZE SELECT "topics".*
FROM "topics" LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND
tu.user_id = 13455
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (
topics.id IN (
SELECT topic_id
FROM topic_allowed_users
WHERE user_id = 13455
)
)
AND (
topics.id IN (
SELECT ta.topic_id
FROM topic_allowed_users ta
WHERE ta.user_id IN (2,1995,8307,17621,22980,-10)
)
OR
topics.id IN (
SELECT tg.topic_id
FROM topic_allowed_groups tg
WHERE tg.group_id IN (-10)
)
)
AND (topics.id NOT IN (68559,60069,42145))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at
DESC LIMIT 5;
```
Planning time: 1.196 ms
Execution time: 21.176 ms
```
EXPLAIN ANALYZE SELECT "topics".*
FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
LEFT JOIN topic_allowed_users ta ON topics.id = ta.topic_id AND
ta.user_id = 13455
LEFT JOIN topic_allowed_users ta2 ON topics.id = ta2.topic_id AND
ta2.user_id IN (2,1995,8307,17621,22980,-10)
LEFT JOIN topic_allowed_groups tg ON topics.id = tg.topic_id AND
tg.group_id IN (-10)
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (ta.topic_id IS NOT NULL)
AND (ta2.topic_id IS NOT NULL OR tg.topic_id IS NOT NULL)
AND (topics.id NOT IN (68559,60069,42145))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 5;
```
Planning time: 1.792 ms
Execution time: 2.546 ms
2017-09-13 22:22:33 +08:00
SELECT * FROM topic_allowed_groups _tg
LEFT JOIN group_users gu
ON gu . user_id = #{@user.id.to_i}
AND gu . group_id = _tg . group_id
2020-12-11 07:56:26 +08:00
WHERE #{DB.sql_fragment("gu.group_id IN (?)", group_ids)}
PERF: Avoid `NOT IN (<subquery>>` which can get really slow.
```
EXPLAIN ANALYZE SELECT "topics".*
FROM "topics" LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND
tu.user_id = 13455
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (
topics.id IN (
SELECT topic_id
FROM topic_allowed_users
WHERE user_id = 13455
)
)
AND (
topics.id IN (
SELECT ta.topic_id
FROM topic_allowed_users ta
WHERE ta.user_id IN (2,1995,8307,17621,22980,-10)
)
OR
topics.id IN (
SELECT tg.topic_id
FROM topic_allowed_groups tg
WHERE tg.group_id IN (-10)
)
)
AND (topics.id NOT IN (68559,60069,42145))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at
DESC LIMIT 5;
```
Planning time: 1.196 ms
Execution time: 21.176 ms
```
EXPLAIN ANALYZE SELECT "topics".*
FROM "topics"
LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id =
13455
LEFT JOIN topic_allowed_users ta ON topics.id = ta.topic_id AND
ta.user_id = 13455
LEFT JOIN topic_allowed_users ta2 ON topics.id = ta2.topic_id AND
ta2.user_id IN (2,1995,8307,17621,22980,-10)
LEFT JOIN topic_allowed_groups tg ON topics.id = tg.topic_id AND
tg.group_id IN (-10)
WHERE ("topics"."deleted_at" IS NULL)
AND (topics.archetype = 'private_message')
AND (ta.topic_id IS NOT NULL)
AND (ta2.topic_id IS NOT NULL OR tg.topic_id IS NOT NULL)
AND (topics.id NOT IN (68559,60069,42145))
AND "topics"."visible" = 't'
ORDER BY topics.bumped_at DESC
LIMIT 5;
```
Planning time: 1.792 ms
Execution time: 2.546 ms
2017-09-13 22:22:33 +08:00
) tg ON topics . id = tg . topic_id
" ,
) . where ( " tg.topic_id IS NOT NULL " )
2018-06-07 13:28:18 +08:00
else
2016-02-03 15:50:05 +08:00
messages_for_user
end
2018-06-07 13:28:18 +08:00
end
2016-02-03 15:50:05 +08:00
def messages_for_user
base_messages . joins (
"
LEFT JOIN topic_allowed_users ta
ON topics . id = ta . topic_id
AND ta . user_id = #{@user.id.to_i}
" ,
2017-05-22 18:05:38 +08:00
) . where ( " ta.topic_id IS NOT NULL " )
2016-02-03 15:50:05 +08:00
end
2014-02-03 13:05:49 +08:00
2014-01-29 07:15:36 +08:00
def base_messages
query =
2014-02-05 01:26:38 +08:00
Topic . where ( " topics.archetype = ? " , Archetype . private_message ) . joins (
" LEFT JOIN topic_users tu ON topics.id = tu.topic_id AND tu.user_id = #{ @user . id . to_i } " ,
)
2018-01-15 12:32:25 +08:00
query = query . includes ( :tags ) if SiteSetting . tagging_enabled
2014-01-29 07:15:36 +08:00
query . order ( " topics.bumped_at DESC " )
end
2013-02-06 03:16:51 +08:00
2014-07-29 12:34:54 +08:00
def random_suggested ( topic , count , excluded_topic_ids = [ ] )
result = default_results ( unordered : true , per_page : count ) . where ( closed : false , archived : false )
2013-07-13 02:38:20 +08:00
if SiteSetting . limit_suggested_to_category
2013-07-19 02:47:59 +08:00
excluded_topic_ids += Category . where ( id : topic . category_id ) . pluck ( :id )
else
excluded_topic_ids += Category . topic_ids . to_a
end
result =
result . where ( " topics.id NOT IN (?) " , excluded_topic_ids ) unless excluded_topic_ids . empty?
2013-02-28 07:30:14 +08:00
2018-01-15 12:32:25 +08:00
result = remove_muted_categories ( result , @user )
2020-11-24 20:16:10 +08:00
result = remove_muted_topics ( result , @user )
2015-02-25 14:19:12 +08:00
2015-03-03 07:20:42 +08:00
# If we are in a category, prefer it for the random results
2013-07-17 03:20:18 +08:00
if topic . category_id
2015-03-03 07:20:42 +08:00
result =
result . order ( " CASE WHEN topics.category_id = #{ topic . category_id . to_i } THEN 0 ELSE 1 END " )
2013-02-06 03:16:51 +08:00
end
2013-08-09 01:18:52 +08:00
# Best effort, it over selects, however if you have a high number
# of muted categories there is tiny chance we will not select enough
# in particular this can happen if current category is empty and tons
# of muted, big edge case
2018-06-07 13:28:18 +08:00
#
2013-08-09 01:18:52 +08:00
# we over select in case cache is stale
max = ( count * 1 . 3 ) . to_i
ids = SiteSetting . limit_suggested_to_category ? [ ] : RandomTopicSelector . next ( max )
ids . concat ( RandomTopicSelector . next ( max , topic . category ) )
2018-06-07 13:28:18 +08:00
2013-08-09 01:18:52 +08:00
result . where ( id : ids . uniq )
end
2015-02-23 13:50:52 +08:00
def suggested_ordering ( result , options )
2013-11-15 04:50:36 +08:00
# Prefer unread in the same category
2013-08-09 01:18:52 +08:00
if options [ :topic ] && options [ :topic ] . category_id
2015-02-23 13:50:52 +08:00
result =
result . order (
" CASE WHEN topics.category_id = #{ options [ :topic ] . category_id . to_i } THEN 0 ELSE 1 END " ,
)
2013-08-09 01:18:52 +08:00
end
2017-09-15 22:45:01 +08:00
2018-03-23 04:38:53 +08:00
result . order ( " topics.bumped_at DESC " )
2018-06-07 13:28:18 +08:00
end
2021-08-10 22:30:34 +08:00
private
2022-06-30 08:18:12 +08:00
def unseen_filter ( list , user_first_seen_at , whisperer )
2021-08-10 22:30:34 +08:00
list = list . where ( " topics.bumped_at >= ? " , user_first_seen_at )
2022-06-30 08:18:12 +08:00
col_name = whisperer ? " highest_staff_post_number " : " highest_post_number "
2021-08-10 22:30:34 +08:00
list . where ( " tu.last_read_post_number IS NULL OR tu.last_read_post_number < topics. #{ col_name } " )
end
2023-02-16 21:02:09 +08:00
def apply_max_age_limit ( results , options )
if @user
# micro optimisation so we don't load up all of user stats which we do not need
unread_at =
DB . query_single ( " select first_unread_at from user_stats where user_id = ? " , @user . id ) . first
if max_age = options [ :max_age ]
max_age_date = max_age . days . ago
unread_at || = max_age_date
unread_at = unread_at > max_age_date ? unread_at : max_age_date
end
# perf note, in the past we tried doing this in a subquery but performance was
# terrible, also tried with a join and it was bad
results = results . where ( " topics.updated_at >= ? " , unread_at )
end
results
end
2023-03-24 11:17:55 +08:00
def filter_by_tags ( result )
tags_arg = @options [ :tags ]
if tags_arg && tags_arg . size > 0
tags_arg = tags_arg . split if String === tags_arg
2024-08-26 23:18:55 +08:00
tags_query = DiscourseTagging . visible_tags ( @guardian )
tags_query =
tags_arg [ 0 ] . is_a? ( String ) ? tags_query . where_name ( tags_arg ) : tags_query . where ( id : tags_arg )
2023-03-24 11:17:55 +08:00
tags = tags_query . select ( :id , :target_tag_id ) . map { | t | t . target_tag_id || t . id } . uniq
if ActiveModel :: Type :: Boolean . new . cast ( @options [ :match_all_tags ] )
# ALL of the given tags:
if tags_arg . length == tags . length
tags . each_with_index do | tag , index |
sql_alias = [ " t " , index ] . join
result =
result . joins (
" INNER JOIN topic_tags #{ sql_alias } ON #{ sql_alias } .topic_id = topics.id AND #{ sql_alias } .tag_id = #{ tag } " ,
)
end
else
result = result . none # don't return any results unless all tags exist in the database
end
else
# ANY of the given tags:
result = result . joins ( :tags ) . where ( " tags.id in (?) " , tags )
end
2024-02-23 14:11:39 +08:00
@options [ :tag_ids ] = tags
2024-07-16 10:30:04 +08:00
elsif ActiveModel :: Type :: Boolean . new . cast ( @options [ :no_tags ] )
2023-03-24 11:17:55 +08:00
# the following will do: ("topics"."id" NOT IN (SELECT DISTINCT "topic_tags"."topic_id" FROM "topic_tags"))
result = result . where . not ( id : TopicTag . distinct . select ( :topic_id ) )
end
if @options [ :exclude_tag ] . present? &&
! DiscourseTagging . hidden_tag_names ( @guardian ) . include? ( @options [ :exclude_tag ] )
result = result . where ( << ~ SQL , name : @options [ :exclude_tag ] )
topics . id NOT IN (
SELECT topic_tags . topic_id
FROM topic_tags
INNER JOIN tags ON tags . id = topic_tags . tag_id
WHERE tags . name = :name
)
SQL
end
result
end
2013-02-06 03:16:51 +08:00
end