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
Jérome Perrin
gitlab-ce
Commits
a0aaf93f
Commit
a0aaf93f
authored
Oct 25, 2016
by
Yatish Mehta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add query param to filter users on 'external' & 'blocked' type on API
parent
c6d01098
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
1 deletion
+45
-1
changelogs/unreleased/23731-add-param-to-user-api.yml
changelogs/unreleased/23731-add-param-to-user-api.yml
+4
-0
doc/api/users.md
doc/api/users.md
+14
-0
lib/api/users.rb
lib/api/users.rb
+6
-1
spec/requests/api/users_spec.rb
spec/requests/api/users_spec.rb
+21
-0
No files found.
changelogs/unreleased/23731-add-param-to-user-api.yml
0 → 100644
View file @
a0aaf93f
---
title
:
Add query param to filter users by external & blocked type
merge_request
:
7109
author
:
Yatish Mehta
doc/api/users.md
View file @
a0aaf93f
...
...
@@ -33,6 +33,18 @@ GET /users
]
```
In addition, you can filter users based on states eg.
`blocked`
,
`active`
This works only to filter users who are
`blocked`
or
`active`
.
It does not support
`active=false`
or
`blocked=false`
.
```
GET /users?active=true
```
```
GET /users?blocked=true
```
### For admins
```
...
...
@@ -120,6 +132,8 @@ For example:
GET /users?username=jack_smith
```
You can search for users who are external with:
`/users?external=true`
## Single user
Get a single user.
...
...
lib/api/users.rb
View file @
a0aaf93f
...
...
@@ -10,6 +10,9 @@ module API
# GET /users
# GET /users?search=Admin
# GET /users?username=root
# GET /users?active=true
# GET /users?external=true
# GET /users?blocked=true
get
do
unless
can?
(
current_user
,
:read_users_list
,
nil
)
render_api_error!
(
"Not authorized."
,
403
)
...
...
@@ -19,8 +22,10 @@ module API
@users
=
User
.
where
(
username:
params
[
:username
])
else
@users
=
User
.
all
@users
=
@users
.
active
if
params
[
:active
].
present?
@users
=
@users
.
active
if
to_boolean
(
params
[
:active
])
@users
=
@users
.
search
(
params
[
:search
])
if
params
[
:search
].
present?
@users
=
@users
.
blocked
if
to_boolean
(
params
[
:blocked
])
@users
=
@users
.
external
if
to_boolean
(
params
[
:external
])
&&
current_user
.
is_admin?
@users
=
paginate
@users
end
...
...
spec/requests/api/users_spec.rb
View file @
a0aaf93f
...
...
@@ -48,6 +48,17 @@ describe API::API, api: true do
end
[
'username'
]).
to
eq
(
username
)
end
it
"returns an array of blocked users"
do
ldap_blocked_user
create
(
:user
,
state:
'blocked'
)
get
api
(
"/users?blocked=true"
,
user
)
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
).
to
all
(
include
(
'state'
=>
/(blocked|ldap_blocked)/
))
end
it
"returns one user"
do
get
api
(
"/users?username=
#{
omniauth_user
.
username
}
"
,
user
)
expect
(
response
).
to
have_http_status
(
200
)
...
...
@@ -69,6 +80,16 @@ describe API::API, api: true do
expect
(
json_response
.
first
.
keys
).
to
include
'last_sign_in_at'
expect
(
json_response
.
first
.
keys
).
to
include
'confirmed_at'
end
it
"returns an array of external users"
do
create
(
:user
,
external:
true
)
get
api
(
"/users?external=true"
,
admin
)
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
).
to
all
(
include
(
'external'
=>
true
))
end
end
end
...
...
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