Compare commits

...

10 Commits

Author SHA1 Message Date
junleea 75fdf7c1d8 文件上传功能 2024-08-30 22:31:08 +08:00
junleea 27972c1619 文件上传功能、删除功能 2024-08-30 21:46:28 +08:00
junleea d33597766a download file 2024-08-30 15:47:57 +08:00
junleea 9e5ca5e897 download file 2024-08-30 15:41:51 +08:00
junleea 5228a4270e download file 2024-08-30 15:40:45 +08:00
junleea a295d750cc upload type 2024-08-30 15:28:39 +08:00
junleea c943ced9f6 upload type 2024-08-30 15:26:39 +08:00
junleea db726b078e upload type 2024-08-30 15:13:23 +08:00
junleea 0b503558ef upload type 2024-08-30 15:03:33 +08:00
junleea 743ac6a55f upload type 2024-08-30 14:48:19 +08:00
5 changed files with 95 additions and 32 deletions

View File

@ -59,3 +59,19 @@ func UpdateFileByID(id, auth_id int, fileStoreName, fileName, fileType, filePath
}
return true
}
func DeleteFileByAuthID(auth_id int) bool {
res := DB.Debug().Model(&File{}).Where("auth_id = ?", auth_id).Delete(&File{})
if res.Error != nil {
return false
}
return true
}
func DeleteFileById(id int) bool {
res := DB.Debug().Model(&File{}).Where("id = ?", id).Delete(&File{})
if res.Error != nil {
return false
}
return true
}

View File

