mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-24 18:36:19 +08:00
msg update
This commit is contained in:
parent
36d1585609
commit
9b4af25e26
@ -6,7 +6,9 @@
|
|||||||
*/
|
*/
|
||||||
package content_struct
|
package content_struct
|
||||||
|
|
||||||
import "encoding/json"
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
)
|
||||||
|
|
||||||
type Content struct {
|
type Content struct {
|
||||||
IsDisplay int32 `json:"isDisplay"`
|
IsDisplay int32 `json:"isDisplay"`
|
||||||
@ -23,3 +25,36 @@ func (c *Content) contentToString() string {
|
|||||||
dataString := string(data)
|
dataString := string(data)
|
||||||
return dataString
|
return dataString
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type groupMemberFullInfo struct {
|
||||||
|
GroupId string `json:"groupID"`
|
||||||
|
UserId string `json:"userId"`
|
||||||
|
Role int `json:"role"`
|
||||||
|
JoinTime uint64 `json:"joinTime"`
|
||||||
|
NickName string `json:"nickName"`
|
||||||
|
FaceUrl string `json:"faceUrl"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type AgreeOrRejectGroupMember struct {
|
||||||
|
GroupId string `json:"groupID"`
|
||||||
|
UserId string `json:"userId"`
|
||||||
|
Role int `json:"role"`
|
||||||
|
JoinTime uint64 `json:"joinTime"`
|
||||||
|
NickName string `json:"nickName"`
|
||||||
|
FaceUrl string `json:"faceUrl"`
|
||||||
|
Reason string `json:"reason"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateGroupSysMsg struct {
|
||||||
|
uIdCreator string `creatorUid`
|
||||||
|
initMemberList []groupMemberFullInfo `json: initMemberList`
|
||||||
|
CreateTime uint64 `json:"CreateTime"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewCreateGroupSysMsgString(create *CreateGroupSysMsg, text string) string {
|
||||||
|
create.Text = text
|
||||||
|
jstring, _ := json.Marshal(create)
|
||||||
|
|
||||||
|
return string(jstring)
|
||||||
|
}
|
||||||
|
@ -8,12 +8,9 @@ package logic
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"Open_IM/src/common/config"
|
"Open_IM/src/common/config"
|
||||||
"Open_IM/src/common/db"
|
|
||||||
"Open_IM/src/common/db/mysql_model/im_mysql_model"
|
|
||||||
"Open_IM/src/common/kafka"
|
"Open_IM/src/common/kafka"
|
||||||
"Open_IM/src/common/log"
|
"Open_IM/src/common/log"
|
||||||
"Open_IM/src/utils"
|
"Open_IM/src/utils"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -35,32 +32,5 @@ func init() {
|
|||||||
|
|
||||||
func Run() {
|
func Run() {
|
||||||
go rpcServer.run()
|
go rpcServer.run()
|
||||||
go scheduleDelete()
|
|
||||||
go pushCh.pushConsumerGroup.RegisterHandleAndConsumer(&pushCh)
|
go pushCh.pushConsumerGroup.RegisterHandleAndConsumer(&pushCh)
|
||||||
}
|
}
|
||||||
|
|
||||||
func scheduleDelete() {
|
|
||||||
//uid, _ := im_mysql_model.SelectAllUID()
|
|
||||||
//db.DB.DelHistoryChat(0, uid)
|
|
||||||
//log.Info("", "", "sssssssssss")
|
|
||||||
//if err != nil {
|
|
||||||
// db.DB.DelHistoryChat(0, uid)
|
|
||||||
//}
|
|
||||||
|
|
||||||
for {
|
|
||||||
now := time.Now()
|
|
||||||
// 计算下一个零点
|
|
||||||
next := now.Add(time.Hour * 24)
|
|
||||||
next = time.Date(next.Year(), next.Month(), next.Day(), 0, 0, 0, 0, next.Location())
|
|
||||||
t := time.NewTimer(next.Sub(now))
|
|
||||||
<-t.C
|
|
||||||
|
|
||||||
uid, err := im_mysql_model.SelectAllUID()
|
|
||||||
if err != nil {
|
|
||||||
db.DB.DelHistoryChat(int64(config.Config.Mongo.DBRetainChatRecords), uid)
|
|
||||||
}
|
|
||||||
|
|
||||||
//以下为定时执行的操作
|
|
||||||
scheduleDelete()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -11,6 +11,7 @@ import (
|
|||||||
"Open_IM/src/common/constant"
|
"Open_IM/src/common/constant"
|
||||||
"Open_IM/src/common/log"
|
"Open_IM/src/common/log"
|
||||||
pbChat "Open_IM/src/proto/chat"
|
pbChat "Open_IM/src/proto/chat"
|
||||||
|
pbGroup "Open_IM/src/proto/group"
|
||||||
pbRelay "Open_IM/src/proto/relay"
|
pbRelay "Open_IM/src/proto/relay"
|
||||||
pbGetInfo "Open_IM/src/proto/user"
|
pbGetInfo "Open_IM/src/proto/user"
|
||||||
rpcChat "Open_IM/src/rpc/chat/chat"
|
rpcChat "Open_IM/src/rpc/chat/chat"
|
||||||
@ -33,19 +34,25 @@ type EChatContent struct {
|
|||||||
func MsgToUser(sendPbData *pbRelay.MsgToUserReq, OfflineInfo, Options string) {
|
func MsgToUser(sendPbData *pbRelay.MsgToUserReq, OfflineInfo, Options string) {
|
||||||
var wsResult []*pbRelay.SingleMsgToUser
|
var wsResult []*pbRelay.SingleMsgToUser
|
||||||
isShouldOfflinePush := true
|
isShouldOfflinePush := true
|
||||||
MOptions := utils.JsonStringToMap(Options)
|
MOptions := utils.JsonStringToMap(Options) //Control whether to push message to sender's other terminal
|
||||||
|
//isSenderSync := utils.GetSwitchFromOptions(MOptions, "senderSync")
|
||||||
isOfflinePush := utils.GetSwitchFromOptions(MOptions, "offlinePush")
|
isOfflinePush := utils.GetSwitchFromOptions(MOptions, "offlinePush")
|
||||||
log.InfoByKv("Get chat from msg_transfer And push chat", sendPbData.OperationID, "PushData", sendPbData)
|
log.InfoByKv("Get chat from msg_transfer And push chat", sendPbData.OperationID, "PushData", sendPbData)
|
||||||
grpcCons := getcdv3.GetConn4Unique(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImOnlineMessageRelayName)
|
grpcCons := getcdv3.GetConn4Unique(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImOnlineMessageRelayName)
|
||||||
//Online push message
|
//Online push message
|
||||||
|
log.InfoByKv("test", sendPbData.OperationID, "len grpc", len(grpcCons), "data", sendPbData)
|
||||||
for _, v := range grpcCons {
|
for _, v := range grpcCons {
|
||||||
msgClient := pbRelay.NewOnlineMessageRelayServiceClient(v)
|
msgClient := pbRelay.NewOnlineMessageRelayServiceClient(v)
|
||||||
reply, err := msgClient.MsgToUser(context.Background(), sendPbData)
|
reply, err := msgClient.MsgToUser(context.Background(), sendPbData)
|
||||||
|
if err != nil {
|
||||||
|
log.InfoByKv("push data to client rpc err", sendPbData.OperationID, "err", err)
|
||||||
|
}
|
||||||
if reply != nil && reply.Resp != nil && err == nil {
|
if reply != nil && reply.Resp != nil && err == nil {
|
||||||
wsResult = append(wsResult, reply.Resp...)
|
wsResult = append(wsResult, reply.Resp...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if isOfflinePush && sendPbData.ContentType != constant.SyncSenderMsg {
|
log.InfoByKv("push_result", sendPbData.OperationID, "result", wsResult)
|
||||||
|
if isOfflinePush {
|
||||||
|
|
||||||
for _, t := range pushTerminal {
|
for _, t := range pushTerminal {
|
||||||
for _, v := range wsResult {
|
for _, v := range wsResult {
|
||||||
@ -101,12 +108,41 @@ func MsgToUser(sendPbData *pbRelay.MsgToUserReq, OfflineInfo, Options string) {
|
|||||||
|
|
||||||
func SendMsgByWS(m *pbChat.WSToMsgSvrChatMsg) {
|
func SendMsgByWS(m *pbChat.WSToMsgSvrChatMsg) {
|
||||||
m.MsgID = rpcChat.GetMsgID(m.SendID)
|
m.MsgID = rpcChat.GetMsgID(m.SendID)
|
||||||
pid, offset, err := producer.SendMessage(m, m.SendID)
|
switch m.SessionType {
|
||||||
if err != nil {
|
case constant.SingleChatType:
|
||||||
log.ErrorByKv("sys send msg to kafka failed", m.OperationID, "send data", m.String(), "pid", pid, "offset", offset, "err", err.Error(), "msgKey--sendID", m.SendID)
|
sendMsgToKafka(m, m.SendID, "msgKey--sendID")
|
||||||
|
sendMsgToKafka(m, m.RecvID, "msgKey--recvID")
|
||||||
|
case constant.GroupChatType:
|
||||||
|
etcdConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImGroupName)
|
||||||
|
client := pbGroup.NewGroupClient(etcdConn)
|
||||||
|
req := &pbGroup.GetGroupAllMemberReq{
|
||||||
|
GroupID: m.RecvID,
|
||||||
|
Token: config.Config.Secret,
|
||||||
|
OperationID: m.OperationID,
|
||||||
}
|
}
|
||||||
pid, offset, err = producer.SendMessage(m, m.RecvID)
|
reply, err := client.GetGroupAllMember(context.Background(), req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.ErrorByKv("kafka send failed", m.OperationID, "send data", m.String(), "pid", pid, "offset", offset, "err", err.Error(), "msgKey--recvID", m.RecvID)
|
log.Error(m.Token, m.OperationID, "rpc getGroupInfo failed, err = %s", err.Error())
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
if reply.ErrorCode != 0 {
|
||||||
|
log.Error(m.Token, m.OperationID, "rpc getGroupInfo failed, err = %s", reply.ErrorMsg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
groupID := m.RecvID
|
||||||
|
for _, v := range reply.MemberList {
|
||||||
|
m.RecvID = v.UserId + " " + groupID
|
||||||
|
sendMsgToKafka(m, m.RecvID, "msgKey--recvID+\" \"+groupID")
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
func sendMsgToKafka(m *pbChat.WSToMsgSvrChatMsg, key string, flag string) {
|
||||||
|
pid, offset, err := producer.SendMessage(m, key)
|
||||||
|
if err != nil {
|
||||||
|
log.ErrorByKv("kafka send failed", m.OperationID, "send data", m.String(), "pid", pid, "offset", offset, "err", err.Error(), flag, key)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user