2018-03-06 06:52:16 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2019-12-20 22:37:12 +05:30
|
|
|
"net/http"
|
2018-03-29 19:02:40 +05:30
|
|
|
|
2021-11-19 19:09:57 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2018-03-06 06:52:16 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-10-17 09:53:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-09-27 07:54:06 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2018-03-06 06:52:16 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-11 15:51:34 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2019-08-23 22:10:30 +05:30
|
|
|
"code.gitea.io/gitea/modules/upload"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-09-08 20:49:30 +05:30
|
|
|
"code.gitea.io/gitea/services/attachment"
|
2018-03-06 06:52:16 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// GetReleaseAttachment gets a single attachment of the release
|
|
|
|
func GetReleaseAttachment(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases/{id}/assets/{attachment_id} repository repoGetReleaseAttachment
|
|
|
|
// ---
|
|
|
|
// summary: Get a release attachment
|
|
|
|
// 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
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// - name: attachment_id
|
|
|
|
// in: path
|
|
|
|
// description: id of the attachment to get
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Attachment"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2018-03-06 06:52:16 +05:30
|
|
|
releaseID := ctx.ParamsInt64(":id")
|
|
|
|
attachID := ctx.ParamsInt64(":asset")
|
2022-05-20 19:38:52 +05:30
|
|
|
attach, err := repo_model.GetAttachmentByID(ctx, attachID)
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2022-08-24 18:06:21 +05:30
|
|
|
if repo_model.IsErrAttachmentNotExist(err) {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetAttachmentByID", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
if attach.ReleaseID != releaseID {
|
2019-09-27 07:54:06 +05:30
|
|
|
log.Info("User requested attachment is not in release, release_id %v, attachment_id: %v", releaseID, attachID)
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
// FIXME Should prove the existence of the given repo, but results in unnecessary database requests
|
2020-10-17 09:53:08 +05:30
|
|
|
ctx.JSON(http.StatusOK, convert.ToReleaseAttachment(attach))
|
2018-03-06 06:52:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// ListReleaseAttachments lists all attachments of the release
|
|
|
|
func ListReleaseAttachments(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/releases/{id}/assets repository repoListReleaseAttachments
|
|
|
|
// ---
|
|
|
|
// summary: List release's attachments
|
|
|
|
// 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
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/AttachmentList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2018-03-06 06:52:16 +05:30
|
|
|
releaseID := ctx.ParamsInt64(":id")
|
2022-08-25 08:01:57 +05:30
|
|
|
release, err := repo_model.GetReleaseByID(ctx, releaseID)
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2022-08-25 08:01:57 +05:30
|
|
|
if repo_model.IsErrReleaseNotExist(err) {
|
2022-08-24 18:06:21 +05:30
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
if release.RepoID != ctx.Repo.Repository.ID {
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
2022-11-19 13:42:33 +05:30
|
|
|
if err := release.LoadAttributes(ctx); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadAttributes", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
2020-10-17 09:53:08 +05:30
|
|
|
ctx.JSON(http.StatusOK, convert.ToRelease(release).Attachments)
|
2018-03-06 06:52:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// CreateReleaseAttachment creates an attachment and saves the given file
|
|
|
|
func CreateReleaseAttachment(ctx *context.APIContext) {
|
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/releases/{id}/assets repository repoCreateReleaseAttachment
|
|
|
|
// ---
|
|
|
|
// summary: Create a release attachment
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// consumes:
|
|
|
|
// - multipart/form-data
|
|
|
|
// 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
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// - name: name
|
|
|
|
// in: query
|
|
|
|
// description: name of the attachment
|
|
|
|
// type: string
|
|
|
|
// required: false
|
|
|
|
// - name: attachment
|
|
|
|
// in: formData
|
|
|
|
// description: attachment to upload
|
|
|
|
// type: file
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Attachment"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "400":
|
|
|
|
// "$ref": "#/responses/error"
|
2018-03-06 06:52:16 +05:30
|
|
|
|
|
|
|
// Check if attachments are enabled
|
2020-08-18 09:53:45 +05:30
|
|
|
if !setting.Attachment.Enabled {
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound("Attachment is not enabled")
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if release exists an load release
|
|
|
|
releaseID := ctx.ParamsInt64(":id")
|
2022-08-25 08:01:57 +05:30
|
|
|
release, err := repo_model.GetReleaseByID(ctx, releaseID)
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2022-08-25 08:01:57 +05:30
|
|
|
if repo_model.IsErrReleaseNotExist(err) {
|
2022-08-24 18:06:21 +05:30
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetReleaseByID", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get uploaded file from request
|
2021-01-26 21:06:53 +05:30
|
|
|
file, header, err := ctx.Req.FormFile("attachment")
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetFile", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
filename := header.Filename
|
2021-08-11 06:01:13 +05:30
|
|
|
if query := ctx.FormString("name"); query != "" {
|
2018-03-06 06:52:16 +05:30
|
|
|
filename = query
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new attachment and save the file
|
2022-03-22 12:33:22 +05:30
|
|
|
attach, err := attachment.UploadAttachment(file, ctx.Doer.ID, release.RepoID, releaseID, filename, setting.Repository.Release.AllowedTypes)
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2021-09-08 20:49:30 +05:30
|
|
|
if upload.IsErrFileTypeForbidden(err) {
|
|
|
|
ctx.Error(http.StatusBadRequest, "DetectContentType", err)
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "NewAttachment", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
2019-04-03 00:55:05 +05:30
|
|
|
|
2020-10-17 09:53:08 +05:30
|
|
|
ctx.JSON(http.StatusCreated, convert.ToReleaseAttachment(attach))
|
2018-03-06 06:52:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// EditReleaseAttachment updates the given attachment
|
2021-01-26 21:06:53 +05:30
|
|
|
func EditReleaseAttachment(ctx *context.APIContext) {
|
2018-03-06 06:52:16 +05:30
|
|
|
// swagger:operation PATCH /repos/{owner}/{repo}/releases/{id}/assets/{attachment_id} repository repoEditReleaseAttachment
|
|
|
|
// ---
|
|
|
|
// summary: Edit a release attachment
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// consumes:
|
|
|
|
// - 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
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// - name: attachment_id
|
|
|
|
// in: path
|
|
|
|
// description: id of the attachment to edit
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditAttachmentOptions"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Attachment"
|
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
form := web.GetForm(ctx).(*api.EditAttachmentOptions)
|
|
|
|
|
2018-03-06 06:52:16 +05:30
|
|
|
// Check if release exists an load release
|
|
|
|
releaseID := ctx.ParamsInt64(":id")
|
2019-09-27 07:54:06 +05:30
|
|
|
attachID := ctx.ParamsInt64(":asset")
|
2022-05-20 19:38:52 +05:30
|
|
|
attach, err := repo_model.GetAttachmentByID(ctx, attachID)
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2022-08-24 18:06:21 +05:30
|
|
|
if repo_model.IsErrAttachmentNotExist(err) {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetAttachmentByID", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
if attach.ReleaseID != releaseID {
|
2019-09-27 07:54:06 +05:30
|
|
|
log.Info("User requested attachment is not in release, release_id %v, attachment_id: %v", releaseID, attachID)
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
// FIXME Should prove the existence of the given repo, but results in unnecessary database requests
|
|
|
|
if form.Name != "" {
|
|
|
|
attach.Name = form.Name
|
|
|
|
}
|
|
|
|
|
2022-05-20 19:38:52 +05:30
|
|
|
if err := repo_model.UpdateAttachment(ctx, attach); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateAttachment", attach)
|
2018-03-06 06:52:16 +05:30
|
|
|
}
|
2020-10-17 09:53:08 +05:30
|
|
|
ctx.JSON(http.StatusCreated, convert.ToReleaseAttachment(attach))
|
2018-03-06 06:52:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteReleaseAttachment delete a given attachment
|
|
|
|
func DeleteReleaseAttachment(ctx *context.APIContext) {
|
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/releases/{id}/assets/{attachment_id} repository repoDeleteReleaseAttachment
|
|
|
|
// ---
|
|
|
|
// summary: Delete a release attachment
|
|
|
|
// 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
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// - name: attachment_id
|
|
|
|
// in: path
|
|
|
|
// description: id of the attachment to delete
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2018-03-06 06:52:16 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
|
|
|
|
// Check if release exists an load release
|
|
|
|
releaseID := ctx.ParamsInt64(":id")
|
2019-09-27 07:54:06 +05:30
|
|
|
attachID := ctx.ParamsInt64(":asset")
|
2022-05-20 19:38:52 +05:30
|
|
|
attach, err := repo_model.GetAttachmentByID(ctx, attachID)
|
2018-03-06 06:52:16 +05:30
|
|
|
if err != nil {
|
2022-08-24 18:06:21 +05:30
|
|
|
if repo_model.IsErrAttachmentNotExist(err) {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetAttachmentByID", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
if attach.ReleaseID != releaseID {
|
2019-09-27 07:54:06 +05:30
|
|
|
log.Info("User requested attachment is not in release, release_id %v, attachment_id: %v", releaseID, attachID)
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
// FIXME Should prove the existence of the given repo, but results in unnecessary database requests
|
|
|
|
|
2021-11-19 19:09:57 +05:30
|
|
|
if err := repo_model.DeleteAttachment(attach, true); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteAttachment", err)
|
2018-03-06 06:52:16 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2018-03-06 06:52:16 +05:30
|
|
|
}
|