tag and set private tips

This commit is contained in:
wangchuxiao 2022-04-01 14:43:31 +08:00
parent 0e27b302bc
commit a16a75230c
2 changed files with 21 additions and 9 deletions

View File

@ -555,13 +555,14 @@ notification:
conversation: conversation:
reliabilityLevel: 2 reliabilityLevel: 2
unreadCount: true unreadCount: true
offlinePush: offlinePush:
switch: true switch: true
title: "conversation was set to private " title: "burn after reading"
desc: "conversation was set to private " desc: "burn after reading"
ext: "conversation was set to private " ext: "burn after reading"
defaultTips: defaultTips:
tips: "conversation was set to private " openTips: "burn after reading was opened"
closeTips: "burn after reading was closed"

View File

@ -48,8 +48,19 @@ func ConversationSetPrivateNotification(operationID, sendID, recvID string, isPr
IsPrivate: isPrivateChat, IsPrivate: isPrivateChat,
} }
var tips open_im_sdk.TipsComm var tips open_im_sdk.TipsComm
strMap := map[bool]string{true: "true", false: "false"} var tipsMsg string
tips.DefaultTips = config.Config.Notification.ConversationSetPrivate.DefaultTips.Tips + strMap[isPrivateChat] + " by " + sendID //var senderName string
//senderName, err := im_mysql_model.GetUserNameByUserID(sendID)
//if err != nil {
// log.NewError(operationID, utils.GetSelfFuncName(), err.Error())
// senderName = sendID
//}
if isPrivateChat == true {
tipsMsg = config.Config.Notification.ConversationSetPrivate.DefaultTips.OpenTips
} else {
tipsMsg = config.Config.Notification.ConversationSetPrivate.DefaultTips.CloseTips
}
tips.DefaultTips = tipsMsg
SetConversationNotification(operationID, sendID, recvID, constant.ConversationPrivateChatNotification, conversationSetPrivateTips, tips) SetConversationNotification(operationID, sendID, recvID, constant.ConversationPrivateChatNotification, conversationSetPrivateTips, tips)
} }