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
Boxiang Sun
gitlab-ce
Commits
26b6dfaf
Commit
26b6dfaf
authored
Nov 09, 2017
by
Winnie Hellmann
Committed by
Rémy Coutable
Nov 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add /groups/:id/subgroups endpoint to API
parent
f24a78f2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
230 additions
and
26 deletions
+230
-26
changelogs/unreleased/winh-subgroups-api.yml
changelogs/unreleased/winh-subgroups-api.yml
+5
-0
doc/api/groups.md
doc/api/groups.md
+45
-4
lib/api/groups.rb
lib/api/groups.rb
+44
-22
spec/requests/api/groups_spec.rb
spec/requests/api/groups_spec.rb
+136
-0
No files found.
changelogs/unreleased/winh-subgroups-api.yml
0 → 100644
View file @
26b6dfaf
---
title
:
Add /groups/:id/subgroups endpoint to API
merge_request
:
15142
author
:
marbemac
type
:
added
doc/api/groups.md
View file @
26b6dfaf
...
@@ -9,13 +9,13 @@ Parameters:
...
@@ -9,13 +9,13 @@ Parameters:
| Attribute | Type | Required | Description |
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| --------- | ---- | -------- | ----------- |
|
`skip_groups`
| array of integers | no | Skip the group IDs passe
s
|
|
`skip_groups`
| array of integers | no | Skip the group IDs passe
d
|
|
`all_available`
| boolean | no | Show all the groups you have access to |
|
`all_available`
| boolean | no | Show all the groups you have access to
(defaults to
`false`
for authenticated users)
|
|
`search`
| string | no | Return list of authorized groups matching the search criteria |
|
`search`
| string | no | Return
the
list of authorized groups matching the search criteria |
|
`order_by`
| string | no | Order groups by
`name`
or
`path`
. Default is
`name`
|
|
`order_by`
| string | no | Order groups by
`name`
or
`path`
. Default is
`name`
|
|
`sort`
| string | no | Order groups in
`asc`
or
`desc`
order. Default is
`asc`
|
|
`sort`
| string | no | Order groups in
`asc`
or
`desc`
order. Default is
`asc`
|
|
`statistics`
| boolean | no | Include group statistics (admins only) |
|
`statistics`
| boolean | no | Include group statistics (admins only) |
|
`owned`
| boolean | no | Limit
by
groups owned by the current user |
|
`owned`
| boolean | no | Limit
to
groups owned by the current user |
```
```
GET /groups
GET /groups
...
@@ -80,6 +80,47 @@ You can filter by [custom attributes](custom_attributes.md) with:
...
@@ -80,6 +80,47 @@ You can filter by [custom attributes](custom_attributes.md) with:
GET /groups?custom_attributes[key]=value&custom_attributes[other_key]=other_value
GET /groups?custom_attributes[key]=value&custom_attributes[other_key]=other_value
```
```
## List a groups's subgroups
Get a list of visible direct subgroups in this group.
When accessed without authentication, only public groups are returned.
Parameters:
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
|
`id`
| integer/string | yes | The ID or
[
URL-encoded path of the group
](
README.md#namespaced-path-encoding
)
of the parent group |
|
`skip_groups`
| array of integers | no | Skip the group IDs passed |
|
`all_available`
| boolean | no | Show all the groups you have access to (defaults to
`false`
for authenticated users) |
|
`search`
| string | no | Return the list of authorized groups matching the search criteria |
|
`order_by`
| string | no | Order groups by
`name`
or
`path`
. Default is
`name`
|
|
`sort`
| string | no | Order groups in
`asc`
or
`desc`
order. Default is
`asc`
|
|
`statistics`
| boolean | no | Include group statistics (admins only) |
|
`owned`
| boolean | no | Limit to groups owned by the current user |
```
GET /groups/:id/subgroups
```
```
json
[
{
"id"
:
1
,
"name"
:
"Foobar Group"
,
"path"
:
"foo-bar"
,
"description"
:
"An interesting group"
,
"visibility"
:
"public"
,
"lfs_enabled"
:
true
,
"avatar_url"
:
"http://gitlab.example.com/uploads/group/avatar/1/foo.jpg"
,
"web_url"
:
"http://gitlab.example.com/groups/foo-bar"
,
"request_access_enabled"
:
false
,
"full_name"
:
"Foobar Group"
,
"full_path"
:
"foo-bar"
,
"parent_id"
:
123
}
]
```
## List a group's projects
## List a group's projects
Get a list of projects in this group. When accessed without authentication, only
Get a list of projects in this group. When accessed without authentication, only
...
...
lib/api/groups.rb
View file @
26b6dfaf
...
@@ -25,24 +25,7 @@ module API
...
@@ -25,24 +25,7 @@ module API
optional
:statistics
,
type:
Boolean
,
default:
false
,
desc:
'Include project statistics'
optional
:statistics
,
type:
Boolean
,
default:
false
,
desc:
'Include project statistics'
end
end
def
present_groups
(
groups
,
options
=
{})
params
:group_list_params
do
options
=
options
.
reverse_merge
(
with:
Entities
::
Group
,
current_user:
current_user
)
groups
=
groups
.
with_statistics
if
options
[
:statistics
]
present
paginate
(
groups
),
options
end
end
resource
:groups
do
include
CustomAttributesEndpoints
desc
'Get a groups list'
do
success
Entities
::
Group
end
params
do
use
:statistics_params
use
:statistics_params
optional
:skip_groups
,
type:
Array
[
Integer
],
desc:
'Array of group ids to exclude from list'
optional
:skip_groups
,
type:
Array
[
Integer
],
desc:
'Array of group ids to exclude from list'
optional
:all_available
,
type:
Boolean
,
desc:
'Show all group that you have access to'
optional
:all_available
,
type:
Boolean
,
desc:
'Show all group that you have access to'
...
@@ -52,19 +35,47 @@ module API
...
@@ -52,19 +35,47 @@ module API
optional
:sort
,
type:
String
,
values:
%w[asc desc]
,
default:
'asc'
,
desc:
'Sort by asc (ascending) or desc (descending)'
optional
:sort
,
type:
String
,
values:
%w[asc desc]
,
default:
'asc'
,
desc:
'Sort by asc (ascending) or desc (descending)'
use
:pagination
use
:pagination
end
end
get
do
def
find_groups
(
params
)
find_params
=
{
find_params
=
{
all_available:
params
[
:all_available
],
all_available:
params
[
:all_available
],
owned:
params
[
:owned
],
custom_attributes:
params
[
:custom_attributes
],
custom_attributes:
params
[
:custom_attributes
]
owned:
params
[
:owned
]
}
}
find_params
[
:parent
]
=
find_group!
(
params
[
:id
])
if
params
[
:id
]
groups
=
GroupsFinder
.
new
(
current_user
,
find_params
).
execute
groups
=
GroupsFinder
.
new
(
current_user
,
find_params
).
execute
groups
=
groups
.
search
(
params
[
:search
])
if
params
[
:search
].
present?
groups
=
groups
.
search
(
params
[
:search
])
if
params
[
:search
].
present?
groups
=
groups
.
where
.
not
(
id:
params
[
:skip_groups
])
if
params
[
:skip_groups
].
present?
groups
=
groups
.
where
.
not
(
id:
params
[
:skip_groups
])
if
params
[
:skip_groups
].
present?
groups
=
groups
.
reorder
(
params
[
:order_by
]
=>
params
[
:sort
])
groups
=
groups
.
reorder
(
params
[
:order_by
]
=>
params
[
:sort
])
present_groups
groups
,
statistics:
params
[
:statistics
]
&&
current_user
.
admin?
groups
end
def
present_groups
(
params
,
groups
)
options
=
{
with:
Entities
::
Group
,
current_user:
current_user
,
statistics:
params
[
:statistics
]
&&
current_user
.
admin?
}
groups
=
groups
.
with_statistics
if
options
[
:statistics
]
present
paginate
(
groups
),
options
end
end
resource
:groups
do
include
CustomAttributesEndpoints
desc
'Get a groups list'
do
success
Entities
::
Group
end
params
do
use
:group_list_params
end
get
do
groups
=
find_groups
(
params
)
present_groups
params
,
groups
end
end
desc
'Create a group. Available only for users who can create groups.'
do
desc
'Create a group. Available only for users who can create groups.'
do
...
@@ -166,6 +177,17 @@ module API
...
@@ -166,6 +177,17 @@ module API
present
paginate
(
projects
),
with:
entity
,
current_user:
current_user
present
paginate
(
projects
),
with:
entity
,
current_user:
current_user
end
end
desc
'Get a list of subgroups in this group.'
do
success
Entities
::
Group
end
params
do
use
:group_list_params
end
get
":id/subgroups"
do
groups
=
find_groups
(
params
)
present_groups
params
,
groups
end
desc
'Transfer a project to the group namespace. Available only for admin.'
do
desc
'Transfer a project to the group namespace. Available only for admin.'
do
success
Entities
::
GroupDetail
success
Entities
::
GroupDetail
end
end
...
...
spec/requests/api/groups_spec.rb
View file @
26b6dfaf
...
@@ -427,6 +427,142 @@ describe API::Groups do
...
@@ -427,6 +427,142 @@ describe API::Groups do
end
end
end
end
describe
'GET /groups/:id/subgroups'
,
:nested_groups
do
let!
(
:subgroup1
)
{
create
(
:group
,
parent:
group1
)
}
let!
(
:subgroup2
)
{
create
(
:group
,
:private
,
parent:
group1
)
}
let!
(
:subgroup3
)
{
create
(
:group
,
:private
,
parent:
group2
)
}
context
'when unauthenticated'
do
it
'returns only public subgroups'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
include_pagination_headers
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
1
)
expect
(
json_response
.
first
[
'id'
]).
to
eq
(
subgroup1
.
id
)
expect
(
json_response
.
first
[
'parent_id'
]).
to
eq
(
group1
.
id
)
end
it
'returns 404 for a private group'
do
get
api
(
"/groups/
#{
group2
.
id
}
/subgroups"
)
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
end
context
'when authenticated as user'
do
context
'when user is not member of a public group'
do
it
'returns no subgroups for the public group'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
user2
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
0
)
end
context
'when using all_available in request'
do
it
'returns public subgroups'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
user2
),
all_available:
true
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
1
)
expect
(
json_response
[
0
][
'id'
]).
to
eq
(
subgroup1
.
id
)
expect
(
json_response
[
0
][
'parent_id'
]).
to
eq
(
group1
.
id
)
end
end
end
context
'when user is not member of a private group'
do
it
'returns 404 for the private group'
do
get
api
(
"/groups/
#{
group2
.
id
}
/subgroups"
,
user1
)
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
end
context
'when user is member of public group'
do
before
do
group1
.
add_guest
(
user2
)
end
it
'returns private subgroups'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
user2
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
include_pagination_headers
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
2
)
private_subgroups
=
json_response
.
select
{
|
group
|
group
[
'visibility'
]
==
'private'
}
expect
(
private_subgroups
.
length
).
to
eq
(
1
)
expect
(
private_subgroups
.
first
[
'id'
]).
to
eq
(
subgroup2
.
id
)
expect
(
private_subgroups
.
first
[
'parent_id'
]).
to
eq
(
group1
.
id
)
end
context
'when using statistics in request'
do
it
'does not include statistics'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
user2
),
statistics:
true
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
first
).
not_to
include
'statistics'
end
end
end
context
'when user is member of private group'
do
before
do
group2
.
add_guest
(
user1
)
end
it
'returns subgroups'
do
get
api
(
"/groups/
#{
group2
.
id
}
/subgroups"
,
user1
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
1
)
expect
(
json_response
.
first
[
'id'
]).
to
eq
(
subgroup3
.
id
)
expect
(
json_response
.
first
[
'parent_id'
]).
to
eq
(
group2
.
id
)
end
end
end
context
'when authenticated as admin'
do
it
'returns private subgroups of a public group'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
admin
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
2
)
end
it
'returns subgroups of a private group'
do
get
api
(
"/groups/
#{
group2
.
id
}
/subgroups"
,
admin
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
length
).
to
eq
(
1
)
end
it
'does not include statistics by default'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
admin
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
first
).
not_to
include
(
'statistics'
)
end
it
'includes statistics if requested'
do
get
api
(
"/groups/
#{
group1
.
id
}
/subgroups"
,
admin
),
statistics:
true
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
first
).
to
include
(
'statistics'
)
end
end
end
describe
"POST /groups"
do
describe
"POST /groups"
do
context
"when authenticated as user without group permissions"
do
context
"when authenticated as user without group permissions"
do
it
"does not create group"
do
it
"does not create group"
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