mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			95 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	_ "github.com/go-sql-driver/mysql"
 | 
						|
	"github.com/iwind/TeaGo/Tea"
 | 
						|
	"github.com/iwind/TeaGo/dbs"
 | 
						|
	"github.com/iwind/TeaGo/types"
 | 
						|
)
 | 
						|
 | 
						|
type FileChunkDAO dbs.DAO
 | 
						|
 | 
						|
func NewFileChunkDAO() *FileChunkDAO {
 | 
						|
	return dbs.NewDAO(&FileChunkDAO{
 | 
						|
		DAOObject: dbs.DAOObject{
 | 
						|
			DB:     Tea.Env,
 | 
						|
			Table:  "edgeFileChunks",
 | 
						|
			Model:  new(FileChunk),
 | 
						|
			PkName: "id",
 | 
						|
		},
 | 
						|
	}).(*FileChunkDAO)
 | 
						|
}
 | 
						|
 | 
						|
var SharedFileChunkDAO *FileChunkDAO
 | 
						|
 | 
						|
func init() {
 | 
						|
	dbs.OnReady(func() {
 | 
						|
		SharedFileChunkDAO = NewFileChunkDAO()
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
// 创建文件Chunk
 | 
						|
func (this *FileChunkDAO) CreateFileChunk(tx *dbs.Tx, fileId int64, data []byte) (int64, error) {
 | 
						|
	op := NewFileChunkOperator()
 | 
						|
	op.FileId = fileId
 | 
						|
	op.Data = data
 | 
						|
	err := this.Save(tx, op)
 | 
						|
	if err != nil {
 | 
						|
		return 0, err
 | 
						|
	}
 | 
						|
	return types.Int64(op.Id), nil
 | 
						|
}
 | 
						|
 | 
						|
// 列出所有的文件Chunk
 | 
						|
func (this *FileChunkDAO) FindAllFileChunks(tx *dbs.Tx, fileId int64) (result []*FileChunk, err error) {
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Attr("fileId", fileId).
 | 
						|
		AscPk().
 | 
						|
		Slice(&result).
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// 读取文件的所有片段ID
 | 
						|
func (this *FileChunkDAO) FindAllFileChunkIds(tx *dbs.Tx, fileId int64) ([]int64, error) {
 | 
						|
	ones, err := this.Query(tx).
 | 
						|
		Attr("fileId", fileId).
 | 
						|
		AscPk().
 | 
						|
		ResultPk().
 | 
						|
		FindAll()
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	result := []int64{}
 | 
						|
	for _, one := range ones {
 | 
						|
		result = append(result, int64(one.(*FileChunk).Id))
 | 
						|
	}
 | 
						|
	return result, nil
 | 
						|
}
 | 
						|
 | 
						|
// 删除以前的文件
 | 
						|
func (this *FileChunkDAO) DeleteFileChunks(tx *dbs.Tx, fileId int64) error {
 | 
						|
	if fileId <= 0 {
 | 
						|
		return errors.New("invalid fileId")
 | 
						|
	}
 | 
						|
	_, err := this.Query(tx).
 | 
						|
		Attr("fileId", fileId).
 | 
						|
		Delete()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 根据ID查找片段
 | 
						|
func (this *FileChunkDAO) FindFileChunk(tx *dbs.Tx, chunkId int64) (*FileChunk, error) {
 | 
						|
	one, err := this.Query(tx).
 | 
						|
		Pk(chunkId).
 | 
						|
		Find()
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if one == nil {
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
	return one.(*FileChunk), nil
 | 
						|
}
 |