2013-10-30 15:45:13 -04:00
|
|
|
# Searches for a user by username or full text or name (if enabled in SiteSettings)
|
2017-01-03 02:33:57 -05:00
|
|
|
require_dependency 'search'
|
|
|
|
|
2013-02-07 04:34:49 -05:00
|
|
|
class UserSearch
|
2013-02-07 05:54:55 -05:00
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def initialize(term, opts = {})
|
2013-10-30 15:45:13 -04:00
|
|
|
@term = term
|
2015-11-30 01:03:47 -05:00
|
|
|
@term_like = "#{term.downcase.gsub("_", "\\_")}%"
|
2014-05-13 11:44:06 -04:00
|
|
|
@topic_id = opts[:topic_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
|
2014-05-14 22:22:35 -04:00
|
|
|
@limit = opts[:limit] || 20
|
2017-02-09 18:45:39 -05:00
|
|
|
@group = opts[:group]
|
|
|
|
@guardian = Guardian.new(@searching_user)
|
|
|
|
@guardian.ensure_can_see_group!(@group) if @group
|
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
|
2015-05-14 00:38:47 -04:00
|
|
|
|
2017-02-09 18:45:39 -05:00
|
|
|
if @group
|
|
|
|
users = users.where('users.id IN (
|
|
|
|
SELECT user_id FROM group_users WHERE group_id = ?
|
|
|
|
)', @group.id)
|
|
|
|
end
|
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
unless @searching_user && @searching_user.staff?
|
|
|
|
users = users.not_suspended
|
|
|
|
end
|
|
|
|
|
|
|
|
# Only show users who have access to private topic
|
|
|
|
if @topic_id && @topic_allowed_users == "true"
|
|
|
|
topic = Topic.find_by(id: @topic_id)
|
|
|
|
|
|
|
|
if topic.category && topic.category.read_restricted
|
|
|
|
users = users.includes(:secure_categories)
|
2017-07-27 21:20:09 -04:00
|
|
|
.where("users.admin = TRUE OR categories.id = ?", topic.category.id)
|
|
|
|
.references(:categories)
|
2015-05-14 00:38:47 -04:00
|
|
|
end
|
|
|
|
end
|
2013-02-07 04:34:49 -05:00
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
users.limit(@limit)
|
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_by_term_users
|
|
|
|
users = scoped_users
|
2014-08-13 13:30:25 -04:00
|
|
|
|
2013-10-30 15:45:13 -04:00
|
|
|
if @term.present?
|
2015-11-30 01:03:47 -05:00
|
|
|
if SiteSetting.enable_names? && @term !~ /[_\.-]/
|
2018-02-19 22:41:00 -05:00
|
|
|
query = Search.ts_query(term: @term, ts_config: "simple")
|
2015-11-30 01:03:47 -05:00
|
|
|
|
2014-07-04 19:11:41 -04:00
|
|
|
users = users.includes(:user_search_data)
|
2017-07-27 21:20:09 -04:00
|
|
|
.references(:user_search_data)
|
|
|
|
.where("user_search_data.search_data @@ #{query}")
|
2018-06-20 03:48:02 -04:00
|
|
|
.order(DB.sql_fragment("CASE WHEN username_lower LIKE ? THEN 0 ELSE 1 END ASC", @term_like))
|
2015-11-30 01:03:47 -05:00
|
|
|
|
2013-10-30 15:45:13 -04:00
|
|
|
else
|
|
|
|
users = users.where("username_lower LIKE :term_like", term_like: @term_like)
|
|
|
|
end
|
2013-02-07 04:34:49 -05:00
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
users
|
|
|
|
end
|
|
|
|
|
|
|
|
def search_ids
|
|
|
|
users = Set.new
|
|
|
|
|
|
|
|
# 1. exact username matches
|
|
|
|
if @term.present?
|
|
|
|
scoped_users.where(username_lower: @term.downcase)
|
2017-07-27 21:20:09 -04:00
|
|
|
.limit(@limit)
|
|
|
|
.pluck(:id)
|
|
|
|
.each { |id| users << id }
|
2013-02-07 04:34:49 -05:00
|
|
|
|
2014-05-13 11:44:06 -04:00
|
|
|
end
|
|
|
|
|
2015-11-04 17:04:37 -05:00
|
|
|
return users.to_a if users.length >= @limit
|
2015-04-13 11:03:13 -04:00
|
|
|
|
2015-05-14 00:38:47 -04:00
|
|
|
# 2. in topic
|
|
|
|
if @topic_id
|
2019-02-19 21:33:56 -05:00
|
|
|
in_topic = filtered_by_term_users.where('users.id IN (SELECT p.user_id FROM posts p WHERE topic_id = ?)', @topic_id)
|
|
|
|
|
|
|
|
if @searching_user.present?
|
|
|
|
in_topic = in_topic.where('users.id <> ?', @searching_user.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
in_topic
|
2017-07-27 21:20:09 -04:00
|
|
|
.order('last_seen_at DESC')
|
|
|
|
.limit(@limit - users.length)
|
|
|
|
.pluck(:id)
|
|
|
|
.each { |id| users << id }
|
2015-04-13 11:03:13 -04:00
|
|
|
end
|
|
|
|
|
2015-11-04 17:04:37 -05:00
|
|
|
return users.to_a if users.length >= @limit
|
2015-05-14 00:38:47 -04:00
|
|
|
|
|
|
|
# 3. global matches
|
2019-02-19 21:33:56 -05:00
|
|
|
if !@topic_id || @term.present?
|
|
|
|
filtered_by_term_users.order('last_seen_at DESC')
|
|
|
|
.limit(@limit - users.length)
|
|
|
|
.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")
|
2017-07-27 21:20:09 -04:00
|
|
|
.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
|