2016-12-31 11:51:22 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-31 11:51:22 -05:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2019-12-20 12:07:12 -05:00
|
|
|
"net/http"
|
|
|
|
|
2016-12-31 11:51:22 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
2021-11-28 06:58:28 -05:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2022-08-24 22:31:57 -04:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 14:57:58 -05:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2016-12-31 11:51:22 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-05-11 06:21:34 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-01-24 14:00:29 -05:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2022-12-28 21:57:15 -05:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2022-06-03 02:13:58 -04:00
|
|
|
release_service "code.gitea.io/gitea/services/release"
|
2016-12-31 11:51:22 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetRelease get a single release of a repository
|
|
|
|
func GetRelease(ctx *context.APIContext) {
|
2018-03-05 20:22:16 -05:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases/{id} repository repoGetRelease
|
2017-11-13 02:02:25 -05:00
|
|
|
// ---
|
|
|
|
// summary: Get a release
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2018-03-05 20:22:16 -05:00
|
|
|
// - name: id
|
2017-11-13 02:02:25 -05:00
|
|
|
// in: path
|
|
|
|
// description: id of the release to get
|
|
|
|
// type: integer
|
2018-10-20 23:40:42 -04:00
|
|
|
// format: int64
|
2017-11-13 02:02:25 -05:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Release"
|
2020-09-24 18:36:56 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2016-12-31 11:51:22 -05:00
|
|
|
id := ctx.ParamsInt64(":id")
|
2023-11-25 12:21:21 -05:00
|
|
|
release, err := repo_model.GetReleaseForRepoByID(ctx, ctx.Repo.Repository.ID, id)
|
2022-08-24 22:31:57 -04:00
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
2023-11-25 12:21:21 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseForRepoByID", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-11-25 12:21:21 -05:00
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) || release.IsTag {
|
2019-03-18 22:29:43 -04:00
|
|
|
ctx.NotFound()
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2020-09-24 18:36:56 -04:00
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-07-10 05:31:19 -04:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToAPIRelease(ctx, ctx.Repo.Repository, release))
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|
|
|
|
|
2023-01-26 11:33:47 -05:00
|
|
|
// GetLatestRelease gets the most recent non-prerelease, non-draft release of a repository, sorted by created_at
|
|
|
|
func GetLatestRelease(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases/latest repository repoGetLatestRelease
|
|
|
|
// ---
|
|
|
|
// summary: Gets the most recent non-prerelease, non-draft release of a repository, sorted by created_at
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Release"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2023-09-25 09:17:37 -04:00
|
|
|
release, err := repo_model.GetLatestReleaseByRepoID(ctx, ctx.Repo.Repository.ID)
|
2023-01-26 11:33:47 -05:00
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetLatestRelease", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) ||
|
|
|
|
release.IsTag || release.RepoID != ctx.Repo.Repository.ID {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
|
|
|
return
|
|
|
|
}
|
2023-07-10 05:31:19 -04:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToAPIRelease(ctx, ctx.Repo.Repository, release))
|
2023-01-26 11:33:47 -05:00
|
|
|
}
|
|
|
|
|
2016-12-31 11:51:22 -05:00
|
|
|
// ListReleases list a repository's releases
|
|
|
|
func ListReleases(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases repository repoListReleases
|
|
|
|
// ---
|
|
|
|
// summary: List a repo's releases
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2021-06-17 04:58:10 -04:00
|
|
|
// - name: draft
|
|
|
|
// in: query
|
|
|
|
// description: filter (exclude / include) drafts, if you dont have repo write access none will show
|
|
|
|
// type: boolean
|
|
|
|
// - name: pre-release
|
|
|
|
// in: query
|
|
|
|
// description: filter (exclude / include) pre-releases
|
|
|
|
// type: boolean
|
2019-01-25 02:10:50 -05:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
2020-01-24 14:00:29 -05:00
|
|
|
// description: page number of results to return (1-based)
|
2019-01-25 02:10:50 -05:00
|
|
|
// type: integer
|
2020-01-24 14:00:29 -05:00
|
|
|
// - name: limit
|
2019-01-25 02:10:50 -05:00
|
|
|
// in: query
|
2020-06-09 00:57:38 -04:00
|
|
|
// description: page size of results
|
2019-01-25 02:10:50 -05:00
|
|
|
// type: integer
|
2017-11-13 02:02:25 -05:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/ReleaseList"
|
2023-09-12 22:37:54 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2020-01-24 14:00:29 -05:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2022-08-24 22:31:57 -04:00
|
|
|
opts := repo_model.FindReleasesOptions{
|
2020-01-24 14:00:29 -05:00
|
|
|
ListOptions: listOptions,
|
2021-11-28 06:58:28 -05:00
|
|
|
IncludeDrafts: ctx.Repo.AccessMode >= perm.AccessModeWrite || ctx.Repo.UnitAccessMode(unit.TypeReleases) >= perm.AccessModeWrite,
|
2017-09-20 01:26:49 -04:00
|
|
|
IncludeTags: false,
|
2021-07-28 21:42:15 -04:00
|
|
|
IsDraft: ctx.FormOptionalBool("draft"),
|
|
|
|
IsPreRelease: ctx.FormOptionalBool("pre-release"),
|
2021-06-17 04:58:10 -04:00
|
|
|
}
|
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
releases, err := repo_model.GetReleasesByRepoID(ctx, ctx.Repo.Repository.ID, opts)
|
2016-12-31 11:51:22 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleasesByRepoID", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2017-06-29 11:11:38 -04:00
|
|
|
rels := make([]*api.Release, len(releases))
|
2016-12-31 11:51:22 -05:00
|
|
|
for i, release := range releases {
|
2022-11-19 03:12:33 -05:00
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-07-10 05:31:19 -04:00
|
|
|
rels[i] = convert.ToAPIRelease(ctx, ctx.Repo.Repository, release)
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|
2021-06-17 04:58:10 -04:00
|
|
|
|
2023-09-25 09:17:37 -04:00
|
|
|
filteredCount, err := repo_model.CountReleasesByRepoID(ctx, ctx.Repo.Repository.ID, opts)
|
2021-06-17 04:58:10 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(filteredCount), listOptions.PageSize)
|
2021-08-12 08:43:08 -04:00
|
|
|
ctx.SetTotalCountHeader(filteredCount)
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.JSON(http.StatusOK, rels)
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateRelease create a release
|
2021-01-26 10:36:53 -05:00
|
|
|
func CreateRelease(ctx *context.APIContext) {
|
2018-01-16 03:54:13 -05:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/releases repository repoCreateRelease
|
2017-11-13 02:02:25 -05:00
|
|
|
// ---
|
|
|
|
// summary: Create a release
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateReleaseOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Release"
|
2020-09-24 18:36:56 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
// "409":
|
|
|
|
// "$ref": "#/responses/error"
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.CreateReleaseOption)
|
2023-09-25 09:17:37 -04:00
|
|
|
rel, err := repo_model.GetRelease(ctx, ctx.Repo.Repository.ID, form.TagName)
|
2016-12-31 11:51:22 -05:00
|
|
|
if err != nil {
|
2022-08-24 22:31:57 -04:00
|
|
|
if !repo_model.IsErrReleaseNotExist(err) {
|
2020-09-20 16:20:14 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetRelease", err)
|
2017-09-20 01:26:49 -04:00
|
|
|
return
|
|
|
|
}
|
2019-01-30 11:33:00 -05:00
|
|
|
// If target is not provided use default branch
|
|
|
|
if len(form.Target) == 0 {
|
|
|
|
form.Target = ctx.Repo.Repository.DefaultBranch
|
|
|
|
}
|
2022-08-24 22:31:57 -04:00
|
|
|
rel = &repo_model.Release{
|
2017-09-20 01:26:49 -04:00
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
2022-03-22 03:03:22 -04:00
|
|
|
PublisherID: ctx.Doer.ID,
|
|
|
|
Publisher: ctx.Doer,
|
2017-09-20 01:26:49 -04:00
|
|
|
TagName: form.TagName,
|
|
|
|
Target: form.Target,
|
|
|
|
Title: form.Title,
|
|
|
|
Note: form.Note,
|
|
|
|
IsDraft: form.IsDraft,
|
|
|
|
IsPrerelease: form.IsPrerelease,
|
|
|
|
IsTag: false,
|
2018-01-16 03:54:13 -05:00
|
|
|
Repo: ctx.Repo.Repository,
|
2017-09-20 01:26:49 -04:00
|
|
|
}
|
2022-06-03 02:13:58 -04:00
|
|
|
if err := release_service.CreateRelease(ctx.Repo.GitRepo, rel, nil, ""); err != nil {
|
2022-08-24 22:31:57 -04:00
|
|
|
if repo_model.IsErrReleaseAlreadyExist(err) {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusConflict, "ReleaseAlreadyExist", err)
|
2017-09-20 01:26:49 -04:00
|
|
|
} else {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "CreateRelease", err)
|
2017-09-20 01:26:49 -04:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if !rel.IsTag {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusConflict, "GetRelease", "Release is has no Tag")
|
2017-09-20 01:26:49 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rel.Title = form.Title
|
|
|
|
rel.Note = form.Note
|
|
|
|
rel.IsDraft = form.IsDraft
|
|
|
|
rel.IsPrerelease = form.IsPrerelease
|
2022-03-22 03:03:22 -04:00
|
|
|
rel.PublisherID = ctx.Doer.ID
|
2017-09-20 01:26:49 -04:00
|
|
|
rel.IsTag = false
|
2018-01-16 03:54:13 -05:00
|
|
|
rel.Repo = ctx.Repo.Repository
|
2022-03-22 03:03:22 -04:00
|
|
|
rel.Publisher = ctx.Doer
|
2022-07-15 14:39:03 -04:00
|
|
|
rel.Target = form.Target
|
2017-09-20 01:26:49 -04:00
|
|
|
|
2023-09-25 09:17:37 -04:00
|
|
|
if err = release_service.UpdateRelease(ctx, ctx.Doer, ctx.Repo.GitRepo, rel, nil, nil, nil); err != nil {
|
2021-03-22 12:09:51 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateRelease", err)
|
2017-09-20 01:26:49 -04:00
|
|
|
return
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|
|
|
|
}
|
2023-07-10 05:31:19 -04:00
|
|
|
ctx.JSON(http.StatusCreated, convert.ToAPIRelease(ctx, ctx.Repo.Repository, rel))
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// EditRelease edit a release
|
2021-01-26 10:36:53 -05:00
|
|
|
func EditRelease(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation PATCH /repos/{owner}/{repo}/releases/{id} repository repoEditRelease
|
|
|
|
// ---
|
|
|
|
// summary: Update a release
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the release to edit
|
|
|
|
// type: integer
|
2018-10-20 23:40:42 -04:00
|
|
|
// format: int64
|
2017-11-13 02:02:25 -05:00
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditReleaseOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Release"
|
2020-09-24 18:36:56 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
form := web.GetForm(ctx).(*api.EditReleaseOption)
|
2016-12-31 11:51:22 -05:00
|
|
|
id := ctx.ParamsInt64(":id")
|
2023-11-25 12:21:21 -05:00
|
|
|
rel, err := repo_model.GetReleaseForRepoByID(ctx, ctx.Repo.Repository.ID, id)
|
2022-08-24 22:31:57 -04:00
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
2023-11-25 12:21:21 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseForRepoByID", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-11-25 12:21:21 -05:00
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) || rel.IsTag {
|
2019-03-18 22:29:43 -04:00
|
|
|
ctx.NotFound()
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(form.TagName) > 0 {
|
|
|
|
rel.TagName = form.TagName
|
|
|
|
}
|
|
|
|
if len(form.Target) > 0 {
|
|
|
|
rel.Target = form.Target
|
|
|
|
}
|
|
|
|
if len(form.Title) > 0 {
|
|
|
|
rel.Title = form.Title
|
|
|
|
}
|
|
|
|
if len(form.Note) > 0 {
|
|
|
|
rel.Note = form.Note
|
|
|
|
}
|
|
|
|
if form.IsDraft != nil {
|
|
|
|
rel.IsDraft = *form.IsDraft
|
|
|
|
}
|
|
|
|
if form.IsPrerelease != nil {
|
|
|
|
rel.IsPrerelease = *form.IsPrerelease
|
|
|
|
}
|
2023-09-25 09:17:37 -04:00
|
|
|
if err := release_service.UpdateRelease(ctx, ctx.Doer, ctx.Repo.GitRepo, rel, nil, nil, nil); err != nil {
|
2021-03-22 12:09:51 -04:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateRelease", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-03 02:13:58 -04:00
|
|
|
// reload data from database
|
2022-08-24 22:31:57 -04:00
|
|
|
rel, err = repo_model.GetReleaseByID(ctx, id)
|
2016-12-31 11:51:22 -05:00
|
|
|
if err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2022-11-19 03:12:33 -05:00
|
|
|
if err := rel.LoadAttributes(ctx); err != nil {
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-07-10 05:31:19 -04:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToAPIRelease(ctx, ctx.Repo.Repository, rel))
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteRelease delete a release from a repository
|
|
|
|
func DeleteRelease(ctx *context.APIContext) {
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/releases/{id} repository repoDeleteRelease
|
|
|
|
// ---
|
|
|
|
// summary: Delete a release
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the release to delete
|
|
|
|
// type: integer
|
2018-10-20 23:40:42 -04:00
|
|
|
// format: int64
|
2017-11-13 02:02:25 -05:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2020-09-24 18:36:56 -04:00
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2022-06-16 16:03:03 -04:00
|
|
|
// "405":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 12:07:12 -05:00
|
|
|
|
2016-12-31 11:51:22 -05:00
|
|
|
id := ctx.ParamsInt64(":id")
|
2023-11-25 12:21:21 -05:00
|
|
|
rel, err := repo_model.GetReleaseForRepoByID(ctx, ctx.Repo.Repository.ID, id)
|
2022-08-24 22:31:57 -04:00
|
|
|
if err != nil && !repo_model.IsErrReleaseNotExist(err) {
|
2023-11-25 12:21:21 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseForRepoByID", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-11-25 12:21:21 -05:00
|
|
|
if err != nil && repo_model.IsErrReleaseNotExist(err) || rel.IsTag {
|
2019-03-18 22:29:43 -04:00
|
|
|
ctx.NotFound()
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2023-11-25 12:21:21 -05:00
|
|
|
if err := release_service.DeleteReleaseByID(ctx, ctx.Repo.Repository, rel, ctx.Doer, false); err != nil {
|
2022-06-16 16:03:03 -04:00
|
|
|
if models.IsErrProtectedTagName(err) {
|
|
|
|
ctx.Error(http.StatusMethodNotAllowed, "delTag", "user not allowed to delete protected tag")
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteReleaseByID", err)
|
2016-12-31 11:51:22 -05:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 12:07:12 -05:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-12-31 11:51:22 -05:00
|
|
|
}
|