mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 04:17:23 +00:00
138 lines
3.4 KiB
Go
138 lines
3.4 KiB
Go
package dao
|
|
|
|
import (
|
|
"errors"
|
|
"gorm.io/gorm"
|
|
"nysoure/server/model"
|
|
"time"
|
|
)
|
|
|
|
func CreateUploadingFile(filename string, description string, fileSize int64, blockSize int64, tempPath string, resourceID, storageID, userID uint) (*model.UploadingFile, error) {
|
|
blocksCount := (fileSize + blockSize - 1) / blockSize
|
|
uf := &model.UploadingFile{
|
|
Filename: filename,
|
|
Description: description,
|
|
TotalSize: fileSize,
|
|
BlockSize: blockSize,
|
|
TempPath: tempPath,
|
|
Blocks: make([]bool, blocksCount),
|
|
TargetResourceID: resourceID,
|
|
TargetStorageID: storageID,
|
|
UserID: userID,
|
|
}
|
|
if err := db.Create(uf).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return uf, nil
|
|
}
|
|
|
|
func GetUploadingFile(id uint) (*model.UploadingFile, error) {
|
|
uf := &model.UploadingFile{}
|
|
if err := db.Where("id = ?", id).First(uf).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return uf, nil
|
|
}
|
|
|
|
func UpdateUploadingBlock(id uint, blockIndex int) error {
|
|
uf := &model.UploadingFile{}
|
|
if err := db.Where("id = ?", id).First(uf).Error; err != nil {
|
|
return err
|
|
}
|
|
if blockIndex < 0 || blockIndex >= uf.BlocksCount() {
|
|
return nil
|
|
}
|
|
uf.Blocks[blockIndex] = true
|
|
return db.Save(uf).Error
|
|
}
|
|
|
|
func DeleteUploadingFile(id uint) error {
|
|
uf := &model.UploadingFile{}
|
|
if err := db.Where("id = ?", id).First(uf).Error; err != nil {
|
|
return err
|
|
}
|
|
if err := db.Delete(uf).Error; err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func GetUploadingFilesOlderThan(time time.Time) ([]model.UploadingFile, error) {
|
|
var files []model.UploadingFile
|
|
if err := db.Where("updated_at < ?", time).Find(&files).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return files, nil
|
|
}
|
|
|
|
func CreateFile(filename string, description string, resourceID uint, storageID *uint, storageKey string, redirectUrl string) (*model.File, error) {
|
|
if storageID == nil && redirectUrl == "" {
|
|
return nil, errors.New("storageID and redirectUrl cannot be both empty")
|
|
}
|
|
f := &model.File{
|
|
Filename: filename,
|
|
Description: description,
|
|
ResourceID: resourceID,
|
|
StorageID: storageID,
|
|
RedirectUrl: redirectUrl,
|
|
StorageKey: storageKey,
|
|
}
|
|
if err := db.Create(f).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
func GetFile(id uint) (*model.File, error) {
|
|
f := &model.File{}
|
|
if err := db.Preload("Storage").Where("id = ?", id).First(f).Error; err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return nil, model.NewNotFoundError("file not found")
|
|
}
|
|
return nil, err
|
|
}
|
|
return f, nil
|
|
}
|
|
|
|
func GetFilesByResourceID(rID uint) ([]model.File, error) {
|
|
var files []model.File
|
|
if err := db.Where("resource_id = ?", rID).Find(&files).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return files, nil
|
|
}
|
|
|
|
func DeleteFile(id uint) error {
|
|
f := &model.File{}
|
|
if err := db.Where("id = ?", id).First(f).Error; err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return model.NewNotFoundError("file not found")
|
|
}
|
|
return err
|
|
}
|
|
if err := db.Delete(f).Error; err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func UpdateFile(id uint, filename string, description string) (*model.File, error) {
|
|
f := &model.File{}
|
|
if err := db.Where("id = ?", id).First(f).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
if filename != "" {
|
|
f.Filename = filename
|
|
}
|
|
if description != "" {
|
|
f.Description = description
|
|
}
|
|
if err := db.Save(f).Error; err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return nil, model.NewNotFoundError("file not found")
|
|
}
|
|
return nil, err
|
|
}
|
|
return f, nil
|
|
}
|