From 9c7551a7a752c07db11b0fd23bfba8da1ad062e0 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 21 六月 2024 20:39:12 +0800 Subject: [PATCH] fix 404 --- utils/upload/seaweed.go | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/utils/upload/seaweed.go b/utils/upload/seaweed.go index acc30e6..5f10ab5 100644 --- a/utils/upload/seaweed.go +++ b/utils/upload/seaweed.go @@ -1 +1,23 @@ package upload + +import ( + "time" + "wms/conf" + "wms/pkg/logx" + "wms/pkg/weedfs" +) + +func UploadFileToSeaWeed(fileType, fileName string, fileBytes []byte) (string, error) { + //assignUrl := conf.WebConf.FileServer + "/dir/assign?collection=" + time.Now().Format("2006-01-02 15:04:05")[:10] + "-" + conf.WebConf.ServerId + "-" + fileType + assignUrl := conf.WebConf.FileServer + "/dir/assign?collection=12345-" + conf.WebConf.ServerId + "-" + fileType + + picUrl, err := WeedFSClient.GetFid(assignUrl) + if err != nil { + logx.Error(err.Error()) + return picUrl, err + } + + //picFileName := uuid.NewV4().String() + "." + ext + go WeedFSClient.UploadFile(picUrl, fileName, fileBytes, 3*time.Second) + return picUrl, nil +} -- Gitblit v1.8.0