package common import ( "errors" "mime/multipart" "strings" "git.echol.cn/loser/Go-Web-Template/server/global" "git.echol.cn/loser/Go-Web-Template/server/model/common" commonReq "git.echol.cn/loser/Go-Web-Template/server/model/common/request" "git.echol.cn/loser/Go-Web-Template/server/utils/upload" "gorm.io/gorm" ) //@author: [piexlmax](https://github.com/piexlmax) //@function: Upload //@description: 创建文件上传记录 //@param: file model.ExaFileUploadAndDownload //@return: error func (e *FileUploadAndDownloadService) Upload(file common.ExaFileUploadAndDownload) error { return global.GVA_DB.Create(&file).Error } //@author: [piexlmax](https://github.com/piexlmax) //@function: FindFile //@description: 查询文件记录 //@param: id uint //@return: model.ExaFileUploadAndDownload, error func (e *FileUploadAndDownloadService) FindFile(id uint) (common.ExaFileUploadAndDownload, error) { var file common.ExaFileUploadAndDownload err := global.GVA_DB.Where("id = ?", id).First(&file).Error return file, err } //@author: [piexlmax](https://github.com/piexlmax) //@function: DeleteFile //@description: 删除文件记录 //@param: file model.ExaFileUploadAndDownload //@return: err error func (e *FileUploadAndDownloadService) DeleteFile(file common.ExaFileUploadAndDownload) (err error) { var fileFromDb common.ExaFileUploadAndDownload fileFromDb, err = e.FindFile(file.ID) if err != nil { return } oss := upload.NewOss() if err = oss.DeleteFile(fileFromDb.Key); err != nil { return errors.New("文件删除失败") } err = global.GVA_DB.Where("id = ?", file.ID).Unscoped().Delete(&file).Error return err } // EditFileName 编辑文件名或者备注 func (e *FileUploadAndDownloadService) EditFileName(file common.ExaFileUploadAndDownload) (err error) { var fileFromDb common.ExaFileUploadAndDownload return global.GVA_DB.Where("id = ?", file.ID).First(&fileFromDb).Update("name", file.Name).Error } //@author: [piexlmax](https://github.com/piexlmax) //@function: GetFileRecordInfoList //@description: 分页获取数据 //@param: info request.ExaAttachmentCategorySearch //@return: list interface{}, total int64, err error func (e *FileUploadAndDownloadService) GetFileRecordInfoList(info commonReq.ExaAttachmentCategorySearch) (list []common.ExaFileUploadAndDownload, total int64, err error) { limit := info.PageSize offset := info.PageSize * (info.Page - 1) db := global.GVA_DB.Model(&common.ExaFileUploadAndDownload{}) if len(info.Keyword) > 0 { db = db.Where("name LIKE ?", "%"+info.Keyword+"%") } if info.ClassId > 0 { db = db.Where("class_id = ?", info.ClassId) } err = db.Count(&total).Error if err != nil { return } err = db.Limit(limit).Offset(offset).Order("id desc").Find(&list).Error return list, total, err } //@author: [piexlmax](https://github.com/piexlmax) //@function: UploadFile //@description: 根据配置文件判断是文件上传到本地或者七牛云 //@param: header *multipart.FileHeader, noSave string //@return: file model.ExaFileUploadAndDownload, err error func (e *FileUploadAndDownloadService) UploadFile(header *multipart.FileHeader, noSave string, classId int) (file common.ExaFileUploadAndDownload, err error) { oss := upload.NewOss() filePath, key, uploadErr := oss.UploadFile(header) if uploadErr != nil { return file, uploadErr } s := strings.Split(header.Filename, ".") f := common.ExaFileUploadAndDownload{ Url: filePath, Name: header.Filename, ClassId: classId, Tag: s[len(s)-1], Key: key, } if noSave == "0" { // 检查是否已存在相同key的记录 var existingFile common.ExaFileUploadAndDownload err = global.GVA_DB.Where(&common.ExaFileUploadAndDownload{Key: key}).First(&existingFile).Error if errors.Is(err, gorm.ErrRecordNotFound) { return f, e.Upload(f) } return f, err } return f, nil } //@author: [piexlmax](https://github.com/piexlmax) //@function: ImportURL //@description: 导入URL //@param: file model.ExaFileUploadAndDownload //@return: error func (e *FileUploadAndDownloadService) ImportURL(file *[]common.ExaFileUploadAndDownload) error { return global.GVA_DB.Create(&file).Error }