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