You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
9 months ago
|
package service
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"pure-admin/global"
|
||
|
"pure-admin/model"
|
||
|
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
//@function: FindOrCreateFile
|
||
|
//@description: 上传文件时检测当前文件属性,如果没有文件则创建,有则返回文件的当前切片
|
||
|
//@param: fileMd5 string, fileName string, chunkTotal int
|
||
|
//@return: err error, file model.ExaFile
|
||
|
|
||
|
func FindOrCreateFile(fileMd5 string, fileName string, chunkTotal int) (err error, file model.ExaFile) {
|
||
|
var cfile model.ExaFile
|
||
|
cfile.FileMd5 = fileMd5
|
||
|
cfile.FileName = fileName
|
||
|
cfile.ChunkTotal = chunkTotal
|
||
|
|
||
|
if errors.Is(global.MG_DB.Where("file_md5 = ? AND is_finish = ?", fileMd5, true).First(&file).Error, gorm.ErrRecordNotFound) {
|
||
|
err = global.MG_DB.Where("file_md5 = ? AND file_name = ?", fileMd5, fileName).Preload("ExaFileChunk").FirstOrCreate(&file, cfile).Error
|
||
|
return err, file
|
||
|
}
|
||
|
cfile.IsFinish = true
|
||
|
cfile.FilePath = file.FilePath
|
||
|
err = global.MG_DB.Create(&cfile).Error
|
||
|
return err, cfile
|
||
|
}
|
||
|
|
||
|
//@function: CreateFileChunk
|
||
|
//@description: 创建文件切片记录
|
||
|
//@param: id uint, fileChunkPath string, fileChunkNumber int
|
||
|
//@return: error
|
||
|
|
||
|
func CreateFileChunk(id uint, fileChunkPath string, fileChunkNumber int) error {
|
||
|
var chunk model.ExaFileChunk
|
||
|
chunk.FileChunkPath = fileChunkPath
|
||
|
chunk.ExaFileID = id
|
||
|
chunk.FileChunkNumber = fileChunkNumber
|
||
|
err := global.MG_DB.Create(&chunk).Error
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
//@function: DeleteFileChunk
|
||
|
//@description: 删除文件切片记录
|
||
|
//@param: fileMd5 string, fileName string, filePath string
|
||
|
//@return: error
|
||
|
|
||
|
func DeleteFileChunk(fileMd5 string, fileName string, filePath string) error {
|
||
|
var chunks []model.ExaFileChunk
|
||
|
var file model.ExaFile
|
||
|
err := global.MG_DB.Where("file_md5 = ? AND file_name = ?", fileMd5, fileName).First(&file).Update("IsFinish", true).Update("file_path", filePath).Error
|
||
|
err = global.MG_DB.Where("exa_file_id = ?", file.ID).Delete(&chunks).Unscoped().Error
|
||
|
return err
|
||
|
}
|