Refactor topic_query.rb for better readability

- Available options are defined and validated
- Internal methods are now protected
- Renamed some variables to be more consistent
This commit is contained in:
Stephan Kaag 2013-07-16 21:20:18 +02:00
parent 7c9bd8e8c9
commit 6067736562
1 changed files with 69 additions and 79 deletions

View File

@ -6,6 +6,8 @@ require_dependency 'topic_list'
require_dependency 'suggested_topics_builder' require_dependency 'suggested_topics_builder'
class TopicQuery class TopicQuery
# Could be rewritten to %i if Ruby 1.9 is no longer supported
VALID_OPTIONS = %w(except_topic_id exclude_category limit page per_page topic_ids visible).map(&:to_sym)
class << self class << self
# use the constants in conjuction with COALESCE to determine the order with regard to pinned # use the constants in conjuction with COALESCE to determine the order with regard to pinned
@ -29,21 +31,20 @@ class TopicQuery
end end
def order_hotness def order_hotness
if @user
# When anonymous, don't use topic_user # When logged in take into accounts what pins you've closed
if @user.blank? "CASE
return "CASE WHEN (COALESCE(topics.pinned_at, '#{lowest_date}') > COALESCE(tu.cleared_pinned_at, '#{lowest_date}'))
WHEN topics.pinned_at IS NOT NULL THEN 100 THEN 100
ELSE hot_topics.score + (COALESCE(categories.hotness, 5.0) / 11.0) ELSE hot_topics.score + (COALESCE(categories.hotness, 5.0) / 11.0)
END DESC" END DESC"
else
# When anonymous, don't use topic_user
"CASE
WHEN topics.pinned_at IS NOT NULL THEN 100
ELSE hot_topics.score + (COALESCE(categories.hotness, 5.0) / 11.0)
END DESC"
end end
# When logged in take into accounts what pins you've closed
"CASE
WHEN (COALESCE(topics.pinned_at, '#{lowest_date}') > COALESCE(tu.cleared_pinned_at, '#{lowest_date}'))
THEN 100
ELSE hot_topics.score + (COALESCE(categories.hotness, 5.0) / 11.0)
END DESC"
end end
# If you've clearned the pin, use bumped_at, otherwise put it at the top # If you've clearned the pin, use bumped_at, otherwise put it at the top
@ -71,16 +72,13 @@ class TopicQuery
def recent(max) def recent(max)
Topic.listable_topics.visible.secured.order('created_at desc').take(10) Topic.listable_topics.visible.secured.order('created_at desc').take(10)
end end
end end
def initialize(user=nil, opts={}) def initialize(user=nil, options={})
options.assert_valid_keys(VALID_OPTIONS)
@options = options
@user = user @user = user
# Cast to int to avoid sql injection
@user_id = user.id.to_i if @user.present?
@opts = opts
end end
# Return a list of suggested topics for a topic # Return a list of suggested topics for a topic
@ -88,13 +86,13 @@ class TopicQuery
builder = SuggestedTopicsBuilder.new(topic) builder = SuggestedTopicsBuilder.new(topic)
# When logged in we start with different results # When logged in we start with different results
if @user.present? if @user
builder.add_results(unread_results(per_page: builder.results_left)) builder.add_results(unread_results(per_page: builder.results_left))
builder.add_results(new_results(per_page: builder.results_left)) unless builder.full? builder.add_results(new_results(per_page: builder.results_left)) unless builder.full?
end end
builder.add_results(random_suggested(topic, builder.results_left)) unless builder.full? builder.add_results(random_suggested(topic, builder.results_left)) unless builder.full?
TopicList.new(:suggested, @user, builder.results) create_list(:suggested, {}, builder.results)
end end
# The latest view of topics # The latest view of topics
@ -120,11 +118,11 @@ class TopicQuery
end end
def list_new def list_new
TopicList.new(:new, @user, new_results) create_list(:new, {}, new_results)
end end
def list_unread def list_unread
TopicList.new(:unread, @user, unread_results) create_list(:unread, {}, unread_results)
end end
def list_posted def list_posted
@ -135,7 +133,7 @@ class TopicQuery
create_list(:uncategorized, unordered: true) do |list| create_list(:uncategorized, unordered: true) do |list|
list = list.where(category_id: nil) list = list.where(category_id: nil)
if @user_id.present? if @user
list.order(TopicQuery.order_with_pinned_sql) list.order(TopicQuery.order_with_pinned_sql)
else else
list.order(TopicQuery.order_nocategory_basic_bumped) list.order(TopicQuery.order_nocategory_basic_bumped)
@ -146,7 +144,7 @@ class TopicQuery
def list_category(category) def list_category(category)
create_list(:category, unordered: true) do |list| create_list(:category, unordered: true) do |list|
list = list.where(category_id: category.id) list = list.where(category_id: category.id)
if @user_id.present? if @user
list.order(TopicQuery.order_with_pinned_sql) list.order(TopicQuery.order_with_pinned_sql)
else else
list.order(TopicQuery.order_basic_bumped) list.order(TopicQuery.order_basic_bumped)
@ -154,6 +152,21 @@ class TopicQuery
end end
end end
def list_new_in_category(category)
create_list(:new_in_category) {|l| l.where(category_id: category.id).by_newest.first(25)}
end
def self.new_filter(list, treat_as_new_topic_start_date)
list.where("topics.created_at >= :created_at", created_at: treat_as_new_topic_start_date)
.where("tu.last_read_post_number IS NULL")
.where("COALESCE(tu.notification_level, :tracking) >= :tracking", tracking: TopicUser.notification_levels[:tracking])
end
def self.unread_filter(list)
list.where("tu.last_read_post_number < topics.highest_post_number")
.where("COALESCE(tu.notification_level, :regular) >= :tracking", regular: TopicUser.notification_levels[:regular], tracking: TopicUser.notification_levels[:tracking])
end
def unread_count def unread_count
unread_results(limit: false).count unread_results(limit: false).count
end end
@ -162,59 +175,27 @@ class TopicQuery
new_results(limit: false).count new_results(limit: false).count
end end
def list_new_in_category(category)
create_list(:new_in_category) {|l| l.where(category_id: category.id).by_newest.first(25)}
end
def self.new_filter(list,treat_as_new_topic_start_date)
list.where("topics.created_at >= :created_at", created_at: treat_as_new_topic_start_date)
.where("tu.last_read_post_number IS NULL")
.where("COALESCE(tu.notification_level, :tracking) >= :tracking", tracking: TopicUser.notification_levels[:tracking])
end
def new_results(list_opts={})
TopicQuery.new_filter(default_list(list_opts),@user.treat_as_new_topic_start_date)
end
def self.unread_filter(list)
list.where("tu.last_read_post_number < topics.highest_post_number")
.where("COALESCE(tu.notification_level, :regular) >= :tracking", regular: TopicUser.notification_levels[:regular], tracking: TopicUser.notification_levels[:tracking])
end
def unread_results(list_opts={})
list_opts[:unordered] ||= true
TopicQuery.unread_filter(default_list(list_opts))
.order('CASE WHEN topics.user_id = tu.user_id THEN 1 ELSE 2 END')
.order(TopicQuery.order_nocategory_with_pinned_sql)
end
protected protected
def create_list(filter, list_opts={}) def create_list(filter, options={}, topics = nil)
opts = list_opts topics ||= default_results(options)
if @opts[:topic_ids]
opts = opts.dup
opts[:topic_ids] = @opts[:topic_ids]
end
topics = default_list(opts)
topics = yield(topics) if block_given? topics = yield(topics) if block_given?
TopicList.new(filter, @user, topics) TopicList.new(filter, @user, topics)
end end
# Create a list based on a bunch of detault options # Create results based on a bunch of default options
def default_list(list_opts={}) def default_results(options={})
options.reverse_merge!(@options)
query_opts = @opts.merge(list_opts) options.reverse_merge!(per_page: SiteSetting.topics_per_page)
page_size = query_opts[:per_page] || SiteSetting.topics_per_page
# Start with a list of all topics # Start with a list of all topics
result = Topic result = Topic
if @user_id if @user
result = result.joins("LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = #{@user_id})") result = result.joins("LEFT OUTER JOIN topic_users AS tu ON (topics.id = tu.topic_id AND tu.user_id = #{@user.id.to_i})")
end end
unless query_opts[:unordered] unless options[:unordered]
# If we're logged in, we have to pay attention to our pinned settings # If we're logged in, we have to pay attention to our pinned settings
if @user if @user
result = result.order(TopicQuery.order_nocategory_with_pinned_sql) result = result.order(TopicQuery.order_nocategory_with_pinned_sql)
@ -223,17 +204,16 @@ class TopicQuery
end end
end end
result = result.listable_topics.includes(category: :topic_only_relative_url) result = result.listable_topics.includes(category: :topic_only_relative_url)
result = result.where('categories.name is null or categories.name <> ?', query_opts[:exclude_category]) if query_opts[:exclude_category] result = result.where('categories.name is null or categories.name <> ?', options[:exclude_category]) if options[:exclude_category]
result = result.where('categories.name = ?', query_opts[:only_category]) if query_opts[:only_category] result = result.where('categories.name = ?', options[:only_category]) if options[:only_category]
result = result.limit(page_size) unless query_opts[:limit] == false result = result.limit(options[:per_page]) unless options[:limit] == false
result = result.visible if @opts[:visible] or @user.blank? or @user.regular? result = result.visible if options[:visible] || @user.nil? || @user.regular?
result = result.where('topics.id <> ?', query_opts[:except_topic_id]) if query_opts[:except_topic_id].present? result = result.where('topics.id <> ?', options[:except_topic_id]) if options[:except_topic_id]
result = result.offset(query_opts[:page].to_i * page_size) if query_opts[:page].present? result = result.offset(options[:page].to_i * options[:per_page]) if options[:page]
if list_opts[:topic_ids] if options[:topic_ids]
result = result.where('topics.id in (?)', list_opts[:topic_ids]) result = result.where('topics.id in (?)', options[:topic_ids])
end end
unless @user && @user.moderator? unless @user && @user.moderator?
@ -248,11 +228,21 @@ class TopicQuery
result result
end end
def new_results(options={})
TopicQuery.new_filter(default_results(options), @user.treat_as_new_topic_start_date)
end
def unread_results(options={})
TopicQuery.unread_filter(default_results(options.reverse_merge(:unordered => true)))
.order('CASE WHEN topics.user_id = tu.user_id THEN 1 ELSE 2 END')
.order(TopicQuery.order_nocategory_with_pinned_sql)
end
def random_suggested(topic, count) def random_suggested(topic, count)
result = default_list(unordered: true, per_page: count) result = default_results(unordered: true, per_page: count)
# If we are in a category, prefer it for the random results # If we are in a category, prefer it for the random results
if topic.category_id.present? if topic.category_id
result = result.order("CASE WHEN topics.category_id = #{topic.category_id.to_i} THEN 0 ELSE 1 END, RANDOM()") result = result.order("CASE WHEN topics.category_id = #{topic.category_id.to_i} THEN 0 ELSE 1 END, RANDOM()")
end end