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
ff896803
Commit
ff896803
authored
Oct 26, 2018
by
J.D. Bean
Committed by
Nick Thomas
Oct 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Feature/add license to project API
parent
83e898a5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
119 additions
and
5 deletions
+119
-5
changelogs/unreleased/27231-add-license-data-to-projects-endpoint.yml
...nreleased/27231-add-license-data-to-projects-endpoint.yml
+5
-0
doc/api/projects.md
doc/api/projects.md
+49
-0
lib/api/entities.rb
lib/api/entities.rb
+20
-3
lib/api/projects.rb
lib/api/projects.rb
+7
-2
spec/requests/api/projects_spec.rb
spec/requests/api/projects_spec.rb
+38
-0
No files found.
changelogs/unreleased/27231-add-license-data-to-projects-endpoint.yml
0 → 100644
View file @
ff896803
---
title
:
Add license data to projects endpoint
merge_request
:
21606
author
:
J.D. Bean (@jdbean)
type
:
added
doc/api/projects.md
View file @
ff896803
...
...
@@ -451,6 +451,7 @@ GET /projects/:id
| --------- | ---- | -------- | ----------- |
|
`id`
| integer/string | yes | The ID or
[
URL-encoded path of the project
](
README.md#namespaced-path-encoding
)
|
|
`statistics`
| boolean | no | Include project statistics |
|
`license`
| boolean | no | Include project license data |
|
`with_custom_attributes`
| boolean | no | Include
[
custom attributes
](
custom_attributes.md
)
in response (admins only) |
```
json
...
...
@@ -508,6 +509,14 @@ GET /projects/:id
},
"archived"
:
false
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
"license_url"
:
"http://example.com/diaspora/diaspora-client/blob/master/LICENSE"
,
"license"
:
{
"key"
:
"lgpl-3.0"
,
"name"
:
"GNU Lesser General Public License v3.0"
,
"nickname"
:
"GNU LGPLv3"
,
"html_url"
:
"http://choosealicense.com/licenses/lgpl-3.0/"
,
"source_url"
:
"http://www.gnu.org/licenses/lgpl-3.0.txt"
},
"shared_runners_enabled"
:
true
,
"forks_count"
:
0
,
"star_count"
:
0
,
...
...
@@ -572,6 +581,14 @@ If the project is a fork, and you provide a valid token to authenticate, the
"http_url_to_repo"
:
"https://gitlab.com/gitlab-org/gitlab-ce.git"
,
"web_url"
:
"https://gitlab.com/gitlab-org/gitlab-ce"
,
"avatar_url"
:
"https://assets.gitlab-static.net/uploads/-/system/project/avatar/13083/logo-extra-whitespace.png"
,
"license_url"
:
"https://gitlab.com/gitlab-org/gitlab-ce/blob/master/LICENSE"
,
"license"
:
{
"key"
:
"mit"
,
"name"
:
"MIT License"
,
"nickname"
:
null
,
"html_url"
:
"http://choosealicense.com/licenses/mit/"
,
"source_url"
:
"https://opensource.org/licenses/MIT"
,
},
"star_count"
:
3812
,
"forks_count"
:
3561
,
"last_activity_at"
:
"2018-01-02T11:40:26.570Z"
,
...
...
@@ -905,6 +922,14 @@ Example response:
"import_status"
:
"none"
,
"archived"
:
true
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
"license_url"
:
"http://example.com/diaspora/diaspora-client/blob/master/LICENSE"
,
"license"
:
{
"key"
:
"lgpl-3.0"
,
"name"
:
"GNU Lesser General Public License v3.0"
,
"nickname"
:
"GNU LGPLv3"
,
"html_url"
:
"http://choosealicense.com/licenses/lgpl-3.0/"
,
"source_url"
:
"http://www.gnu.org/licenses/lgpl-3.0.txt"
},
"shared_runners_enabled"
:
true
,
"forks_count"
:
0
,
"star_count"
:
1
,
...
...
@@ -983,6 +1008,14 @@ Example response:
"import_status"
:
"none"
,
"archived"
:
true
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
"license_url"
:
"http://example.com/diaspora/diaspora-client/blob/master/LICENSE"
,
"license"
:
{
"key"
:
"lgpl-3.0"
,
"name"
:
"GNU Lesser General Public License v3.0"
,
"nickname"
:
"GNU LGPLv3"
,
"html_url"
:
"http://choosealicense.com/licenses/lgpl-3.0/"
,
"source_url"
:
"http://www.gnu.org/licenses/lgpl-3.0.txt"
},
"shared_runners_enabled"
:
true
,
"forks_count"
:
0
,
"star_count"
:
0
,
...
...
@@ -1101,6 +1134,14 @@ Example response:
},
"archived"
:
true
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
"license_url"
:
"http://example.com/diaspora/diaspora-client/blob/master/LICENSE"
,
"license"
:
{
"key"
:
"lgpl-3.0"
,
"name"
:
"GNU Lesser General Public License v3.0"
,
"nickname"
:
"GNU LGPLv3"
,
"html_url"
:
"http://choosealicense.com/licenses/lgpl-3.0/"
,
"source_url"
:
"http://www.gnu.org/licenses/lgpl-3.0.txt"
},
"shared_runners_enabled"
:
true
,
"forks_count"
:
0
,
"star_count"
:
0
,
...
...
@@ -1197,6 +1238,14 @@ Example response:
},
"archived"
:
false
,
"avatar_url"
:
"http://example.com/uploads/project/avatar/3/uploads/avatar.png"
,
"license_url"
:
"http://example.com/diaspora/diaspora-client/blob/master/LICENSE"
,
"license"
:
{
"key"
:
"lgpl-3.0"
,
"name"
:
"GNU Lesser General Public License v3.0"
,
"nickname"
:
"GNU LGPLv3"
,
"html_url"
:
"http://choosealicense.com/licenses/lgpl-3.0/"
,
"source_url"
:
"http://www.gnu.org/licenses/lgpl-3.0.txt"
},
"shared_runners_enabled"
:
true
,
"forks_count"
:
0
,
"star_count"
:
0
,
...
...
lib/api/entities.rb
View file @
ff896803
...
...
@@ -160,13 +160,27 @@ module API
# (fixed in https://github.com/rails/rails/pull/25976).
project
.
tags
.
map
(
&
:name
).
sort
end
expose
:ssh_url_to_repo
,
:http_url_to_repo
,
:web_url
,
:readme_url
expose
:license_url
,
if: :license
do
|
project
|
license
=
project
.
repository
.
license_blob
if
license
Gitlab
::
Routing
.
url_helpers
.
project_blob_url
(
project
,
File
.
join
(
project
.
default_branch
,
license
.
path
))
end
end
expose
:license
,
with:
'API::Entities::LicenseBasic'
,
if: :license
do
|
project
|
project
.
repository
.
license
end
expose
:avatar_url
do
|
project
,
options
|
project
.
avatar_url
(
only_path:
false
)
end
expose
:star_count
,
:forks_count
expose
:last_activity_at
expose
:namespace
,
using:
'API::Entities::NamespaceBasic'
expose
:custom_attributes
,
using:
'API::Entities::CustomAttribute'
,
if: :with_custom_attributes
...
...
@@ -1208,11 +1222,14 @@ module API
expose
:deployable
,
using:
Entities
::
Job
end
class
License
<
Grape
::
Entity
class
License
Basic
<
Grape
::
Entity
expose
:key
,
:name
,
:nickname
expose
:popular?
,
as: :popular
expose
:url
,
as: :html_url
expose
(
:source_url
)
{
|
license
|
license
.
meta
[
'source'
]
}
end
class
License
<
LicenseBasic
expose
:popular?
,
as: :popular
expose
(
:description
)
{
|
license
|
license
.
meta
[
'description'
]
}
expose
(
:conditions
)
{
|
license
|
license
.
meta
[
'conditions'
]
}
expose
(
:permissions
)
{
|
license
|
license
.
meta
[
'permissions'
]
}
...
...
lib/api/projects.rb
View file @
ff896803
...
...
@@ -114,7 +114,8 @@ module API
options
=
options
.
reverse_merge
(
with:
current_user
?
Entities
::
ProjectWithAccess
:
Entities
::
BasicProjectDetails
,
statistics:
params
[
:statistics
],
current_user:
current_user
current_user:
current_user
,
license:
false
)
options
[
:with
]
=
Entities
::
BasicProjectDetails
if
params
[
:simple
]
...
...
@@ -230,13 +231,17 @@ module API
params
do
use
:statistics_params
use
:with_custom_attributes
optional
:license
,
type:
Boolean
,
default:
false
,
desc:
'Include project license data'
end
get
":id"
do
options
=
{
with:
current_user
?
Entities
::
ProjectWithAccess
:
Entities
::
BasicProjectDetails
,
current_user:
current_user
,
user_can_admin_project:
can?
(
current_user
,
:admin_project
,
user_project
),
statistics:
params
[
:statistics
]
statistics:
params
[
:statistics
],
license:
params
[
:license
]
}
project
,
options
=
with_custom_attributes
(
user_project
,
options
)
...
...
spec/requests/api/projects_spec.rb
View file @
ff896803
...
...
@@ -200,6 +200,24 @@ describe API::Projects do
expect
(
json_response
.
first
).
to
include
'statistics'
end
it
"does not include license by default"
do
get
api
(
'/projects'
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
include_pagination_headers
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
first
).
not_to
include
(
'license'
,
'license_url'
)
end
it
"does not include license if requested"
do
get
api
(
'/projects'
,
user
),
license:
true
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
include_pagination_headers
expect
(
json_response
).
to
be_an
Array
expect
(
json_response
.
first
).
not_to
include
(
'license'
,
'license_url'
)
end
context
'when external issue tracker is enabled'
do
let!
(
:jira_service
)
{
create
(
:jira_service
,
project:
project
)
}
...
...
@@ -994,6 +1012,26 @@ describe API::Projects do
})
end
it
"does not include license fields by default"
do
get
api
(
"/projects/
#{
project
.
id
}
"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
not_to
include
(
'license'
,
'license_url'
)
end
it
'includes license fields when requested'
do
get
api
(
"/projects/
#{
project
.
id
}
"
,
user
),
license:
true
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
[
'license'
]).
to
eq
({
'key'
=>
project
.
repository
.
license
.
key
,
'name'
=>
project
.
repository
.
license
.
name
,
'nickname'
=>
project
.
repository
.
license
.
nickname
,
'html_url'
=>
project
.
repository
.
license
.
url
,
'source_url'
=>
project
.
repository
.
license
.
meta
[
'source'
]
})
end
it
"does not include statistics by default"
do
get
api
(
"/projects/
#{
project
.
id
}
"
,
user
)
...
...
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