Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
516b4c12
Commit
516b4c12
authored
Jun 19, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow Admin to filter users by 2FA status
parent
e13b523c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
97 additions
and
14 deletions
+97
-14
app/models/user.rb
app/models/user.rb
+13
-4
app/views/admin/users/index.html.haml
app/views/admin/users/index.html.haml
+8
-0
spec/features/admin/admin_users_spec.rb
spec/features/admin/admin_users_spec.rb
+40
-0
spec/models/user_spec.rb
spec/models/user_spec.rb
+36
-10
No files found.
app/models/user.rb
View file @
516b4c12
...
...
@@ -198,6 +198,8 @@ class User < ActiveRecord::Base
scope
:active
,
->
{
with_state
(
:active
)
}
scope
:not_in_project
,
->
(
project
)
{
project
.
users
.
present?
?
where
(
"id not in (:ids)"
,
ids:
project
.
users
.
map
(
&
:id
)
)
:
all
}
scope
:without_projects
,
->
{
where
(
'id NOT IN (SELECT DISTINCT(user_id) FROM members)'
)
}
scope
:with_two_factor
,
->
{
where
(
'otp_required_for_login IS true'
)
}
scope
:without_two_factor
,
->
{
where
(
'otp_required_for_login IS NOT true'
)
}
#
# Class methods
...
...
@@ -231,9 +233,16 @@ class User < ActiveRecord::Base
def
filter
(
filter_name
)
case
filter_name
when
"admins"
;
self
.
admins
when
"blocked"
;
self
.
blocked
when
"wop"
;
self
.
without_projects
when
'admins'
self
.
admins
when
'blocked'
self
.
blocked
when
'two_factor_disabled'
self
.
without_two_factor
when
'two_factor_enabled'
self
.
with_two_factor
when
'wop'
self
.
without_projects
else
self
.
active
end
...
...
app/views/admin/users/index.html.haml
View file @
516b4c12
...
...
@@ -13,6 +13,14 @@
=
link_to
admin_users_path
(
filter:
"admins"
)
do
Admins
%small
.pull-right
=
User
.
admins
.
count
%li
.filter-two-factor-enabled
{
class:
"#{'active' if params[:filter] == 'two_factor_enabled'}"
}
=
link_to
admin_users_path
(
filter:
'two_factor_enabled'
)
do
2FA Enabled
%small
.pull-right
=
User
.
with_two_factor
.
count
%li
.filter-two-factor-disabled
{
class:
"#{'active' if params[:filter] == 'two_factor_disabled'}"
}
=
link_to
admin_users_path
(
filter:
'two_factor_disabled'
)
do
2FA Disabled
%small
.pull-right
=
User
.
without_two_factor
.
count
%li
{
class:
"#{'active' if params[:filter] == "
blocked
"}"
}
=
link_to
admin_users_path
(
filter:
"blocked"
)
do
Blocked
...
...
spec/features/admin/admin_users_spec.rb
View file @
516b4c12
...
...
@@ -16,6 +16,46 @@ describe "Admin::Users", feature: true do
expect
(
page
).
to
have_content
(
@user
.
email
)
expect
(
page
).
to
have_content
(
@user
.
name
)
end
describe
'Two-factor Authentication filters'
do
it
'counts users who have enabled 2FA'
do
create
(
:user
,
two_factor_enabled:
true
)
visit
admin_users_path
page
.
within
(
'.filter-two-factor-enabled small'
)
do
expect
(
page
).
to
have_content
(
'1'
)
end
end
it
'filters by users who have enabled 2FA'
do
user
=
create
(
:user
,
two_factor_enabled:
true
)
visit
admin_users_path
click_link
'2FA Enabled'
expect
(
page
).
to
have_content
(
user
.
email
)
end
it
'counts users who have not enabled 2FA'
do
create
(
:user
,
two_factor_enabled:
false
)
visit
admin_users_path
page
.
within
(
'.filter-two-factor-disabled small'
)
do
expect
(
page
).
to
have_content
(
'2'
)
# Including admin
end
end
it
'filters by users who have not enabled 2FA'
do
user
=
create
(
:user
,
two_factor_enabled:
false
)
visit
admin_users_path
click_link
'2FA Disabled'
expect
(
page
).
to
have_content
(
user
.
email
)
end
end
end
describe
"GET /admin/users/new"
do
...
...
spec/models/user_spec.rb
View file @
516b4c12
...
...
@@ -308,18 +308,44 @@ describe User do
end
end
describe
'filter'
do
before
do
User
.
delete_all
@user
=
create
:user
@admin
=
create
:user
,
admin:
true
@blocked
=
create
:user
,
state: :blocked
describe
'.filter'
do
let
(
:user
)
{
double
}
it
'filters by active users by default'
do
expect
(
User
).
to
receive
(
:active
).
and_return
([
user
])
expect
(
User
.
filter
(
nil
)).
to
include
user
end
it
{
expect
(
User
.
filter
(
"admins"
)).
to
eq
([
@admin
])
}
it
{
expect
(
User
.
filter
(
"blocked"
)).
to
eq
([
@blocked
])
}
it
{
expect
(
User
.
filter
(
"wop"
)).
to
include
(
@user
,
@admin
,
@blocked
)
}
it
{
expect
(
User
.
filter
(
nil
)).
to
include
(
@user
,
@admin
)
}
it
'filters by admins'
do
expect
(
User
).
to
receive
(
:admins
).
and_return
([
user
])
expect
(
User
.
filter
(
'admins'
)).
to
include
user
end
it
'filters by blocked'
do
expect
(
User
).
to
receive
(
:blocked
).
and_return
([
user
])
expect
(
User
.
filter
(
'blocked'
)).
to
include
user
end
it
'filters by two_factor_disabled'
do
expect
(
User
).
to
receive
(
:without_two_factor
).
and_return
([
user
])
expect
(
User
.
filter
(
'two_factor_disabled'
)).
to
include
user
end
it
'filters by two_factor_enabled'
do
expect
(
User
).
to
receive
(
:with_two_factor
).
and_return
([
user
])
expect
(
User
.
filter
(
'two_factor_enabled'
)).
to
include
user
end
it
'filters by wop'
do
expect
(
User
).
to
receive
(
:without_projects
).
and_return
([
user
])
expect
(
User
.
filter
(
'wop'
)).
to
include
user
end
end
describe
:not_in_project
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment