* Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
		
			
				
	
	
		
			158 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			158 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 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 (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 	"strings"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	"code.gitea.io/gitea/modules/log"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/modules/storage"
 | |
| 	"code.gitea.io/gitea/modules/upload"
 | |
| )
 | |
| 
 | |
| func renderAttachmentSettings(ctx *context.Context) {
 | |
| 	ctx.Data["IsAttachmentEnabled"] = setting.Attachment.Enabled
 | |
| 	ctx.Data["AttachmentStoreType"] = setting.Attachment.StoreType
 | |
| 	ctx.Data["AttachmentAllowedTypes"] = setting.Attachment.AllowedTypes
 | |
| 	ctx.Data["AttachmentMaxSize"] = setting.Attachment.MaxSize
 | |
| 	ctx.Data["AttachmentMaxFiles"] = setting.Attachment.MaxFiles
 | |
| }
 | |
| 
 | |
| // UploadAttachment response for uploading issue's attachment
 | |
| func UploadAttachment(ctx *context.Context) {
 | |
| 	if !setting.Attachment.Enabled {
 | |
| 		ctx.Error(404, "attachment is not enabled")
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	file, header, err := ctx.Req.FormFile("file")
 | |
| 	if err != nil {
 | |
| 		ctx.Error(500, fmt.Sprintf("FormFile: %v", err))
 | |
| 		return
 | |
| 	}
 | |
| 	defer file.Close()
 | |
| 
 | |
| 	buf := make([]byte, 1024)
 | |
| 	n, _ := file.Read(buf)
 | |
| 	if n > 0 {
 | |
| 		buf = buf[:n]
 | |
| 	}
 | |
| 
 | |
| 	err = upload.VerifyAllowedContentType(buf, strings.Split(setting.Attachment.AllowedTypes, ","))
 | |
| 	if err != nil {
 | |
| 		ctx.Error(400, err.Error())
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	attach, err := models.NewAttachment(&models.Attachment{
 | |
| 		UploaderID: ctx.User.ID,
 | |
| 		Name:       header.Filename,
 | |
| 	}, buf, file)
 | |
| 	if err != nil {
 | |
| 		ctx.Error(500, fmt.Sprintf("NewAttachment: %v", err))
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	log.Trace("New attachment uploaded: %s", attach.UUID)
 | |
| 	ctx.JSON(200, map[string]string{
 | |
| 		"uuid": attach.UUID,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // DeleteAttachment response for deleting issue's attachment
 | |
| func DeleteAttachment(ctx *context.Context) {
 | |
| 	file := ctx.Query("file")
 | |
| 	attach, err := models.GetAttachmentByUUID(file)
 | |
| 	if err != nil {
 | |
| 		ctx.Error(400, err.Error())
 | |
| 		return
 | |
| 	}
 | |
| 	if !ctx.IsSigned || (ctx.User.ID != attach.UploaderID) {
 | |
| 		ctx.Error(403)
 | |
| 		return
 | |
| 	}
 | |
| 	err = models.DeleteAttachment(attach, true)
 | |
| 	if err != nil {
 | |
| 		ctx.Error(500, fmt.Sprintf("DeleteAttachment: %v", err))
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.JSON(200, map[string]string{
 | |
| 		"uuid": attach.UUID,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // GetAttachment serve attachements
 | |
| func GetAttachment(ctx *context.Context) {
 | |
| 	attach, err := models.GetAttachmentByUUID(ctx.Params(":uuid"))
 | |
| 	if err != nil {
 | |
| 		if models.IsErrAttachmentNotExist(err) {
 | |
| 			ctx.Error(404)
 | |
| 		} else {
 | |
| 			ctx.ServerError("GetAttachmentByUUID", err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	repository, unitType, err := attach.LinkedRepository()
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("LinkedRepository", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if repository == nil { //If not linked
 | |
| 		if !(ctx.IsSigned && attach.UploaderID == ctx.User.ID) { //We block if not the uploader
 | |
| 			ctx.Error(http.StatusNotFound)
 | |
| 			return
 | |
| 		}
 | |
| 	} else { //If we have the repository we check access
 | |
| 		perm, err := models.GetUserRepoPermission(repository, ctx.User)
 | |
| 		if err != nil {
 | |
| 			ctx.Error(http.StatusInternalServerError, "GetUserRepoPermission", err.Error())
 | |
| 			return
 | |
| 		}
 | |
| 		if !perm.CanRead(unitType) {
 | |
| 			ctx.Error(http.StatusNotFound)
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if setting.Attachment.ServeDirect {
 | |
| 		//If we have a signed url (S3, object storage), redirect to this directly.
 | |
| 		u, err := storage.Attachments.URL(attach.RelativePath(), attach.Name)
 | |
| 
 | |
| 		if u != nil && err == nil {
 | |
| 			if err := attach.IncreaseDownloadCount(); err != nil {
 | |
| 				ctx.ServerError("Update", err)
 | |
| 				return
 | |
| 			}
 | |
| 
 | |
| 			ctx.Redirect(u.String())
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	//If we have matched and access to release or issue
 | |
| 	fr, err := storage.Attachments.Open(attach.RelativePath())
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("Open", err)
 | |
| 		return
 | |
| 	}
 | |
| 	defer fr.Close()
 | |
| 
 | |
| 	if err := attach.IncreaseDownloadCount(); err != nil {
 | |
| 		ctx.ServerError("Update", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err = ServeData(ctx, attach.Name, fr); err != nil {
 | |
| 		ctx.ServerError("ServeData", err)
 | |
| 		return
 | |
| 	}
 | |
| }
 |