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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
538741f2
Commit
538741f2
authored
Mar 22, 2019
by
Thiago Presa
Committed by
Sean McGivern
Mar 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add highest_role method to User
parent
e14b4b05
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
120 additions
and
2 deletions
+120
-2
app/models/user.rb
app/models/user.rb
+4
-0
app/views/admin/users/show.html.haml
app/views/admin/users/show.html.haml
+5
-0
changelogs/unreleased/tpresa-add-highest-role-to-user.yml
changelogs/unreleased/tpresa-add-highest-role-to-user.yml
+5
-0
doc/api/users.md
doc/api/users.md
+2
-1
lib/api/entities.rb
lib/api/entities.rb
+4
-0
lib/api/users.rb
lib/api/users.rb
+1
-1
lib/gitlab/access.rb
lib/gitlab/access.rb
+14
-0
locale/gitlab.pot
locale/gitlab.pot
+3
-0
spec/models/user_spec.rb
spec/models/user_spec.rb
+62
-0
spec/requests/api/users_spec.rb
spec/requests/api/users_spec.rb
+20
-0
No files found.
app/models/user.rb
View file @
538741f2
...
...
@@ -917,6 +917,10 @@ class User < ApplicationRecord
DeployKey
.
unscoped
.
in_projects
(
authorized_projects
.
pluck
(
:id
)).
distinct
(
:id
)
end
def
highest_role
members
.
maximum
(
:access_level
)
||
Gitlab
::
Access
::
NO_ACCESS
end
def
accessible_deploy_keys
@accessible_deploy_keys
||=
begin
key_ids
=
project_deploy_keys
.
pluck
(
:id
)
...
...
app/views/admin/users/show.html.haml
View file @
538741f2
...
...
@@ -117,6 +117,11 @@
%strong
=
@user
.
sign_in_count
%li
%span
.light
=
_
(
"Highest role:"
)
%strong
=
Gitlab
::
Access
.
human_access_with_none
(
@user
.
highest_role
)
-
if
@user
.
ldap_user?
%li
%span
.light
LDAP uid:
...
...
changelogs/unreleased/tpresa-add-highest-role-to-user.yml
0 → 100644
View file @
538741f2
---
title
:
Adding highest role property to admin's user details page
merge_request
:
author
:
type
:
added
doc/api/users.md
View file @
538741f2
...
...
@@ -140,7 +140,8 @@ GET /users
"can_create_project"
:
true
,
"two_factor_enabled"
:
true
,
"external"
:
false
,
"private_profile"
:
false
"private_profile"
:
false
,
"highest_role"
:
10
}
]
```
...
...
lib/api/entities.rb
View file @
538741f2
...
...
@@ -86,6 +86,10 @@ module API
expose
:admin?
,
as: :is_admin
end
class
UserDetailsWithAdmin
<
UserWithAdmin
expose
:highest_role
end
class
UserStatus
<
Grape
::
Entity
expose
:emoji
expose
:message
...
...
lib/api/users.rb
View file @
538741f2
...
...
@@ -124,7 +124,7 @@ module API
user
=
User
.
find_by
(
id:
params
[
:id
])
not_found!
(
'User'
)
unless
user
&&
can?
(
current_user
,
:read_user
,
user
)
opts
=
{
with:
current_user
&
.
admin?
?
Entities
::
UserWithAdmin
:
Entities
::
User
,
current_user:
current_user
}
opts
=
{
with:
current_user
&
.
admin?
?
Entities
::
User
Details
WithAdmin
:
Entities
::
User
,
current_user:
current_user
}
user
,
opts
=
with_custom_attributes
(
user
,
opts
)
present
user
,
opts
...
...
lib/gitlab/access.rb
View file @
538741f2
...
...
@@ -46,6 +46,12 @@ module Gitlab
)
end
def
options_with_none
options_with_owner
.
merge
(
"None"
=>
NO_ACCESS
)
end
def
sym_options
{
guest:
GUEST
,
...
...
@@ -75,12 +81,20 @@ module Gitlab
def
human_access
(
access
)
options_with_owner
.
key
(
access
)
end
def
human_access_with_none
(
access
)
options_with_none
.
key
(
access
)
end
end
def
human_access
Gitlab
::
Access
.
human_access
(
access_field
)
end
def
human_access_with_none
Gitlab
::
Access
.
human_access_with_none
(
access_field
)
end
def
owner?
access_field
==
OWNER
end
...
...
locale/gitlab.pot
View file @
538741f2
...
...
@@ -4121,6 +4121,9 @@ msgstr[1] ""
msgid "Hide values"
msgstr ""
msgid "Highest role:"
msgstr ""
msgid "History"
msgstr ""
...
...
spec/models/user_spec.rb
View file @
538741f2
...
...
@@ -660,6 +660,68 @@ describe User do
end
end
describe
'#highest_role'
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:group
)
{
create
(
:group
)
}
it
'returns NO_ACCESS if none has been set'
do
expect
(
user
.
highest_role
).
to
eq
(
Gitlab
::
Access
::
NO_ACCESS
)
end
it
'returns MAINTAINER if user is maintainer of a project'
do
create
(
:project
,
group:
group
)
do
|
project
|
project
.
add_maintainer
(
user
)
end
expect
(
user
.
highest_role
).
to
eq
(
Gitlab
::
Access
::
MAINTAINER
)
end
it
'returns the highest role if user is member of multiple projects'
do
create
(
:project
,
group:
group
)
do
|
project
|
project
.
add_maintainer
(
user
)
end
create
(
:project
,
group:
group
)
do
|
project
|
project
.
add_developer
(
user
)
end
expect
(
user
.
highest_role
).
to
eq
(
Gitlab
::
Access
::
MAINTAINER
)
end
it
'returns MAINTAINER if user is maintainer of a group'
do
create
(
:group
)
do
|
group
|
group
.
add_user
(
user
,
GroupMember
::
MAINTAINER
)
end
expect
(
user
.
highest_role
).
to
eq
(
Gitlab
::
Access
::
MAINTAINER
)
end
it
'returns the highest role if user is member of multiple groups'
do
create
(
:group
)
do
|
group
|
group
.
add_user
(
user
,
GroupMember
::
MAINTAINER
)
end
create
(
:group
)
do
|
group
|
group
.
add_user
(
user
,
GroupMember
::
DEVELOPER
)
end
expect
(
user
.
highest_role
).
to
eq
(
Gitlab
::
Access
::
MAINTAINER
)
end
it
'returns the highest role if user is member of multiple groups and projects'
do
create
(
:group
)
do
|
group
|
group
.
add_user
(
user
,
GroupMember
::
DEVELOPER
)
end
create
(
:project
,
group:
group
)
do
|
project
|
project
.
add_maintainer
(
user
)
end
expect
(
user
.
highest_role
).
to
eq
(
Gitlab
::
Access
::
MAINTAINER
)
end
end
describe
'#update_tracked_fields!'
,
:clean_gitlab_redis_shared_state
do
let
(
:request
)
{
OpenStruct
.
new
(
remote_ip:
"127.0.0.1"
)
}
let
(
:user
)
{
create
(
:user
)
}
...
...
spec/requests/api/users_spec.rb
View file @
538741f2
...
...
@@ -68,6 +68,13 @@ describe API::Users do
expect
(
json_response
.
size
).
to
eq
(
0
)
end
it
"does not return the highest role"
do
get
api
(
"/users"
),
params:
{
username:
user
.
username
}
expect
(
response
).
to
match_response_schema
(
'public_api/v4/user/basics'
)
expect
(
json_response
.
first
.
keys
).
not_to
include
'highest_role'
end
context
"when public level is restricted"
do
before
do
stub_application_setting
(
restricted_visibility_levels:
[
Gitlab
::
VisibilityLevel
::
PUBLIC
])
...
...
@@ -286,6 +293,13 @@ describe API::Users do
expect
(
json_response
.
keys
).
not_to
include
'is_admin'
end
it
"does not return the user's `highest_role`"
do
get
api
(
"/users/
#{
user
.
id
}
"
,
user
)
expect
(
response
).
to
match_response_schema
(
'public_api/v4/user/basic'
)
expect
(
json_response
.
keys
).
not_to
include
'highest_role'
end
context
'when authenticated as admin'
do
it
'includes the `is_admin` field'
do
get
api
(
"/users/
#{
user
.
id
}
"
,
admin
)
...
...
@@ -300,6 +314,12 @@ describe API::Users do
expect
(
response
).
to
match_response_schema
(
'public_api/v4/user/admin'
)
expect
(
json_response
.
keys
).
to
include
'created_at'
end
it
'includes the `highest_role` field'
do
get
api
(
"/users/
#{
user
.
id
}
"
,
admin
)
expect
(
response
).
to
match_response_schema
(
'public_api/v4/user/admin'
)
expect
(
json_response
[
'highest_role'
]).
to
be
(
0
)
end
end
context
'for an anonymous user'
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