FIX: moderators should be able to search users by email

This commit is contained in:
Régis Hanol 2014-10-29 22:08:41 +01:00
parent 250bee6a91
commit 6e053942a4
6 changed files with 16 additions and 38 deletions

View File

@ -18,10 +18,7 @@ export default Ember.ArrayController.extend(Discourse.Presence, {
queryPending: Em.computed.equal('query', 'pending'),
queryHasApproval: Em.computed.or('queryNew', 'queryPending'),
searchHint: function() {
var searchHintKey = Discourse.User.currentProp("admin") ? "search_hint_admin" : "search_hint";
return I18n.t(searchHintKey);
}.property(),
searchHint: function() { return I18n.t("search_hint"); }.property(),
/**
Triggered when the selectAll property is changed

View File

@ -29,6 +29,7 @@
{{/if}}
<h2>{{title}}</h2>
<br/>
{{#if loading}}

View File

@ -25,7 +25,6 @@ class Admin::UsersController < Admin::AdminController
:revoke_api_key]
def index
params.merge!({ admin: current_user.admin? })
query = ::AdminUserIndexQuery.new(params)
render_serialized(query.find_users, AdminUserSerializer)
end

View File

@ -576,8 +576,7 @@ en:
created: 'Created'
created_lowercase: 'created'
trust_level: 'Trust Level'
search_hint: 'username or IP address'
search_hint_admin: 'username, email or IP address'
search_hint: 'username, email or IP address'
create_account:
title: "Create New Account"

View File

@ -36,19 +36,11 @@ class AdminUserIndexQuery
def filter_by_search
if params[:filter].present?
if params[:admin] == true
if params[:filter] =~ Resolv::IPv4::Regex || params[:filter] =~ Resolv::IPv6::Regex
@query.where('ip_address = :ip OR registration_ip_address = :ip', ip: params[:filter])
else
@query.where('username_lower ILIKE :filter OR email ILIKE :filter', filter: "%#{params[:filter]}%")
end
else
if params[:filter] =~ Resolv::IPv4::Regex || params[:filter] =~ Resolv::IPv6::Regex
@query.where('ip_address = :ip OR registration_ip_address = :ip', ip: params[:filter])
else
@query.where('username_lower ILIKE :filter', filter: "%#{params[:filter]}%")
end
end
end
end

View File

@ -96,34 +96,23 @@ describe AdminUserIndexQuery do
describe "filtering" do
context "by email fragment" do
before(:each) { Fabricate(:user, email: "test1@example.com") }
context "when authenticated as a non-admin user" do
it "doesn't match the email" do
query = ::AdminUserIndexQuery.new({ filter: "test1@example.com" })
expect(query.find_users.count()).to eq(0)
end
end
context "when authenticated as an admin user" do
it "matches the email" do
query = ::AdminUserIndexQuery.new({ filter: "est1", admin: true })
query = ::AdminUserIndexQuery.new({ filter: "est1" })
expect(query.find_users.count()).to eq(1)
end
it "matches the email using any case" do
query = ::AdminUserIndexQuery.new({ filter: "Test1", admin: true })
query = ::AdminUserIndexQuery.new({ filter: "Test1" })
expect(query.find_users.count()).to eq(1)
end
end
end
context "by username fragment" do
before(:each) { Fabricate(:user, username: "test_user_1") }
it "matches the username" do
@ -138,7 +127,8 @@ describe AdminUserIndexQuery do
end
context "by ip address fragment" do
before(:each) { Fabricate(:user, ip_address: "117.207.94.9") }
let!(:user) { Fabricate(:user, ip_address: "117.207.94.9") }
it "matches the ip address" do
query = ::AdminUserIndexQuery.new({ filter: "117.207.94.9" })