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.
53 lines
1.5 KiB
53 lines
1.5 KiB
package relation
|
|
|
|
import (
|
|
"OpenIM/pkg/common/db/table/relation"
|
|
"OpenIM/pkg/common/tracelog"
|
|
"OpenIM/pkg/utils"
|
|
"context"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func NewObjectHash(db *gorm.DB) relation.ObjectHashModelInterface {
|
|
return &ObjectHashGorm{
|
|
DB: db,
|
|
}
|
|
}
|
|
|
|
type ObjectHashGorm struct {
|
|
DB *gorm.DB
|
|
}
|
|
|
|
func (o *ObjectHashGorm) NewTx(tx any) relation.ObjectHashModelInterface {
|
|
return &ObjectHashGorm{
|
|
DB: tx.(*gorm.DB),
|
|
}
|
|
}
|
|
|
|
func (o *ObjectHashGorm) Take(ctx context.Context, hash string, engine string) (oh *relation.ObjectHashModel, err error) {
|
|
defer func() {
|
|
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "hash", hash, "engine", engine, "objectHash", oh)
|
|
}()
|
|
oh = &relation.ObjectHashModel{}
|
|
return oh, utils.Wrap1(o.DB.Where("hash = ? and engine = ?", hash, engine).Take(oh).Error)
|
|
}
|
|
|
|
func (o *ObjectHashGorm) Create(ctx context.Context, h []*relation.ObjectHashModel) (err error) {
|
|
defer func() {
|
|
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "objectHash", h)
|
|
}()
|
|
return utils.Wrap1(o.DB.Create(h).Error)
|
|
}
|
|
|
|
func (o *ObjectHashGorm) DeleteNoCitation(ctx context.Context, engine string, num int) (list []*relation.ObjectHashModel, err error) {
|
|
defer func() {
|
|
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "engine", engine, "num", num, "objectHash", list)
|
|
}()
|
|
err = o.DB.Table(relation.ObjectHashModelTableName, "as h").Select("h.*").
|
|
Joins("LEFT JOIN "+relation.ObjectInfoModelTableName+" as i ON h.hash = i.hash").
|
|
Where("h.engine = ? AND i.hash IS NULL", engine).
|
|
Limit(num).
|
|
Find(&list).Error
|
|
return list, utils.Wrap1(err)
|
|
}
|