Merge pull request #2916 from cpradio/pr-unconfirmed-in-search

FIX: Do not show unconfirmed users in search results
This commit is contained in:
Régis Hanol 2014-10-25 02:02:02 +02:00
commit 91a0f5d290
3 changed files with 17 additions and 1 deletions

View File

@ -263,7 +263,7 @@ class Search
def user_search
users = User.includes(:user_search_data)
.where("user_search_data.search_data @@ #{ts_query("simple")}")
.where("active = true AND user_search_data.search_data @@ #{ts_query("simple")}")
.order("CASE WHEN username_lower = '#{@original_term.downcase}' THEN 0 ELSE 1 END")
.order("last_posted_at DESC")
.limit(@limit)

View File

@ -87,6 +87,15 @@ describe Search do
end
end
context 'inactive users' do
let!(:inactive_user) { Fabricate(:inactive_user, active: false) }
let(:result) { Search.execute('bruce') }
it 'does not return a result' do
result.users.length.should == 0
end
end
context 'topics' do
let(:post) { Fabricate(:post) }
let(:topic) { post.topic}

View File

@ -32,6 +32,13 @@ Fabricator(:walter_white, from: :user) do
password 'letscook'
end
Fabricator(:inactive_user, from: :user) do
name 'Inactive User'
username 'inactive_user'
email 'inactive@idontexist.com'
active false
end
Fabricator(:moderator, from: :user) do
name { sequence(:name) {|i| "A#{i} Moderator"} }
username { sequence(:username) {|i| "moderator#{i}"} }