Don't use SaveUploadedFile (causing permission issues)
Some checks failed
Deploy with Docker Compose / deploy (push) Has been cancelled

This commit is contained in:
2026-03-09 17:21:26 +00:00
parent 63da086da2
commit 68db930049

View File

@@ -3,7 +3,9 @@ package handlers
import ( import (
"crypto/rand" "crypto/rand"
"encoding/hex" "encoding/hex"
"io"
"net/http" "net/http"
"os"
"path/filepath" "path/filepath"
"strings" "strings"
@@ -71,7 +73,22 @@ func (store *Store) UploadMessageFile(ctx *gin.Context) {
uploadDir := "/backend/uploads/" uploadDir := "/backend/uploads/"
dest := filepath.Join(uploadDir, filename) dest := filepath.Join(uploadDir, filename)
if err := ctx.SaveUploadedFile(file, dest); err != nil {
src, err := file.Open()
if err != nil {
ctx.JSON(http.StatusInternalServerError, gin.H{"error": "failed to read file"})
return
}
defer src.Close()
out, err := os.OpenFile(dest, os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
ctx.JSON(http.StatusInternalServerError, gin.H{"error": "failed to save file"})
return
}
defer out.Close()
if _, err := io.Copy(out, src); err != nil {
ctx.JSON(http.StatusInternalServerError, gin.H{"error": "failed to save file"}) ctx.JSON(http.StatusInternalServerError, gin.H{"error": "failed to save file"})
return return
} }