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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
96644c1f
Commit
96644c1f
authored
Jul 11, 2015
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better handle unknown projects and groups for autocomplete
parent
d0b24013
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
86 additions
and
29 deletions
+86
-29
app/controllers/autocomplete_controller.rb
app/controllers/autocomplete_controller.rb
+23
-14
spec/controllers/autocomplete_controller_spec.rb
spec/controllers/autocomplete_controller_spec.rb
+63
-15
No files found.
app/controllers/autocomplete_controller.rb
View file @
96644c1f
...
@@ -2,25 +2,34 @@ class AutocompleteController < ApplicationController
...
@@ -2,25 +2,34 @@ class AutocompleteController < ApplicationController
skip_before_action
:authenticate_user!
,
only:
[
:users
]
skip_before_action
:authenticate_user!
,
only:
[
:users
]
def
users
def
users
@users
=
begin
if
params
[
:project_id
].
present?
@users
=
project
=
Project
.
find
(
params
[
:project_id
])
if
params
[
:project_id
].
present?
project
=
Project
.
find
(
params
[
:project_id
])
if
can?
(
current_user
,
:read_project
,
project
)
if
can?
(
current_user
,
:read_project
,
project
)
project
.
team
.
users
project
.
team
.
users
end
end
elsif
params
[
:group_id
]
elsif
params
[
:group_id
]
group
=
Group
.
find
(
params
[
:group_id
])
group
=
Group
.
find
(
params
[
:group_id
])
if
can?
(
current_user
,
:read_group
,
group
)
if
can?
(
current_user
,
:read_group
,
group
)
group
.
users
group
.
users
end
elsif
current_user
User
.
all
end
end
elsif
current_user
rescue
ActiveRecord
::
RecordNotFound
User
.
all
if
current_user
else
return
render
json:
{},
status:
404
User
.
none
end
end
end
if
@users
.
nil?
&&
current_user
.
nil?
authenticate_user!
end
@users
||=
User
.
none
@users
=
@users
.
search
(
params
[
:search
])
if
params
[
:search
].
present?
@users
=
@users
.
search
(
params
[
:search
])
if
params
[
:search
].
present?
@users
=
@users
.
active
@users
=
@users
.
active
@users
=
@users
.
page
(
params
[
:page
]).
per
(
PER_PAGE
)
@users
=
@users
.
page
(
params
[
:page
]).
per
(
PER_PAGE
)
...
...
spec/controllers/autocomplete_controller_spec.rb
View file @
96644c1f
...
@@ -9,15 +9,27 @@ describe AutocompleteController do
...
@@ -9,15 +9,27 @@ describe AutocompleteController do
before
do
before
do
sign_in
(
user
)
sign_in
(
user
)
project
.
team
<<
[
user
,
:master
]
project
.
team
<<
[
user
,
:master
]
get
(
:users
,
project_id:
project
.
id
)
end
end
let
(
:body
)
{
JSON
.
parse
(
response
.
body
)
}
let
(
:body
)
{
JSON
.
parse
(
response
.
body
)
}
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
describe
'GET #users with project ID'
do
it
{
expect
(
body
.
size
).
to
eq
1
}
before
do
it
{
expect
(
body
.
first
[
"username"
]).
to
eq
user
.
username
}
get
(
:users
,
project_id:
project
.
id
)
end
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
it
{
expect
(
body
.
size
).
to
eq
1
}
it
{
expect
(
body
.
first
[
"username"
]).
to
eq
user
.
username
}
end
describe
'GET #users with unknown project'
do
before
do
get
(
:users
,
project_id:
'unknown'
)
end
it
{
expect
(
response
.
status
).
to
eq
(
404
)
}
end
end
end
context
'group members'
do
context
'group members'
do
...
@@ -26,15 +38,27 @@ describe AutocompleteController do
...
@@ -26,15 +38,27 @@ describe AutocompleteController do
before
do
before
do
sign_in
(
user
)
sign_in
(
user
)
group
.
add_owner
(
user
)
group
.
add_owner
(
user
)
get
(
:users
,
group_id:
group
.
id
)
end
end
let
(
:body
)
{
JSON
.
parse
(
response
.
body
)
}
let
(
:body
)
{
JSON
.
parse
(
response
.
body
)
}
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
describe
'GET #users with group ID'
do
it
{
expect
(
body
.
size
).
to
eq
1
}
before
do
it
{
expect
(
body
.
first
[
"username"
]).
to
eq
user
.
username
}
get
(
:users
,
group_id:
group
.
id
)
end
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
it
{
expect
(
body
.
size
).
to
eq
1
}
it
{
expect
(
body
.
first
[
"username"
]).
to
eq
user
.
username
}
end
describe
'GET #users with unknown group ID'
do
before
do
get
(
:users
,
group_id:
'unknown'
)
end
it
{
expect
(
response
.
status
).
to
eq
(
404
)
}
end
end
end
context
'all users'
do
context
'all users'
do
...
@@ -50,26 +74,50 @@ describe AutocompleteController do
...
@@ -50,26 +74,50 @@ describe AutocompleteController do
end
end
context
'unauthenticated user'
do
context
'unauthenticated user'
do
let
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:p
ublic_p
roject
)
{
create
(
:project
,
:public
)
}
let
(
:body
)
{
JSON
.
parse
(
response
.
body
)
}
let
(
:body
)
{
JSON
.
parse
(
response
.
body
)
}
describe
'GET #users with public project'
do
describe
'GET #users with public project'
do
before
do
before
do
project
.
team
<<
[
user
,
:guest
]
p
ublic_p
roject
.
team
<<
[
user
,
:guest
]
get
(
:users
,
project_id:
project
.
id
)
get
(
:users
,
project_id:
p
ublic_p
roject
.
id
)
end
end
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
it
{
expect
(
body
.
size
).
to
eq
1
}
it
{
expect
(
body
.
size
).
to
eq
1
}
end
end
describe
'GET #users with project'
do
before
do
get
(
:users
,
project_id:
project
.
id
)
end
it
{
expect
(
response
.
status
).
to
eq
(
302
)
}
end
describe
'GET #users with unknown project'
do
before
do
get
(
:users
,
project_id:
'unknown'
)
end
it
{
expect
(
response
.
status
).
to
eq
(
302
)
}
end
describe
'GET #users with inaccessible group'
do
before
do
project
.
team
<<
[
user
,
:guest
]
get
(
:users
,
group_id:
user
.
namespace
.
id
)
end
it
{
expect
(
response
.
status
).
to
eq
(
302
)
}
end
describe
'GET #users with no project'
do
describe
'GET #users with no project'
do
before
do
before
do
get
(
:users
)
get
(
:users
)
end
end
it
{
expect
(
body
).
to
be_kind_of
(
Array
)
}
it
{
expect
(
response
.
status
).
to
eq
(
302
)
}
it
{
expect
(
body
.
size
).
to
eq
0
}
end
end
end
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