mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
** description("").
 | 
						|
** copyright('Open_IM,www.Open_IM.io').
 | 
						|
** author("fg,Gordon@tuoyun.net").
 | 
						|
** time(2021/5/13 10:33).
 | 
						|
 */
 | 
						|
package logic
 | 
						|
 | 
						|
import (
 | 
						|
	"Open_IM/pkg/common/config"
 | 
						|
	kfk "Open_IM/pkg/common/kafka"
 | 
						|
	"Open_IM/pkg/common/log"
 | 
						|
	pbChat "Open_IM/pkg/proto/chat"
 | 
						|
	pbRelay "Open_IM/pkg/proto/relay"
 | 
						|
	"github.com/Shopify/sarama"
 | 
						|
	"github.com/golang/protobuf/proto"
 | 
						|
)
 | 
						|
 | 
						|
type fcb func(msg []byte)
 | 
						|
 | 
						|
type PushConsumerHandler struct {
 | 
						|
	msgHandle         map[string]fcb
 | 
						|
	pushConsumerGroup *kfk.MConsumerGroup
 | 
						|
}
 | 
						|
 | 
						|
func (ms *PushConsumerHandler) Init() {
 | 
						|
	ms.msgHandle = make(map[string]fcb)
 | 
						|
	ms.msgHandle[config.Config.Kafka.Ms2pschat.Topic] = ms.handleMs2PsChat
 | 
						|
	ms.pushConsumerGroup = kfk.NewMConsumerGroup(&kfk.MConsumerGroupConfig{KafkaVersion: sarama.V0_10_2_0,
 | 
						|
		OffsetsInitial: sarama.OffsetNewest, IsReturnErr: false}, []string{config.Config.Kafka.Ms2pschat.Topic}, config.Config.Kafka.Ms2pschat.Addr,
 | 
						|
		config.Config.Kafka.ConsumerGroupID.MsgToPush)
 | 
						|
}
 | 
						|
func (ms *PushConsumerHandler) handleMs2PsChat(msg []byte) {
 | 
						|
	log.InfoByKv("msg come from kafka  And push!!!", "", "msg", string(msg))
 | 
						|
	pbData := pbChat.MsgSvrToPushSvrChatMsg{}
 | 
						|
	if err := proto.Unmarshal(msg, &pbData); err != nil {
 | 
						|
		log.ErrorByKv("push Unmarshal msg err", "", "msg", string(msg), "err", err.Error())
 | 
						|
		return
 | 
						|
	}
 | 
						|
	sendPbData := pbRelay.MsgToUserReq{}
 | 
						|
	sendPbData.SendTime = pbData.SendTime
 | 
						|
	sendPbData.OperationID = pbData.OperationID
 | 
						|
	sendPbData.ServerMsgID = pbData.MsgID
 | 
						|
	sendPbData.MsgFrom = pbData.MsgFrom
 | 
						|
	sendPbData.ContentType = pbData.ContentType
 | 
						|
	sendPbData.SessionType = pbData.SessionType
 | 
						|
	sendPbData.RecvID = pbData.RecvID
 | 
						|
	sendPbData.Content = pbData.Content
 | 
						|
	sendPbData.SendID = pbData.SendID
 | 
						|
	sendPbData.SenderNickName = pbData.SenderNickName
 | 
						|
	sendPbData.SenderFaceURL = pbData.SenderFaceURL
 | 
						|
	sendPbData.ClientMsgID = pbData.ClientMsgID
 | 
						|
	sendPbData.PlatformID = pbData.PlatformID
 | 
						|
	sendPbData.RecvSeq = pbData.RecvSeq
 | 
						|
	//Call push module to send message to the user
 | 
						|
	MsgToUser(&sendPbData, pbData.OfflineInfo, pbData.Options)
 | 
						|
}
 | 
						|
func (PushConsumerHandler) Setup(_ sarama.ConsumerGroupSession) error   { return nil }
 | 
						|
func (PushConsumerHandler) Cleanup(_ sarama.ConsumerGroupSession) error { return nil }
 | 
						|
func (ms *PushConsumerHandler) ConsumeClaim(sess sarama.ConsumerGroupSession,
 | 
						|
	claim sarama.ConsumerGroupClaim) error {
 | 
						|
	for msg := range claim.Messages() {
 | 
						|
		log.InfoByKv("kafka get info to mysql", "", "msgTopic", msg.Topic, "msgPartition", msg.Partition, "msg", string(msg.Value))
 | 
						|
		ms.msgHandle[msg.Topic](msg.Value)
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |