Files
open-im-server/pkg/common/db/relation/group_model_k.go
T

78 lines
3.2 KiB
Go
Raw Normal View History

2023-01-28 13:19:36 +08:00
package relation
2023-01-04 17:21:33 +08:00
import (
2023-01-30 11:10:26 +08:00
"Open_IM/pkg/common/tracelog"
2023-01-04 17:21:33 +08:00
"Open_IM/pkg/utils"
2023-01-04 19:35:07 +08:00
"context"
2023-01-11 16:23:16 +08:00
"gorm.io/gorm"
2023-01-04 17:21:33 +08:00
"time"
)
type Group struct {
GroupID string `gorm:"column:group_id;primary_key;size:64" json:"groupID" binding:"required"`
GroupName string `gorm:"column:name;size:255" json:"groupName"`
Notification string `gorm:"column:notification;size:255" json:"notification"`
Introduction string `gorm:"column:introduction;size:255" json:"introduction"`
FaceURL string `gorm:"column:face_url;size:255" json:"faceURL"`
CreateTime time.Time `gorm:"column:create_time;index:create_time"`
Ex string `gorm:"column:ex" json:"ex;size:1024" json:"ex"`
Status int32 `gorm:"column:status"`
CreatorUserID string `gorm:"column:creator_user_id;size:64"`
GroupType int32 `gorm:"column:group_type"`
NeedVerification int32 `gorm:"column:need_verification"`
LookMemberInfo int32 `gorm:"column:look_member_info" json:"lookMemberInfo"`
ApplyMemberFriend int32 `gorm:"column:apply_member_friend" json:"applyMemberFriend"`
NotificationUpdateTime time.Time `gorm:"column:notification_update_time"`
NotificationUserID string `gorm:"column:notification_user_id;size:64"`
2023-01-16 20:14:26 +08:00
DB *gorm.DB
}
2023-01-28 13:19:36 +08:00
func NewGroupDB(db *gorm.DB) *Group {
2023-01-16 20:14:26 +08:00
var group Group
2023-01-28 18:46:42 +08:00
group.DB = db
2023-01-16 20:14:26 +08:00
return &group
2023-01-04 17:21:33 +08:00
}
2023-01-28 18:49:36 +08:00
func (g *Group) Create(ctx context.Context, groups []*Group, tx ...*gorm.DB) (err error) {
defer func() {
2023-01-30 11:10:26 +08:00
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "groups", groups)
}()
2023-01-29 10:42:58 +08:00
return utils.Wrap(getDBConn(g.DB, tx).Create(&groups).Error, "")
2023-01-04 17:21:33 +08:00
}
2023-01-17 16:36:34 +08:00
func (g *Group) Delete(ctx context.Context, groupIDs []string, tx ...*gorm.DB) (err error) {
defer func() {
2023-01-30 11:10:26 +08:00
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "groupIDs", groupIDs)
}()
2023-01-28 18:46:42 +08:00
return utils.Wrap(getDBConn(g.DB, tx).Where("group_id in (?)", groupIDs).Delete(&Group{}).Error, "")
2023-01-04 17:21:33 +08:00
}
2023-01-28 18:49:36 +08:00
func (g *Group) UpdateByMap(ctx context.Context, groupID string, args map[string]interface{}, tx ...*gorm.DB) (err error) {
defer func() {
2023-01-30 11:10:26 +08:00
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "groupID", groupID, "args", args)
}()
2023-01-28 18:49:36 +08:00
return utils.Wrap(getDBConn(g.DB, tx).Where("group_id = ?", groupID).Model(g).Updates(args).Error, "")
2023-01-04 17:21:33 +08:00
}
2023-01-17 17:47:13 +08:00
func (g *Group) Update(ctx context.Context, groups []*Group, tx ...*gorm.DB) (err error) {
defer func() {
2023-01-30 11:10:26 +08:00
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "groups", groups)
}()
2023-01-28 18:47:02 +08:00
return utils.Wrap(getDBConn(g.DB, tx).Updates(&groups).Error, "")
2023-01-04 17:21:33 +08:00
}
2023-01-28 18:49:36 +08:00
func (g *Group) Find(ctx context.Context, groupIDs []string, tx ...*gorm.DB) (groups []*Group, err error) {
defer func() {
2023-01-30 11:10:26 +08:00
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "groupIDs", groupIDs, "groups", groups)
}()
2023-01-29 10:42:58 +08:00
return groups, utils.Wrap(getDBConn(g.DB, tx).Where("group_id in (?)", groupIDs).Find(&groups).Error, "")
2023-01-04 17:21:33 +08:00
}
2023-01-28 18:49:36 +08:00
func (g *Group) Take(ctx context.Context, groupID string, tx ...*gorm.DB) (group *Group, err error) {
2023-01-04 19:35:07 +08:00
group = &Group{}
defer func() {
2023-01-30 11:10:26 +08:00
tracelog.SetCtxDebug(ctx, utils.GetFuncName(1), err, "groupID", groupID, "group", *group)
}()
2023-01-29 10:42:58 +08:00
return group, utils.Wrap(getDBConn(g.DB, tx).Where("group_id = ?", groupID).Take(group).Error, "")
2023-01-04 17:21:33 +08:00
}