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
32c69651
Commit
32c69651
authored
May 07, 2021
by
Steve Abrams
Committed by
Etienne Baqué
May 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete package file API
parent
8ee3d85f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
135 additions
and
4 deletions
+135
-4
changelogs/unreleased/32107-delete-package-file-api.yml
changelogs/unreleased/32107-delete-package-file-api.yml
+5
-0
doc/api/packages.md
doc/api/packages.md
+30
-0
lib/api/package_files.rb
lib/api/package_files.rb
+23
-0
spec/requests/api/package_files_spec.rb
spec/requests/api/package_files_spec.rb
+77
-4
No files found.
changelogs/unreleased/32107-delete-package-file-api.yml
0 → 100644
View file @
32c69651
---
title
:
Add API endpoint for deleting a package file
merge_request
:
60970
author
:
type
:
added
doc/api/packages.md
View file @
32c69651
...
...
@@ -352,3 +352,33 @@ Can return the following status codes:
-
`204 No Content`
, if the package was deleted successfully.
-
`404 Not Found`
, if the package was not found.
## Delete a package file
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/32107) in GitLab 13.12.
WARNING:
Deleting a package file may corrupt your package making it unusable or unpullable from your package
manager client. When deleting a package file, be sure that you understand what you're doing.
Delete a package file:
```
plaintext
DELETE /projects/:id/packages/:package_id/package_files/:package_file_id
```
| Attribute | Type | Required | Description |
| ----------------- | -------------- | -------- | ----------- |
|
`id`
| integer/string | yes | ID or
[
URL-encoded path of the project
](
README.md#namespaced-path-encoding
)
. |
|
`package_id`
| integer | yes | ID of a package. |
|
`package_file_id`
| integer | yes | ID of a package file. |
```
shell
curl
--request
DELETE
--header
"PRIVATE-TOKEN: <your_access_token>"
"https://gitlab.example.com/api/v4/projects/:id/packages/:package_id/package_files/:package_file_id"
```
Can return the following status codes:
-
`204 No Content`
: The package was deleted successfully.
-
`403 Forbidden`
: The user does not have permission to delete the file.
-
`404 Not Found`
: The package or package file was not found.
lib/api/package_files.rb
View file @
32c69651
...
...
@@ -30,6 +30,29 @@ module API
present
paginate
(
package
.
package_files
),
with:
::
API
::
Entities
::
PackageFile
end
desc
'Remove a package file'
do
detail
'This feature was introduced in GitLab 13.12'
end
params
do
requires
:package_file_id
,
type:
Integer
,
desc:
'The ID of a package file'
end
delete
':id/packages/:package_id/package_files/:package_file_id'
do
authorize_destroy_package!
(
user_project
)
# We want to make sure the file belongs to the declared package
# so we look up the package before looking up the file.
package
=
::
Packages
::
PackageFinder
.
new
(
user_project
,
params
[
:package_id
]).
execute
not_found!
unless
package
package_file
=
package
.
package_files
.
find_by_id
(
params
[
:package_file_id
])
not_found!
unless
package_file
destroy_conditionally!
(
package_file
)
end
end
end
end
spec/requests/api/package_files_spec.rb
View file @
32c69651
...
...
@@ -7,13 +7,13 @@ RSpec.describe API::PackageFiles do
let
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:package
)
{
create
(
:maven_package
,
project:
project
)
}
before
do
project
.
add_developer
(
user
)
end
describe
'GET /projects/:id/packages/:package_id/package_files'
do
let
(
:url
)
{
"/projects/
#{
project
.
id
}
/packages/
#{
package
.
id
}
/package_files"
}
before
do
project
.
add_developer
(
user
)
end
context
'without the need for a license'
do
context
'project is public'
do
it
'returns 200'
do
...
...
@@ -78,4 +78,77 @@ RSpec.describe API::PackageFiles do
end
end
end
describe
'DELETE /projects/:id/packages/:package_id/package_files/:package_file_id'
do
let
(
:package_file_id
)
{
package
.
package_files
.
first
.
id
}
let
(
:url
)
{
"/projects/
#{
project
.
id
}
/packages/
#{
package
.
id
}
/package_files/
#{
package_file_id
}
"
}
subject
(
:api_request
)
{
delete
api
(
url
,
user
)
}
context
'project is public'
do
context
'without user'
do
let
(
:user
)
{
nil
}
it
'returns 403 for non authenticated user'
,
:aggregate_failures
do
expect
{
api_request
}.
not_to
change
{
package
.
package_files
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:forbidden
)
end
end
it
'returns 403 for a user without access to the project'
,
:aggregate_failures
do
expect
{
api_request
}.
not_to
change
{
package
.
package_files
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:forbidden
)
end
end
context
'project is private'
do
let_it_be_with_refind
(
:project
)
{
create
(
:project
,
:private
)
}
it
'returns 404 for a user without access to the project'
,
:aggregate_failures
do
expect
{
api_request
}.
not_to
change
{
package
.
package_files
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
end
it
'returns 403 for a user without enough permissions'
,
:aggregate_failures
do
project
.
add_developer
(
user
)
expect
{
api_request
}.
not_to
change
{
package
.
package_files
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:forbidden
)
end
it
'returns 204'
,
:aggregate_failures
do
project
.
add_maintainer
(
user
)
expect
{
api_request
}.
to
change
{
package
.
package_files
.
count
}.
by
(
-
1
)
expect
(
response
).
to
have_gitlab_http_status
(
:no_content
)
end
context
'without user'
do
let
(
:user
)
{
nil
}
it
'returns 404 for non authenticated user'
,
:aggregate_failures
do
expect
{
api_request
}.
not_to
change
{
package
.
package_files
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
end
end
context
'invalid file'
do
let
(
:url
)
{
"/projects/
#{
project
.
id
}
/packages/
#{
package
.
id
}
/package_files/999999"
}
it
'returns 404 when the package file does not exist'
,
:aggregate_failures
do
project
.
add_maintainer
(
user
)
expect
{
api_request
}.
not_to
change
{
package
.
package_files
.
count
}
expect
(
response
).
to
have_gitlab_http_status
(
:not_found
)
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