2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-07 04:34:49 -05:00
|
|
|
class UserSearch
|
2013-02-07 05:54:55 -05:00
|
|
|
|
2019-08-06 20:31:25 -04:00
|
|
|
MAX_SIZE_PRIORITY_MENTION ||= 500
|
|
|
|
|
2014-05-13 11:44:06 -04:00
|
|
|
def initialize(term, opts = {})
|
2021-01-25 05:23:36 -05:00
|
|
|
@term = term.downcase
|
|
|
|
@term_like = @term.gsub("_", "\\_") + "%"
|
2014-05-13 11:44:06 -04:00
|
|
|
@topic_id = opts[:topic_id]
|
2019-08-06 03:57:45 -04:00
|
|
|
@category_id = opts[:category_id]
|
2015-04-13 11:03:13 -04:00
|
|
|
@topic_allowed_users = opts[:topic_allowed_users]
|
2014-05-13 11:44:06 -04:00
|
|
|
@searching_user = opts[:searching_user]
|
2017-11-18 19:17:31 -05:00
|
|
|
@include_staged_users = opts[:include_staged_users] || false
|
2021-07-21 09:14:53 -04:00
|
|
|
@last_seen_users = opts[:last_seen_users] || false
|
2014-05-14 22:22:35 -04:00
|
|
|
@limit = opts[:limit] || 20
|
2019-05-10 11:35:36 -04:00
|
|
|
@groups = opts[:groups]
|
2021-01-25 05:23:36 -05:00
|
|
|
|
|
|
|
@topic = Topic.find(@topic_id) if @topic_id
|
|
|
|
@category = Category.find(@category_id) if @category_id
|
|
|
|
|
2017-02-09 18:45:39 -05:00
|
|
|
@guardian = Guardian.new(@searching_user)
|
2021-01-25 05:23:36 -05:00
|
|
|
@guardian.ensure_can_see_groups_members!(@groups) if @groups
|
|
|
|
@guardian.ensure_can_see_category!(@category) if @category
|
|
|
|
@guardian.ensure_can_see_topic!(@topic) if @topic
|
2013-10-30 15:45:13 -04:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
def scoped_users
|
2017-11-18 19:17:31 -05:00
|
|
|
users = User.where(active: true)
|
|
|
|
users = users.where(staged: false) unless @include_staged_users
|
2021-01-25 05:23:36 -05:00
|
|
|
users = users.not_suspended unless @searching_user&.staff?
|
2015-05-14 00:38:47 -04:00
|
|
|
|
2019-05-10 11:35:36 -04:00
|
|
|
if @groups
|
2021-01-25 05:23:36 -05:00
|
|
|
users = users
|
|
|
|
.joins(:group_users)
|
2019-05-10 11:35:36 -04:00
|
|
|
.where("group_users.group_id IN (?)", @groups.map(&:id))
|
2017-02-09 18:45:39 -05:00
|
|
|
end
|
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
# Only show users who have access to private topic
|
2021-01-25 05:23:36 -05:00
|
|
|
if @topic_allowed_users == "true" && @topic&.category&.read_restricted
|
|
|
|
users = users
|
|
|
|
.references(:categories)
|
|
|
|
.includes(:secure_categories)
|
|
|
|
.where("users.admin OR categories.id = ?", @topic.category_id)
|
2015-05-14 00:38:47 -04:00
|
|
|
end
|
2013-02-07 04:34:49 -05:00
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
users
|
2015-05-14 00:38:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_by_term_users
|
2021-01-25 05:23:36 -05:00
|
|
|
if @term.blank?
|
|
|
|
scoped_users
|
|
|
|
elsif SiteSetting.enable_names? && @term !~ /[_\.-]/
|
|
|
|
query = Search.ts_query(term: @term, ts_config: "simple")
|
|
|
|
|
|
|
|
scoped_users
|
|
|
|
.includes(:user_search_data)
|
|
|
|
.where("user_search_data.search_data @@ #{query}")
|
|
|
|
.order(DB.sql_fragment("CASE WHEN username_lower LIKE ? THEN 0 ELSE 1 END ASC", @term_like))
|
|
|
|
else
|
|
|
|
scoped_users.where("username_lower LIKE :term_like", term_like: @term_like)
|
2013-02-07 04:34:49 -05:00
|
|
|
end
|
2015-05-14 00:38:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def search_ids
|
|
|
|
users = Set.new
|
|
|
|
|
2021-01-25 15:27:15 -05:00
|
|
|
# 1. exact username matches
|
2015-05-14 00:38:47 -04:00
|
|
|
if @term.present?
|
2021-01-25 15:27:15 -05:00
|
|
|
exact_matches = scoped_users.where(username_lower: @term)
|
|
|
|
|
2021-05-20 21:43:47 -04:00
|
|
|
# don't pollute mentions with users who haven't shown up in over a year
|
2021-01-25 15:27:15 -05:00
|
|
|
exact_matches = exact_matches.where('last_seen_at > ?', 1.year.ago) if @topic_id || @category_id
|
|
|
|
|
|
|
|
exact_matches
|
2015-11-04 17:04:37 -05:00
|
|
|
.limit(@limit)
|
2015-05-14 00:38:47 -04:00
|
|
|
.pluck(:id)
|
2015-11-04 17:04:37 -05:00
|
|
|
.each { |id| users << id }
|
2014-05-13 11:44:06 -04:00
|
|
|
end
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
return users.to_a if users.size >= @limit
|
2015-04-13 11:03:13 -04:00
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
# 2. in topic
|
|
|
|
if @topic_id
|
2019-08-06 03:57:45 -04:00
|
|
|
in_topic = filtered_by_term_users
|
2021-01-25 05:23:36 -05:00
|
|
|
.where('users.id IN (SELECT user_id FROM posts WHERE topic_id = ?)', @topic_id)
|
2019-02-19 21:33:56 -05:00
|
|
|
|
|
|
|
if @searching_user.present?
|
|
|
|
in_topic = in_topic.where('users.id <> ?', @searching_user.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
in_topic
|
2021-01-25 05:23:36 -05:00
|
|
|
.order('last_seen_at DESC NULLS LAST')
|
|
|
|
.limit(@limit - users.size)
|
2015-05-14 00:38:47 -04:00
|
|
|
.pluck(:id)
|
2015-11-04 17:04:37 -05:00
|
|
|
.each { |id| users << id }
|
2015-04-13 11:03:13 -04:00
|
|
|
end
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
return users.to_a if users.size >= @limit
|
|
|
|
|
|
|
|
# 3. in category
|
|
|
|
secure_category_id =
|
|
|
|
if @category_id
|
|
|
|
DB.query_single(<<~SQL, @category_id).first
|
|
|
|
SELECT id
|
|
|
|
FROM categories
|
|
|
|
WHERE read_restricted
|
|
|
|
AND id = ?
|
|
|
|
SQL
|
|
|
|
elsif @topic_id
|
|
|
|
DB.query_single(<<~SQL, @topic_id).first
|
|
|
|
SELECT id
|
|
|
|
FROM categories
|
|
|
|
WHERE read_restricted
|
|
|
|
AND id IN (SELECT category_id FROM topics WHERE id = ?)
|
|
|
|
SQL
|
|
|
|
end
|
2019-08-06 03:57:45 -04:00
|
|
|
|
|
|
|
if secure_category_id
|
2019-10-24 08:23:19 -04:00
|
|
|
category_groups = Group.where(<<~SQL, secure_category_id, MAX_SIZE_PRIORITY_MENTION)
|
|
|
|
groups.id IN (
|
2021-01-25 05:23:36 -05:00
|
|
|
SELECT group_id
|
|
|
|
FROM category_groups
|
|
|
|
JOIN groups g ON group_id = g.id
|
|
|
|
WHERE category_id = ?
|
|
|
|
AND user_count < ?
|
2019-10-24 08:23:19 -04:00
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
if @searching_user.present?
|
|
|
|
category_groups = category_groups.members_visible_groups(@searching_user)
|
|
|
|
end
|
2019-10-24 08:23:19 -04:00
|
|
|
|
2019-08-06 03:57:45 -04:00
|
|
|
in_category = filtered_by_term_users
|
2019-10-24 08:23:19 -04:00
|
|
|
.where(<<~SQL, category_groups.pluck(:id))
|
2019-08-06 03:57:45 -04:00
|
|
|
users.id IN (
|
|
|
|
SELECT gu.user_id
|
2021-01-25 05:23:36 -05:00
|
|
|
FROM group_users gu
|
|
|
|
WHERE group_id IN (?)
|
|
|
|
LIMIT 200
|
2019-08-06 03:57:45 -04:00
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
|
|
|
if @searching_user.present?
|
|
|
|
in_category = in_category.where('users.id <> ?', @searching_user.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
in_category
|
2021-01-25 05:23:36 -05:00
|
|
|
.order('last_seen_at DESC NULLS LAST')
|
|
|
|
.limit(@limit - users.size)
|
2019-08-06 03:57:45 -04:00
|
|
|
.pluck(:id)
|
|
|
|
.each { |id| users << id }
|
|
|
|
end
|
|
|
|
|
2021-01-25 05:23:36 -05:00
|
|
|
return users.to_a if users.size >= @limit
|
|
|
|
|
2019-08-06 03:57:45 -04:00
|
|
|
# 4. global matches
|
|
|
|
if @term.present?
|
2021-01-25 05:23:36 -05:00
|
|
|
filtered_by_term_users
|
|
|
|
.order('last_seen_at DESC NULLS LAST')
|
|
|
|
.limit(@limit - users.size)
|
2019-02-19 21:33:56 -05:00
|
|
|
.pluck(:id)
|
|
|
|
.each { |id| users << id }
|
|
|
|
end
|
2015-05-14 00:38:47 -04:00
|
|
|
|
2021-07-21 09:14:53 -04:00
|
|
|
# 5. last seen users (for search auto-suggestions)
|
|
|
|
if @last_seen_users
|
|
|
|
scoped_users
|
|
|
|
.order('last_seen_at DESC NULLS LAST')
|
|
|
|
.limit(@limit - users.size)
|
|
|
|
.pluck(:id)
|
|
|
|
.each { |id| users << id }
|
|
|
|
end
|
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
users.to_a
|
|
|
|
end
|
|
|
|
|
|
|
|
def search
|
|
|
|
ids = search_ids
|
|
|
|
return User.where("0=1") if ids.empty?
|
|
|
|
|
|
|
|
User.joins("JOIN (SELECT unnest uid, row_number() OVER () AS rn
|
|
|
|
FROM unnest('{#{ids.join(",")}}'::int[])
|
|
|
|
) x on uid = users.id")
|
|
|
|
.order("rn")
|
2013-02-07 04:34:49 -05:00
|
|
|
end
|
2013-10-30 15:45:13 -04:00
|
|
|
|
2013-02-10 07:37:24 -05:00
|
|
|
end
|