mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
push modify
This commit is contained in:
parent
52e15fc9d4
commit
4b4dce80cf
@ -14,11 +14,9 @@ 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"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -58,22 +56,22 @@ func MsgToUser(sendPbData *pbRelay.MsgToUserReq, OfflineInfo, Options string) {
|
|||||||
for _, t := range pushTerminal {
|
for _, t := range pushTerminal {
|
||||||
if v.RecvPlatFormID == t {
|
if v.RecvPlatFormID == t {
|
||||||
//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)
|
||||||
pushResult, err := push.JGAccountListPush(UIDList, jsonCustomContent, utils.PlatformIDToName(t))
|
//pushResult, err := push.JGAccountListPush(UIDList, jsonCustomContent, utils.PlatformIDToName(t))
|
||||||
if err != nil {
|
//if err != nil {
|
||||||
log.NewError(sendPbData.OperationID, "offline push error", sendPbData.String(), err.Error(), t)
|
// log.NewError(sendPbData.OperationID, "offline push error", sendPbData.String(), err.Error(), t)
|
||||||
} else {
|
//} else {
|
||||||
log.NewDebug(sendPbData.OperationID, "offline push return result is ", string(pushResult), sendPbData, t)
|
// log.NewDebug(sendPbData.OperationID, "offline push return result is ", string(pushResult), sendPbData, t)
|
||||||
}
|
//}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user