mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-04 21:09:51 +08:00
Fix: solve conversation blocking in private chat when non friendship. (#2542)
* refactor: refactor workflows contents. * add tool workflows. * update field. * fix: remove chat error. * Fix err. * fix error. * remove cn comment. * update workflows files. * update infra config. * move workflows. * feat: update bot. * fix: solve uncorrect outdated msg get. * update get docIDs logic. * update * update skip logic. * fix * update. * fix: update contribute cla. * fix: solve conversations bug.
This commit is contained in:
parent
0af207b625
commit
e70695077a
6
.github/workflows/cla-assistant.yml
vendored
6
.github/workflows/cla-assistant.yml
vendored
@ -33,8 +33,8 @@ jobs:
|
|||||||
remote-repository-name: cla
|
remote-repository-name: cla
|
||||||
create-file-commit-message: 'Creating file for storing CLA Signatures'
|
create-file-commit-message: 'Creating file for storing CLA Signatures'
|
||||||
# signed-commit-message: '$contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
|
# signed-commit-message: '$contributorName has signed the CLA in $owner/$repo#$pullRequestNo'
|
||||||
custom-notsigned-prcomment: '💕 Thank you for your contribution and please kindly read and sign our [CLA Docs](https://github.com/OpenIM-Robot/cla/blob/main/README.md)'
|
custom-notsigned-prcomment: '💕 Thank you for your contribution and please kindly read and sign our CLA. [CLA Docs](https://github.com/OpenIM-Robot/cla/blob/main/README.md)'
|
||||||
custom-pr-sign-comment: 'The signature to be committed in order to sign the CLA'
|
custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA'
|
||||||
custom-allsigned-prcomment: '🤖 All Contributors have signed the [CLA](https://github.com/OpenIM-Robot/cla/blob/main/README.md).<br> The signed information is recorded [🤖here](https://github.com/openim-sigs/cla/tree/main/signatures/cla.json)'
|
custom-allsigned-prcomment: '🤖 All Contributors have signed the [CLA](https://github.com/OpenIM-Robot/cla/blob/main/README.md).<br> The signed information is recorded [**here**](https://github.com/OpenIM-Robot/cla/blob/main/signatures/cla.json)'
|
||||||
#lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true)
|
#lock-pullrequest-aftermerge: false - if you don't want this bot to automatically lock the pull request after merging (default - true)
|
||||||
#use-dco-flag: true - If you are using DCO instead of CLA
|
#use-dco-flag: true - If you are using DCO instead of CLA
|
||||||
|
@ -77,7 +77,7 @@ git push origin fix-bug-123
|
|||||||
### 9. 签署 CLA
|
### 9. 签署 CLA
|
||||||
如果这是你第一次提交 PR,你需要在 PR 的评论中回复:
|
如果这是你第一次提交 PR,你需要在 PR 的评论中回复:
|
||||||
```
|
```
|
||||||
The signature to be committed in order to sign the CLA
|
I have read the CLA Document and I hereby sign the CLA
|
||||||
```
|
```
|
||||||
|
|
||||||
### 编程规范
|
### 编程规范
|
||||||
|
@ -75,7 +75,7 @@ Go to your fork on GitHub and click the "Pull Request" button. Ensure the PR des
|
|||||||
### 9. Sign the CLA
|
### 9. Sign the CLA
|
||||||
If this is your first time submitting a PR, you will need to reply in the comments of the PR:
|
If this is your first time submitting a PR, you will need to reply in the comments of the PR:
|
||||||
```
|
```
|
||||||
The signature to be committed in order to sign the CLA
|
I have read the CLA Document and I hereby sign the CLA
|
||||||
```
|
```
|
||||||
|
|
||||||
### Programming Standards
|
### Programming Standards
|
||||||
|
@ -247,6 +247,7 @@ func (c *conversationServer) SetConversations(ctx context.Context, req *pbconver
|
|||||||
}
|
}
|
||||||
conv = *cs[0]
|
conv = *cs[0]
|
||||||
}
|
}
|
||||||
|
|
||||||
var conversation dbModel.Conversation
|
var conversation dbModel.Conversation
|
||||||
conversation.ConversationID = req.Conversation.ConversationID
|
conversation.ConversationID = req.Conversation.ConversationID
|
||||||
conversation.ConversationType = req.Conversation.ConversationType
|
conversation.ConversationType = req.Conversation.ConversationType
|
||||||
@ -259,12 +260,14 @@ func (c *conversationServer) SetConversations(ctx context.Context, req *pbconver
|
|||||||
unequal++
|
unequal++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.Conversation.AttachedInfo != nil {
|
if req.Conversation.AttachedInfo != nil {
|
||||||
m["attached_info"] = req.Conversation.AttachedInfo.Value
|
m["attached_info"] = req.Conversation.AttachedInfo.Value
|
||||||
if req.Conversation.AttachedInfo.Value != conv.AttachedInfo {
|
if req.Conversation.AttachedInfo.Value != conv.AttachedInfo {
|
||||||
unequal++
|
unequal++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.Conversation.Ex != nil {
|
if req.Conversation.Ex != nil {
|
||||||
m["ex"] = req.Conversation.Ex.Value
|
m["ex"] = req.Conversation.Ex.Value
|
||||||
if req.Conversation.Ex.Value != conv.Ex {
|
if req.Conversation.Ex.Value != conv.Ex {
|
||||||
@ -277,24 +280,48 @@ func (c *conversationServer) SetConversations(ctx context.Context, req *pbconver
|
|||||||
unequal++
|
unequal++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.Conversation.GroupAtType != nil {
|
if req.Conversation.GroupAtType != nil {
|
||||||
m["group_at_type"] = req.Conversation.GroupAtType.Value
|
m["group_at_type"] = req.Conversation.GroupAtType.Value
|
||||||
if req.Conversation.GroupAtType.Value != conv.GroupAtType {
|
if req.Conversation.GroupAtType.Value != conv.GroupAtType {
|
||||||
unequal++
|
unequal++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.Conversation.MsgDestructTime != nil {
|
if req.Conversation.MsgDestructTime != nil {
|
||||||
m["msg_destruct_time"] = req.Conversation.MsgDestructTime.Value
|
m["msg_destruct_time"] = req.Conversation.MsgDestructTime.Value
|
||||||
if req.Conversation.MsgDestructTime.Value != conv.MsgDestructTime {
|
if req.Conversation.MsgDestructTime.Value != conv.MsgDestructTime {
|
||||||
unequal++
|
unequal++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.Conversation.IsMsgDestruct != nil {
|
if req.Conversation.IsMsgDestruct != nil {
|
||||||
m["is_msg_destruct"] = req.Conversation.IsMsgDestruct.Value
|
m["is_msg_destruct"] = req.Conversation.IsMsgDestruct.Value
|
||||||
if req.Conversation.IsMsgDestruct.Value != conv.IsMsgDestruct {
|
if req.Conversation.IsMsgDestruct.Value != conv.IsMsgDestruct {
|
||||||
unequal++
|
unequal++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if req.Conversation.BurnDuration != nil {
|
||||||
|
m["burn_duration"] = req.Conversation.BurnDuration.Value
|
||||||
|
if req.Conversation.BurnDuration.Value != conv.BurnDuration {
|
||||||
|
unequal++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(m) != 0 {
|
||||||
|
if err := c.conversationDatabase.SetUsersConversationFieldTx(ctx, req.UserIDs, &conversation, m); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if unequal > 0 {
|
||||||
|
for _, v := range req.UserIDs {
|
||||||
|
c.conversationNotificationSender.ConversationChangeNotification(ctx, v, []string{req.Conversation.ConversationID})
|
||||||
|
}
|
||||||
|
return &pbconversation.SetConversationsResp{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
if req.Conversation.IsPrivateChat != nil && req.Conversation.ConversationType != constant.ReadGroupChatType {
|
if req.Conversation.IsPrivateChat != nil && req.Conversation.ConversationType != constant.ReadGroupChatType {
|
||||||
var conversations []*dbModel.Conversation
|
var conversations []*dbModel.Conversation
|
||||||
for _, ownerUserID := range req.UserIDs {
|
for _, ownerUserID := range req.UserIDs {
|
||||||
@ -313,23 +340,6 @@ func (c *conversationServer) SetConversations(ctx context.Context, req *pbconver
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.Conversation.BurnDuration != nil {
|
|
||||||
m["burn_duration"] = req.Conversation.BurnDuration.Value
|
|
||||||
if req.Conversation.BurnDuration.Value != conv.BurnDuration {
|
|
||||||
unequal++
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := c.conversationDatabase.SetUsersConversationFieldTx(ctx, req.UserIDs, &conversation, m); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if unequal > 0 {
|
|
||||||
for _, v := range req.UserIDs {
|
|
||||||
c.conversationNotificationSender.ConversationChangeNotification(ctx, v, []string{req.Conversation.ConversationID})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return &pbconversation.SetConversationsResp{}, nil
|
return &pbconversation.SetConversationsResp{}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user