parent
e3d907f113
commit
4dccfd0a81
@ -1,133 +1,37 @@
|
|||||||
package unrelation
|
package unrelation
|
||||||
|
|
||||||
import (
|
import "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
|
||||||
"context"
|
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
|
type MsgModel struct {
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
|
SendID string `bson:"send_id"`
|
||||||
"strconv"
|
RecvID string `bson:"recv_id"`
|
||||||
"strings"
|
GroupID string `bson:"group_id"`
|
||||||
)
|
ClientMsgID string `bson:"client_msg_id"` // 客户端消息ID
|
||||||
|
ServerMsgID string `bson:"server_msg_id"` // 服务端消息ID
|
||||||
const (
|
SenderPlatformID int32 `bson:"sender_platform_id"`
|
||||||
singleGocMsgNum = 5000
|
SenderNickname string `bson:"sender_nickname"`
|
||||||
Msg = "msg"
|
SenderFaceURL string `bson:"sender_face_url"`
|
||||||
OldestList = 0
|
SessionType int32 `bson:"session_type"`
|
||||||
NewestList = -1
|
MsgFrom int32 `bson:"msg_from"`
|
||||||
)
|
ContentType int32 `bson:"contentType"`
|
||||||
|
Content []byte `bson:"content"`
|
||||||
type MsgDocModel struct {
|
Seq int64 `bson:"seq"`
|
||||||
DocID string `bson:"uid"`
|
SendTime int64 `bson:"sendTime"`
|
||||||
Msg []MsgInfoModel `bson:"msg"`
|
CreateTime int64 `bson:"createTime"`
|
||||||
}
|
Status int32 `bson:"status"`
|
||||||
|
Options map[string]bool `bson:"options"`
|
||||||
type MsgInfoModel struct {
|
OfflinePushInfo *sdkws.OfflinePushInfo `bson:"offlinePushInfo"`
|
||||||
SendTime int64 `bson:"sendtime"`
|
AtUserIDList []string `bson:"atUserIDList"`
|
||||||
Msg []byte `bson:"msg"`
|
MsgDataList []byte `bson:"msgDataList"`
|
||||||
}
|
AttachedInfo string `bson:"attachedInfo"`
|
||||||
|
Ex string `bson:"ex"`
|
||||||
type MsgDocModelInterface interface {
|
}
|
||||||
PushMsgsToDoc(ctx context.Context, docID string, msgsToMongo []MsgInfoModel) error
|
|
||||||
Create(ctx context.Context, model *MsgDocModel) error
|
type ReadDiffusionMsgModel struct {
|
||||||
UpdateMsgStatusByIndexInOneDoc(ctx context.Context, docID string, msg *sdkws.MsgData, seqIndex int, status int32) error
|
*MsgModel
|
||||||
FindOneByDocID(ctx context.Context, docID string) (*MsgDocModel, error)
|
}
|
||||||
GetNewestMsg(ctx context.Context, sourceID string) (*MsgInfoModel, error)
|
|
||||||
GetOldestMsg(ctx context.Context, sourceID string) (*MsgInfoModel, error)
|
type WriteDiffusionMsgModel struct {
|
||||||
Delete(ctx context.Context, docIDs []string) error
|
*MsgModel
|
||||||
GetMsgsByIndex(ctx context.Context, sourceID string, index int64) (*MsgDocModel, error)
|
UserID string `bson:"user_id"`
|
||||||
UpdateOneDoc(ctx context.Context, msg *MsgDocModel) error
|
|
||||||
}
|
|
||||||
|
|
||||||
func (MsgDocModel) TableName() string {
|
|
||||||
return Msg
|
|
||||||
}
|
|
||||||
|
|
||||||
func (MsgDocModel) GetSingleGocMsgNum() int64 {
|
|
||||||
return singleGocMsgNum
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *MsgDocModel) IsFull() bool {
|
|
||||||
index, _ := strconv.Atoi(strings.Split(m.DocID, ":")[1])
|
|
||||||
if index == 0 {
|
|
||||||
if len(m.Msg) >= singleGocMsgNum-1 {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if len(m.Msg) >= singleGocMsgNum {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) GetDocID(sourceID string, seq int64) string {
|
|
||||||
seqSuffix := seq / singleGocMsgNum
|
|
||||||
return m.indexGen(sourceID, seqSuffix)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) GetSeqDocIDList(userID string, maxSeq int64) []string {
|
|
||||||
seqMaxSuffix := maxSeq / singleGocMsgNum
|
|
||||||
var seqUserIDs []string
|
|
||||||
for i := 0; i <= int(seqMaxSuffix); i++ {
|
|
||||||
seqUserID := m.indexGen(userID, int64(i))
|
|
||||||
seqUserIDs = append(seqUserIDs, seqUserID)
|
|
||||||
}
|
|
||||||
return seqUserIDs
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) getSeqSuperGroupID(groupID string, seq int64) string {
|
|
||||||
seqSuffix := seq / singleGocMsgNum
|
|
||||||
return m.superGroupIndexGen(groupID, seqSuffix)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) superGroupIndexGen(groupID string, seqSuffix int64) string {
|
|
||||||
return "super_group_" + groupID + ":" + strconv.FormatInt(int64(seqSuffix), 10)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) GetDocIDSeqsMap(sourceID string, seqs []int64) map[string][]int64 {
|
|
||||||
t := make(map[string][]int64)
|
|
||||||
for i := 0; i < len(seqs); i++ {
|
|
||||||
docID := m.GetDocID(sourceID, seqs[i])
|
|
||||||
if value, ok := t[docID]; !ok {
|
|
||||||
var temp []int64
|
|
||||||
t[docID] = append(temp, seqs[i])
|
|
||||||
} else {
|
|
||||||
t[docID] = append(value, seqs[i])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return t
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) getMsgIndex(seq uint32) int {
|
|
||||||
seqSuffix := seq / singleGocMsgNum
|
|
||||||
var index uint32
|
|
||||||
if seqSuffix == 0 {
|
|
||||||
index = (seq - seqSuffix*singleGocMsgNum) - 1
|
|
||||||
} else {
|
|
||||||
index = seq - seqSuffix*singleGocMsgNum
|
|
||||||
}
|
|
||||||
return int(index)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m MsgDocModel) indexGen(sourceID string, seqSuffix int64) string {
|
|
||||||
return sourceID + ":" + strconv.FormatInt(seqSuffix, 10)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (MsgDocModel) GenExceptionMessageBySeqs(seqs []int64) (exceptionMsg []*sdkws.MsgData) {
|
|
||||||
for _, v := range seqs {
|
|
||||||
msg := new(sdkws.MsgData)
|
|
||||||
msg.Seq = v
|
|
||||||
exceptionMsg = append(exceptionMsg, msg)
|
|
||||||
}
|
|
||||||
return exceptionMsg
|
|
||||||
}
|
|
||||||
|
|
||||||
func (MsgDocModel) GenExceptionSuperGroupMessageBySeqs(seqs []int64, groupID string) (exceptionMsg []*sdkws.MsgData) {
|
|
||||||
for _, v := range seqs {
|
|
||||||
msg := new(sdkws.MsgData)
|
|
||||||
msg.Seq = v
|
|
||||||
msg.GroupID = groupID
|
|
||||||
msg.SessionType = constant.SuperGroupChatType
|
|
||||||
exceptionMsg = append(exceptionMsg, msg)
|
|
||||||
}
|
|
||||||
return exceptionMsg
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,133 @@
|
|||||||
|
package unrelation
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
|
||||||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
singleGocMsgNum = 5000
|
||||||
|
Msg = "msg"
|
||||||
|
OldestList = 0
|
||||||
|
NewestList = -1
|
||||||
|
)
|
||||||
|
|
||||||
|
type MsgDocModel struct {
|
||||||
|
DocID string `bson:"uid"`
|
||||||
|
Msg []MsgInfoModel `bson:"msg"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MsgInfoModel struct {
|
||||||
|
SendTime int64 `bson:"sendtime"`
|
||||||
|
Msg []byte `bson:"msg"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type MsgDocModelInterface interface {
|
||||||
|
PushMsgsToDoc(ctx context.Context, docID string, msgsToMongo []MsgInfoModel) error
|
||||||
|
Create(ctx context.Context, model *MsgDocModel) error
|
||||||
|
UpdateMsgStatusByIndexInOneDoc(ctx context.Context, docID string, msg *sdkws.MsgData, seqIndex int, status int32) error
|
||||||
|
FindOneByDocID(ctx context.Context, docID string) (*MsgDocModel, error)
|
||||||
|
GetNewestMsg(ctx context.Context, sourceID string) (*MsgInfoModel, error)
|
||||||
|
GetOldestMsg(ctx context.Context, sourceID string) (*MsgInfoModel, error)
|
||||||
|
Delete(ctx context.Context, docIDs []string) error
|
||||||
|
GetMsgsByIndex(ctx context.Context, sourceID string, index int64) (*MsgDocModel, error)
|
||||||
|
UpdateOneDoc(ctx context.Context, msg *MsgDocModel) error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MsgDocModel) TableName() string {
|
||||||
|
return Msg
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MsgDocModel) GetSingleGocMsgNum() int64 {
|
||||||
|
return singleGocMsgNum
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgDocModel) IsFull() bool {
|
||||||
|
index, _ := strconv.Atoi(strings.Split(m.DocID, ":")[1])
|
||||||
|
if index == 0 {
|
||||||
|
if len(m.Msg) >= singleGocMsgNum-1 {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(m.Msg) >= singleGocMsgNum {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) GetDocID(sourceID string, seq int64) string {
|
||||||
|
seqSuffix := seq / singleGocMsgNum
|
||||||
|
return m.indexGen(sourceID, seqSuffix)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) GetSeqDocIDList(userID string, maxSeq int64) []string {
|
||||||
|
seqMaxSuffix := maxSeq / singleGocMsgNum
|
||||||
|
var seqUserIDs []string
|
||||||
|
for i := 0; i <= int(seqMaxSuffix); i++ {
|
||||||
|
seqUserID := m.indexGen(userID, int64(i))
|
||||||
|
seqUserIDs = append(seqUserIDs, seqUserID)
|
||||||
|
}
|
||||||
|
return seqUserIDs
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) getSeqSuperGroupID(groupID string, seq int64) string {
|
||||||
|
seqSuffix := seq / singleGocMsgNum
|
||||||
|
return m.superGroupIndexGen(groupID, seqSuffix)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) superGroupIndexGen(groupID string, seqSuffix int64) string {
|
||||||
|
return "super_group_" + groupID + ":" + strconv.FormatInt(int64(seqSuffix), 10)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) GetDocIDSeqsMap(sourceID string, seqs []int64) map[string][]int64 {
|
||||||
|
t := make(map[string][]int64)
|
||||||
|
for i := 0; i < len(seqs); i++ {
|
||||||
|
docID := m.GetDocID(sourceID, seqs[i])
|
||||||
|
if value, ok := t[docID]; !ok {
|
||||||
|
var temp []int64
|
||||||
|
t[docID] = append(temp, seqs[i])
|
||||||
|
} else {
|
||||||
|
t[docID] = append(value, seqs[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) getMsgIndex(seq uint32) int {
|
||||||
|
seqSuffix := seq / singleGocMsgNum
|
||||||
|
var index uint32
|
||||||
|
if seqSuffix == 0 {
|
||||||
|
index = (seq - seqSuffix*singleGocMsgNum) - 1
|
||||||
|
} else {
|
||||||
|
index = seq - seqSuffix*singleGocMsgNum
|
||||||
|
}
|
||||||
|
return int(index)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m MsgDocModel) indexGen(sourceID string, seqSuffix int64) string {
|
||||||
|
return sourceID + ":" + strconv.FormatInt(seqSuffix, 10)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MsgDocModel) GenExceptionMessageBySeqs(seqs []int64) (exceptionMsg []*sdkws.MsgData) {
|
||||||
|
for _, v := range seqs {
|
||||||
|
msg := new(sdkws.MsgData)
|
||||||
|
msg.Seq = v
|
||||||
|
exceptionMsg = append(exceptionMsg, msg)
|
||||||
|
}
|
||||||
|
return exceptionMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
func (MsgDocModel) GenExceptionSuperGroupMessageBySeqs(seqs []int64, groupID string) (exceptionMsg []*sdkws.MsgData) {
|
||||||
|
for _, v := range seqs {
|
||||||
|
msg := new(sdkws.MsgData)
|
||||||
|
msg.Seq = v
|
||||||
|
msg.GroupID = groupID
|
||||||
|
msg.SessionType = constant.SuperGroupChatType
|
||||||
|
exceptionMsg = append(exceptionMsg, msg)
|
||||||
|
}
|
||||||
|
return exceptionMsg
|
||||||
|
}
|
@ -1,63 +0,0 @@
|
|||||||
package check
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
||||||
discoveryRegistry "github.com/OpenIMSDK/Open-IM-Server/pkg/discoveryregistry"
|
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/friend"
|
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/sdkws"
|
|
||||||
"google.golang.org/grpc"
|
|
||||||
)
|
|
||||||
|
|
||||||
type MessageGateWayRpcClient struct {
|
|
||||||
zk discoveryRegistry.SvcDiscoveryRegistry
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewMessageGateWayRpcClient(zk discoveryRegistry.SvcDiscoveryRegistry) *MessageGateWayRpcClient {
|
|
||||||
return &MessageGateWayRpcClient{
|
|
||||||
zk: zk,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *MessageGateWayRpcClient) GetFriendsInfo(ctx context.Context, ownerUserID, friendUserID string) (resp *sdkws.FriendInfo, err error) {
|
|
||||||
cc, err := m.getConn()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
r, err := friend.NewFriendClient(cc).GetDesignatedFriends(ctx, &friend.GetDesignatedFriendsReq{OwnerUserID: ownerUserID, FriendUserIDs: []string{friendUserID}})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
resp = r.FriendsInfo[0]
|
|
||||||
return
|
|
||||||
}
|
|
||||||
func (m *MessageGateWayRpcClient) getConn() (*grpc.ClientConn, error) {
|
|
||||||
return m.zk.GetConn(config.Config.RpcRegisterName.OpenImMessageGatewayName)
|
|
||||||
}
|
|
||||||
|
|
||||||
// possibleFriendUserID是否在userID的好友中
|
|
||||||
func (m *MessageGateWayRpcClient) IsFriend(ctx context.Context, possibleFriendUserID, userID string) (bool, error) {
|
|
||||||
cc, err := m.getConn()
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
resp, err := friend.NewFriendClient(cc).IsFriend(ctx, &friend.IsFriendReq{UserID1: userID, UserID2: possibleFriendUserID})
|
|
||||||
if err != nil {
|
|
||||||
return false, err
|
|
||||||
}
|
|
||||||
return resp.InUser1Friends, nil
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *MessageGateWayRpcClient) GetFriendIDs(ctx context.Context, ownerUserID string) (friendIDs []string, err error) {
|
|
||||||
cc, err := m.getConn()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
req := friend.GetFriendIDsReq{UserID: ownerUserID}
|
|
||||||
resp, err := friend.NewFriendClient(cc).GetFriendIDs(ctx, &req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return resp.FriendIDs, err
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
package notification2
|
|
||||||
|
|
||||||
type NotificationMsg struct {
|
|
||||||
SendID string
|
|
||||||
RecvID string
|
|
||||||
Content []byte // sdkws.TipsComm
|
|
||||||
MsgFrom int32
|
|
||||||
ContentType int32
|
|
||||||
SessionType int32
|
|
||||||
SenderNickname string
|
|
||||||
SenderFaceURL string
|
|
||||||
}
|
|
Loading…
Reference in new issue