@ -1,8 +1,12 @@
package handler
import (
"fmt"
"github.com/gin-gonic/gin"
"io"
"net/http"
"os"
"strconv"
"videoplayer/dao"
"videoplayer/proto"
"videoplayer/service"
@ -22,7 +26,36 @@ func SetUpToolGroup(router *gin.Engine) {
//文件上传、下载
toolGroup.POST("/upload", UploadFile)
toolGroup.GET("/download/:filename", DownloadFile)
toolGroup.GET("/download", DownloadFile)
//文件管理
toolGroup.POST("/file_del", DelFile)
}
func DelFile(c *gin.Context) {
//先查看是否有权限
id, _ := c.Get("id")
id1 := int(id.(float64))
file_id, _ := strconv.Atoi(c.PostForm("id"))
file_ := dao.FindFileByID(file_id, id1)
if file_.ID == 0 {
c.JSON(http.StatusOK, gin.H{"error": "file not found", "code": proto.FileNotFound, "message": "failed"})
return
}
//删除文件
err := os.Remove(file_.FilePath + "/" + file_.FileStoreName)
if err != nil {
c.JSON(http.StatusOK, gin.H{"error": "delete file failed", "code": proto.DeleteFileFailed, "message": "failed"})
return
}
//删除文件信息
if res := dao.DeleteFileById(file_id); !res {
c.JSON(http.StatusOK, gin.H{"error": "delete file info failed", "code": proto.DeleteFileInfoFailed, "message": "failed"})
return
}
c.JSON(http.StatusOK, gin.H{"code": proto.SuccessCode, "message": "success"})
}
func UploadFile(c *gin.Context) {
@ -30,7 +63,7 @@ func UploadFile(c *gin.Context) {
id, _ := c.Get("id")
id1 := int(id.(float64))
//从请求头获取upload_type
uploadType := c.GetHeader("upload_type")
uploadType := c.PostForm("upload_type")
if uploadType == "" {
c.JSON(http.StatusOK, gin.H{"error": "upload_type is empty", "code": proto.ParameterError, "message": "failed"})
return
@ -49,7 +82,7 @@ func UploadFile(c *gin.Context) {
}
//保存文件
filePath, fileStoreName, err := service.SaveFile(file, uploadType)
filePath, fileStoreName, err := service.SaveFile(c, file, uploadType)
if err != nil {
c.JSON(http.StatusOK, gin.H{"error": "save file failed", "code": proto.SaveFileFailed, "message": "failed"})
return
@ -63,22 +96,43 @@ func UploadFile(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"error": "save file info failed", "code": proto.SaveFileInfoFailed, "message": "failed"})
return
}
c.JSON(http.StatusOK, gin.H{"code": proto.SuccessCode, "message": "success", "data": fileID})
}
func DownloadFile(c *gin.Context) {
//参数
filename := c.Param("filename")
//file_id, _ := strconv.Atoi(c.Query("id"))
//filename := c.Param("filename")
file_id, _ := strconv.Atoi(c.Query("id"))
id, _ := c.Get("id")
//查询文件信息
file := dao.FindFileByNames(filename, int(id.(float64)))
if file.ID == 0 {
//file := dao.FindFileByNames(file_id, int(id.(float64)))
file_ := dao.FindFileByID(file_id, int(id.(float64)))
if file_.ID == 0 {
c.JSON(http.StatusOK, gin.H{"error": "file not found", "code": proto.FileNotFound, "message": "failed"})
return
}
//下载文件
c.File(file.FilePath + file.FileStoreName)
// 打开文件
file, err := os.Open(file_.FilePath + "/" + file_.FileStoreName)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Internal Server Error", "message": "Failed to open file"})
return
}
defer file.Close()
// 设置响应头
c.Writer.Header().Set("Content-Type", "application/octet-stream")
c.Writer.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", file_.FileName))
// 发送文件内容
_, err = io.Copy(c.Writer, file)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Internal Server Error", "message": "Failed to send file"})
return
}
c.Status(http.StatusOK)
}
func SetRedis(c *gin.Context) {

View File

@ -50,10 +50,11 @@ func writeLogger(c *gin.Context) {
method := c.Request.Method
path := c.Request.URL.Path
params := ""
if method == "GET" {
params = c.Request.URL.RawQuery
}
if method == "POST" {
if method == "POST" && !strings.Contains(c.Request.URL.Path, "/upload") {
params = c.Request.PostForm.Encode()
if params == "" {
// 请求体
@ -62,6 +63,9 @@ func writeLogger(c *gin.Context) {
params = string(bodyBytes)
}
}
if strings.Contains(c.Request.URL.Path, "/upload") {
params = "upload file"
}
go dao.InsertLogToDB(path, ip, method, params)
}

View File

@ -51,10 +51,12 @@ const (
MsgSendFailed = 61 // 消息发送失败
//文件错误码
FileNotFound = 71 // 文件不存在
FileUploadFailed = 72 // 文件上传失败
SaveFileInfoFailed = 73 // 保存文件信息失败
SaveFileFailed = 74 // 保存文件失败
UploadFileFailed = 75 // 上传文件失败
NoUploadPermissions = 76 // 无上传权限
FileNotFound = 71 // 文件不存在
FileUploadFailed = 72 // 文件上传失败
SaveFileInfoFailed = 73 // 保存文件信息失败
SaveFileFailed = 74 // 保存文件失败
UploadFileFailed = 75 // 上传文件失败
NoUploadPermissions = 76 // 无上传权限
DeleteFileFailed = 77 // 删除文件失败
DeleteFileInfoFailed = 78 // 删除文件信息失败
)

View File

@ -1,8 +1,8 @@
package service
import (
"github.com/gin-gonic/gin"
"github.com/google/uuid"
"io"
"mime/multipart"
"os"
"path"
@ -26,7 +26,7 @@ func getFilePath(path string) string {
return filePath
}
func SaveFile(file *multipart.FileHeader, uploadType string) (string, string, error) {
func SaveFile(c *gin.Context, file *multipart.FileHeader, uploadType string) (string, string, error) {
//获取文件后缀
fileSuffix := path.Ext(file.Filename)
//生成文件名
@ -35,23 +35,10 @@ func SaveFile(file *multipart.FileHeader, uploadType string) (string, string, er
path_ := getFilePath(proto.FILE_BASE_DIR)
filePath := path_ + "/" + fileStoreName
//保存文件file
dst, err := os.Create(filePath)
if err != nil {
//保存文件
if err := c.SaveUploadedFile(file, filePath); err != nil {
return "", "", err
}
defer dst.Close()
// 复制文件内容
file_, err := file.Open()
if err != nil {
return "", "", err
}
_, err = io.Copy(dst, file_)
if err != nil {
return "", "", err
}
if uploadType == "2" {
worker.PushRedisList("video_need_handle", filePath)
}