|
@@ -1,8 +1,8 @@
|
|
|
package controller
|
|
|
|
|
|
import (
|
|
|
- "encoding/json"
|
|
|
"github.com/gin-gonic/gin"
|
|
|
+ "iot_manager_service/app/file/dao"
|
|
|
"iot_manager_service/app/file/model"
|
|
|
"iot_manager_service/app/file/service"
|
|
|
"iot_manager_service/util/cache"
|
|
@@ -13,6 +13,7 @@ import (
|
|
|
"path"
|
|
|
"path/filepath"
|
|
|
"strconv"
|
|
|
+ "strings"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
@@ -20,19 +21,22 @@ var FileController = new(file)
|
|
|
|
|
|
type file struct{}
|
|
|
|
|
|
-func (f *file) Distribute(c *gin.Context) {
|
|
|
- //获取当前用户
|
|
|
+func (f *file) Upload(c *gin.Context) {
|
|
|
header := c.GetHeader("Authorization")
|
|
|
claims, _ := token.JwtClaims.ParseJwtToken(header)
|
|
|
nowSysUser, _ := cache.GetNowSysUser(claims.ID)
|
|
|
|
|
|
- //TODO:校验签名 如果成功则上传否则不上传
|
|
|
+ // 获取表单字段的值
|
|
|
+ categoryName := c.PostForm("categoryName")
|
|
|
+ iv := c.PostForm("iv")
|
|
|
+ str := c.PostForm("authId")
|
|
|
+ authId := strings.Replace(str, ",", "", -1)
|
|
|
+
|
|
|
formFile, err := c.FormFile("file")
|
|
|
if err != nil {
|
|
|
c.JSON(http.StatusOK, common.ParamsInvalidResponse("获取文件数据失败", nil))
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
//获取后缀
|
|
|
sufx := path.Ext(formFile.Filename)
|
|
|
//利用时间戳生成文件名
|
|
@@ -40,22 +44,49 @@ func (f *file) Distribute(c *gin.Context) {
|
|
|
fileNameStr := strconv.FormatInt(fileNameInt, 10)
|
|
|
//新的文件名
|
|
|
newfileName := fileNameStr + sufx
|
|
|
- _, err = os.Stat("uploadfiles")
|
|
|
+
|
|
|
+ currentDir, _ := os.Getwd()
|
|
|
+ parentDir := filepath.Dir(currentDir)
|
|
|
+ folderPath := filepath.Join(parentDir, "uploadfiles")
|
|
|
+ _, err = os.Stat(folderPath)
|
|
|
if os.IsNotExist(err) {
|
|
|
- os.Mkdir("./uploadfiles", os.ModePerm)
|
|
|
+ os.Mkdir(folderPath, os.ModePerm)
|
|
|
}
|
|
|
//保存文件
|
|
|
- filePath := filepath.Join("uploadfiles", "/", newfileName)
|
|
|
+ filePath := filepath.Join(folderPath, "/", newfileName)
|
|
|
c.SaveUploadedFile(formFile, filePath)
|
|
|
|
|
|
- //获取另外一个参数
|
|
|
- str := c.Request.FormValue("req")
|
|
|
- userFile := model.ReqSysUserFile{}
|
|
|
- json.Unmarshal([]byte(str), &userFile)
|
|
|
+ savePath := "/uploadfiles/" + newfileName
|
|
|
+ currentTimeValue := time.Now()
|
|
|
+ upload := service.FileService.Upload(dao.File{
|
|
|
+ OriginalName: strings.TrimSuffix(formFile.Filename, filepath.Ext(formFile.Filename)),
|
|
|
+ EncryptedName: formFile.Filename,
|
|
|
+ SavePath: savePath,
|
|
|
+ CategoryName: categoryName,
|
|
|
+ AuthId: authId,
|
|
|
+ SuffixName: path.Ext(formFile.Filename),
|
|
|
+ UploadTime: ¤tTimeValue,
|
|
|
+ Uploader: int(nowSysUser.ID),
|
|
|
+ Icon: strings.TrimPrefix(path.Ext(formFile.Filename), ".") + ".png",
|
|
|
+ Iv: iv,
|
|
|
+ })
|
|
|
+ c.JSON(http.StatusOK, upload)
|
|
|
|
|
|
- savePath := "uploadfiles/" + newfileName
|
|
|
- distribute := service.FileService.Distribute(formFile.Filename, savePath, &userFile, nowSysUser.ID)
|
|
|
+}
|
|
|
|
|
|
+func (f *file) Distribute(c *gin.Context) {
|
|
|
+ //获取当前用户
|
|
|
+ header := c.GetHeader("Authorization")
|
|
|
+ claims, _ := token.JwtClaims.ParseJwtToken(header)
|
|
|
+ nowSysUser, _ := cache.GetNowSysUser(claims.ID)
|
|
|
+
|
|
|
+ var reqUserFile model.ReqSysUserFile
|
|
|
+ err := c.ShouldBindJSON(&reqUserFile)
|
|
|
+ if err != nil {
|
|
|
+ c.JSON(http.StatusOK, common.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ distribute := service.FileService.Distribute(&reqUserFile, int(nowSysUser.ID))
|
|
|
c.JSON(http.StatusOK, distribute)
|
|
|
}
|
|
|
|
|
@@ -91,6 +122,13 @@ func (f *file) ForwardingFile(c *gin.Context) {
|
|
|
c.JSON(http.StatusOK, forwardingFile)
|
|
|
}
|
|
|
|
|
|
+func (f *file) GetMyUploadFiles(c *gin.Context) {
|
|
|
+ header := c.GetHeader("Authorization")
|
|
|
+ claims, _ := token.JwtClaims.ParseJwtToken(header)
|
|
|
+ files := service.FileService.GetMyUploadFiles(claims.ID)
|
|
|
+ c.JSON(http.StatusOK, files)
|
|
|
+}
|
|
|
+
|
|
|
// 查看文件
|
|
|
func (f *file) ViewFile(c *gin.Context) {
|
|
|
fileId := c.Query("fileId")
|