pull/103/head
Gordon 3 years ago
parent fe80b7da5c
commit ad8bf93677

@ -14,9 +14,11 @@ import (
pbChat "Open_IM/src/proto/chat" pbChat "Open_IM/src/proto/chat"
pbGroup "Open_IM/src/proto/group" pbGroup "Open_IM/src/proto/group"
pbRelay "Open_IM/src/proto/relay" pbRelay "Open_IM/src/proto/relay"
push "Open_IM/src/push/jpush"
rpcChat "Open_IM/src/rpc/chat/chat" rpcChat "Open_IM/src/rpc/chat/chat"
"Open_IM/src/utils" "Open_IM/src/utils"
"context" "context"
"encoding/json"
"strings" "strings"
) )
@ -59,17 +61,17 @@ func MsgToUser(sendPbData *pbRelay.MsgToUserReq, OfflineInfo, Options string) {
} }
if isShouldOfflinePush { if isShouldOfflinePush {
//Use offline push messaging //Use offline push messaging
//var UIDList []string var UIDList []string
//UIDList = append(UIDList, sendPbData.RecvID) UIDList = append(UIDList, sendPbData.RecvID)
//customContent := EChatContent{ customContent := EChatContent{
// SessionType: int(sendPbData.SessionType), SessionType: int(sendPbData.SessionType),
// From: sendPbData.SendID, From: sendPbData.SendID,
// To: sendPbData.RecvID, To: sendPbData.RecvID,
// Seq: sendPbData.RecvSeq, Seq: sendPbData.RecvSeq,
//} }
//bCustomContent, _ := json.Marshal(customContent) bCustomContent, _ := json.Marshal(customContent)
//
//jsonCustomContent := string(bCustomContent) jsonCustomContent := string(bCustomContent)
//switch sendPbData.ContentType { //switch sendPbData.ContentType {
//case constant.Text: //case constant.Text:
// IOSAccountListPush(UIDList, sendPbData.SenderNickName, sendPbData.Content, jsonCustomContent) // IOSAccountListPush(UIDList, sendPbData.SenderNickName, sendPbData.Content, jsonCustomContent)
@ -84,7 +86,7 @@ func MsgToUser(sendPbData *pbRelay.MsgToUserReq, OfflineInfo, Options string) {
//default: //default:
// //
//} //}
//push.JGAccountListPush(UIDList,jsonCustomContent,utils.PlatformIDToName(t)) push.JGAccountListPush(UIDList, jsonCustomContent, utils.PlatformIDToName(t))
} else { } else {
isShouldOfflinePush = true isShouldOfflinePush = true

Loading…
Cancel
Save