mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-01 07:03:15 +08:00
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package relation
|
|
|
|
import (
|
|
"OpenIM/pkg/common/db/table/relation"
|
|
"OpenIM/pkg/common/tracelog"
|
|
"OpenIM/pkg/utils"
|
|
"context"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
func NewObjectPut(db *gorm.DB) relation.ObjectPutModelInterface {
|
|
return &ObjectPutGorm{
|
|
DB: db,
|
|
}
|
|
}
|
|
|
|
type ObjectPutGorm struct {
|
|
DB *gorm.DB
|
|
}
|
|
|
|
func (o *ObjectPutGorm) NewTx(tx any) relation.ObjectPutModelInterface {
|
|
return &ObjectPutGorm{
|
|
DB: tx.(*gorm.DB),
|
|
}
|
|
}
|
|
|
|
func (o *ObjectPutGorm) Create(ctx context.Context, m []*relation.ObjectPutModel) (err error) {
|
|
defer func() {
|
|
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "objectPut", m)
|
|
}()
|
|
return utils.Wrap1(o.DB.Create(m).Error)
|
|
}
|
|
|
|
func (o *ObjectPutGorm) Take(ctx context.Context, putID string) (put *relation.ObjectPutModel, err error) {
|
|
defer func() {
|
|
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "putID", putID, "put", put)
|
|
}()
|
|
put = &relation.ObjectPutModel{}
|
|
return put, utils.Wrap1(o.DB.Where("put_id = ?", putID).Take(put).Error)
|
|
}
|
|
|
|
func (o *ObjectPutGorm) SetCompleted(ctx context.Context, putID string) (err error) {
|
|
defer func() {
|
|
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "putID", putID)
|
|
}()
|
|
return utils.Wrap1(o.DB.Model(&relation.ObjectPutModel{}).Where("put_id = ?", putID).Update("complete", true).Error)
|
|
}
|