by Robin at 20240927 #741

Merged
chenhao merged 1 commits from feat-IRONFANS-220-Robin into main 2024-09-27 15:09:36 +08:00
1 changed files with 21 additions and 14 deletions
Showing only changes of commit 6e3d0267be - Show all commits

View File

@ -594,31 +594,38 @@ func (s *Service) utilCancelAccountByMids(ctx *gin.Context, midList []int64) err
for _, account := range accounts {
phoneHash := strings.ToLower(util.DerefString(account.PhoneHash))
err = _DefaultAccount.OpUpdate(ctx, &accountproto.OpUpdateReq{
updateReq := &accountproto.OpUpdateReq{
Account: &dbstruct.Account{
Mid: account.Mid,
Name: goproto.String(cfg.Name),
PhoneHash: goproto.String(phoneHash),
MobilePhone: goproto.String(cfg.MobilePhone),
Avatar: &dbstruct.MediaComponent{
ImageIds: &imageIds,
},
Status: goproto.Int64(consts.AccountStatus_Cancelled),
Status: goproto.Int64(consts.AccountStatus_Cancelled),
},
})
}
// 非主播才修改名字和头像
if account.GetRole() != consts.Streamer {
updateReq.Account.Name = goproto.String(cfg.Name)
updateReq.Account.Avatar = &dbstruct.MediaComponent{
ImageIds: &imageIds,
}
}
err = _DefaultAccount.OpUpdate(ctx, updateReq)
if qmgo.IsDup(err) {
err = _DefaultAccount.OpUpdate(ctx, &accountproto.OpUpdateReq{
updateReq := &accountproto.OpUpdateReq{
Account: &dbstruct.Account{
Mid: account.Mid,
Name: goproto.String(cfg.Name),
PhoneHash: goproto.String(phoneHash + qmgo.NewObjectID().Hex()),
MobilePhone: goproto.String(cfg.MobilePhone),
Avatar: &dbstruct.MediaComponent{
ImageIds: &imageIds,
},
Status: goproto.Int64(consts.AccountStatus_Cancelled),
Status: goproto.Int64(consts.AccountStatus_Cancelled),
},
})
}
if account.GetRole() != consts.Streamer {
updateReq.Account.Name = goproto.String(cfg.Name)
updateReq.Account.Avatar = &dbstruct.MediaComponent{
ImageIds: &imageIds,
}
}
err = _DefaultAccount.OpUpdate(ctx, updateReq)
}
if err != nil {
logger.Error("_DefaultAccount OpUpdate fail, err: %v", err)