@ -9,6 +9,7 @@ import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/modules/upload"
@ -55,6 +56,7 @@ func GetReleaseAttachment(ctx *context.APIContext) {
return
}
if attach . ReleaseID != releaseID {
log . Info ( "User requested attachment is not in release, release_id %v, attachment_id: %v" , releaseID , attachID )
ctx . NotFound ( )
return
}
@ -242,13 +244,14 @@ func EditReleaseAttachment(ctx *context.APIContext, form api.EditAttachmentOptio
// Check if release exists an load release
releaseID := ctx . ParamsInt64 ( ":id" )
attachID := ctx . ParamsInt64 ( ":attachmen t" )
attachID := ctx . ParamsInt64 ( ":asse t" )
attach , err := models . GetAttachmentByID ( attachID )
if err != nil {
ctx . Error ( 500 , "GetAttachmentByID" , err )
return
}
if attach . ReleaseID != releaseID {
log . Info ( "User requested attachment is not in release, release_id %v, attachment_id: %v" , releaseID , attachID )
ctx . NotFound ( )
return
}
@ -299,13 +302,14 @@ func DeleteReleaseAttachment(ctx *context.APIContext) {
// Check if release exists an load release
releaseID := ctx . ParamsInt64 ( ":id" )
attachID := ctx . ParamsInt64 ( ":attachmen t" )
attachID := ctx . ParamsInt64 ( ":asse t" )
attach , err := models . GetAttachmentByID ( attachID )
if err != nil {
ctx . Error ( 500 , "GetAttachmentByID" , err )
return
}
if attach . ReleaseID != releaseID {
log . Info ( "User requested attachment is not in release, release_id %v, attachment_id: %v" , releaseID , attachID )
ctx . NotFound ( )
return
}