mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
Merge branch 'tuoyun' of github.com:OpenIMSDK/Open-IM-Server into tuoyun
This commit is contained in:
commit
079efe5de6
@ -1 +1 @@
|
|||||||
Subproject commit e43ec7d427a84702eea7a6aaa358a7a0a809019d
|
Subproject commit 855e893610c905e3105484c3519613b993301bd2
|
69
cmd/test/main.go
Normal file
69
cmd/test/main.go
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
|
"go.mongodb.org/mongo-driver/mongo/options"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MongoMsg struct {
|
||||||
|
UID string
|
||||||
|
Msg []string
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
//"mongodb://%s:%s@%s/%s/?maxPoolSize=%d"
|
||||||
|
uri := "mongodb://user:pass@sample.host:27017/?maxPoolSize=20&w=majority"
|
||||||
|
DBAddress := "127.0.0.1:37017"
|
||||||
|
DBDatabase := "new-test-db"
|
||||||
|
Collection := "new-test-collection"
|
||||||
|
DBMaxPoolSize := 100
|
||||||
|
uri = fmt.Sprintf("mongodb://%s/%s/?maxPoolSize=%d",
|
||||||
|
DBAddress,DBDatabase,
|
||||||
|
DBMaxPoolSize)
|
||||||
|
|
||||||
|
mongoClient, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(uri))
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
filter := bson.M{"uid":"my_uid"}
|
||||||
|
ctx, _ := context.WithTimeout(context.Background(), 30*time.Second)
|
||||||
|
for i:=0; i < 2; i++{
|
||||||
|
|
||||||
|
if err = mongoClient.Database(DBDatabase).Collection(Collection).FindOneAndUpdate(ctx, filter,
|
||||||
|
bson.M{"$push": bson.M{"msg": utils.Int32ToString(int32(i))}}).Err(); err != nil{
|
||||||
|
fmt.Println("FindOneAndUpdate failed ", i, )
|
||||||
|
var mmsg MongoMsg
|
||||||
|
mmsg.UID = "my_uid"
|
||||||
|
mmsg.Msg = append(mmsg.Msg, utils.Int32ToString(int32(i)))
|
||||||
|
_, err := mongoClient.Database(DBDatabase).Collection(Collection).InsertOne(ctx, &mmsg)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("insertone failed ", err.Error(), i)
|
||||||
|
} else{
|
||||||
|
fmt.Println("insertone ok ", i)
|
||||||
|
}
|
||||||
|
|
||||||
|
}else {
|
||||||
|
fmt.Println("FindOneAndUpdate ok ", i)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
var mmsg MongoMsg
|
||||||
|
|
||||||
|
if err = mongoClient.Database(DBDatabase).Collection(Collection).FindOne(ctx, filter).Decode(&mmsg); err != nil {
|
||||||
|
fmt.Println("findone failed ", err.Error())
|
||||||
|
}else{
|
||||||
|
fmt.Println("findone ok ", mmsg.UID)
|
||||||
|
for i, v:=range mmsg.Msg{
|
||||||
|
fmt.Println("find value: ", i, v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -1,47 +1,47 @@
|
|||||||
# The class cannot be named by Pascal or camel case.
|
# The class cannot be named by Pascal or camel case.
|
||||||
# If it is not used, the corresponding structure will not be set,
|
# If it is not used, the corresponding structure will not be set,
|
||||||
# and it will not be read naturally.
|
# and it will not be read naturally.
|
||||||
serverversion: 1.0.3
|
serverversion: 3.0.0
|
||||||
#---------------Infrastructure configuration---------------------#
|
#---------------Infrastructure configuration---------------------#
|
||||||
etcd:
|
etcd:
|
||||||
etcdSchema: openIM
|
etcdSchema: openIM #默认即可
|
||||||
etcdAddr: [ 127.0.0.1:2379 ]
|
etcdAddr: [ 127.0.0.1:2379 ] #单机部署时,默认即可
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
dbMysqlAddress: [ 127.0.0.1:13306 ]
|
dbMysqlAddress: [ 127.0.0.1:13306 ] #mysql地址 目前仅支持单机,默认即可
|
||||||
dbMysqlUserName: root
|
dbMysqlUserName: root #mysql用户名,建议修改
|
||||||
dbMysqlPassword: openIM
|
dbMysqlPassword: openIM # mysql密码,建议修改
|
||||||
dbMysqlDatabaseName: openIM
|
dbMysqlDatabaseName: openIM #默认即可
|
||||||
dbTableName: eMsg
|
dbTableName: eMsg #默认即可
|
||||||
dbMsgTableNum: 1
|
dbMsgTableNum: 1
|
||||||
dbMaxOpenConns: 20
|
dbMaxOpenConns: 20
|
||||||
dbMaxIdleConns: 10
|
dbMaxIdleConns: 10
|
||||||
dbMaxLifeTime: 120
|
dbMaxLifeTime: 120
|
||||||
|
|
||||||
mongo:
|
mongo:
|
||||||
dbAddress: [ 127.0.0.1:37017 ]
|
dbAddress: [ 127.0.0.1:37017 ] #redis地址 目前仅支持单机,默认即可
|
||||||
dbDirect: false
|
dbDirect: false
|
||||||
dbTimeout: 10
|
dbTimeout: 10
|
||||||
dbDatabase: openIM
|
dbDatabase: openIM #mongo db 默认即可
|
||||||
dbSource: admin
|
dbSource: admin
|
||||||
dbUserName:
|
dbUserName: #mongo用户名,建议修改
|
||||||
dbPassword:
|
dbPassword: #mongo密码,建议修改
|
||||||
dbMaxPoolSize: 20
|
dbMaxPoolSize: 20
|
||||||
dbRetainChatRecords: 7
|
dbRetainChatRecords: 3650 #mongo保存离线消息时间(天)
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
dbAddress: 127.0.0.1:16379
|
dbAddress: 127.0.0.1:16379 #redis地址 目前仅支持单机,默认即可
|
||||||
dbMaxIdle: 128
|
dbMaxIdle: 128
|
||||||
dbMaxActive: 0
|
dbMaxActive: 0
|
||||||
dbIdleTimeout: 120
|
dbIdleTimeout: 120
|
||||||
dbPassWord: openIM
|
dbPassWord: openIM #redis密码 建议修改
|
||||||
|
|
||||||
kafka:
|
kafka:
|
||||||
ws2mschat:
|
ws2mschat:
|
||||||
addr: [ 127.0.0.1:9092 ]
|
addr: [ 127.0.0.1:9092 ] #kafka配置,默认即可
|
||||||
topic: "ws2ms_chat"
|
topic: "ws2ms_chat"
|
||||||
ms2pschat:
|
ms2pschat:
|
||||||
addr: [ 127.0.0.1:9092 ]
|
addr: [ 127.0.0.1:9092 ] #kafka配置,默认即可
|
||||||
topic: "ms2ps_chat"
|
topic: "ms2ps_chat"
|
||||||
consumergroupid:
|
consumergroupid:
|
||||||
msgToMongo: mongo
|
msgToMongo: mongo
|
||||||
@ -55,6 +55,7 @@ kafka:
|
|||||||
# The service ip default is empty,
|
# The service ip default is empty,
|
||||||
# automatically obtain the machine's valid network card ip as the service ip,
|
# automatically obtain the machine's valid network card ip as the service ip,
|
||||||
# otherwise the configuration ip is preferred
|
# otherwise the configuration ip is preferred
|
||||||
|
#如果是单机模式,用0.0.0.0或者不填,默认即可
|
||||||
serverip: 0.0.0.0
|
serverip: 0.0.0.0
|
||||||
|
|
||||||
# endpoints 内部组件间访问的端点host名称,访问时,可以内部直接访问 host:port 来访问
|
# endpoints 内部组件间访问的端点host名称,访问时,可以内部直接访问 host:port 来访问
|
||||||
@ -73,27 +74,22 @@ endpoints:
|
|||||||
rpc_message_cms: openim_rpc_admin_cms
|
rpc_message_cms: openim_rpc_admin_cms
|
||||||
|
|
||||||
api:
|
api:
|
||||||
openImApiPort: [ 10000 ]
|
openImApiPort: [ 10000 ] #api服务端口,默认即可,注意开放此端口或做nginx转发
|
||||||
cmsapi:
|
cmsapi:
|
||||||
openImCmsApiPort: [ 8000 ]
|
openImCmsApiPort: [ 8000 ] #管理后台api服务端口,默认即可,注意开放此端口或做nginx转发
|
||||||
sdk:
|
sdk:
|
||||||
openImSdkWsPort: [ 30000 ]
|
openImSdkWsPort: [ 30000 ] #jssdk服务端口,默认即可,项目中使用jssdk才需开放此端口或做nginx转发
|
||||||
|
|
||||||
credential:
|
credential: #腾讯cos,发送图片、视频、文件时需要,请自行申请后替换,必须修改
|
||||||
tencent:
|
tencent:
|
||||||
appID: 1302656840
|
appID: 1302656840
|
||||||
region: ap-chengdu
|
region: ap-chengdu
|
||||||
bucket: echat-1302656840
|
bucket: echat-1302656840
|
||||||
secretID: AKIDGNYVChzIQinu7QEgtNp0hnNgqcV8vZTC
|
secretID: AKIDGNYVChzIQinu7QEgtNp0hnNgqcV8vZTC
|
||||||
secretKey: kz15vW83qM6dBUWIq681eBZA0c0vlIbe
|
secretKey: kz15vW83qM6dBUWIq681eBZA0c0vlIbe
|
||||||
minio:
|
|
||||||
bucket: openim
|
|
||||||
location: us-east-1
|
|
||||||
endpoint: http://127.0.0.1:9000
|
|
||||||
accessKeyID: minioadmin
|
|
||||||
secretAccessKey: minioadmin
|
|
||||||
|
|
||||||
rpcport:
|
|
||||||
|
rpcport: #rpc服务端口 默认即可
|
||||||
openImUserPort: [ 10100 ]
|
openImUserPort: [ 10100 ]
|
||||||
openImFriendPort: [ 10200 ]
|
openImFriendPort: [ 10200 ]
|
||||||
openImOfflineMessagePort: [ 10300 ]
|
openImOfflineMessagePort: [ 10300 ]
|
||||||
@ -114,7 +110,7 @@ rpcport:
|
|||||||
stateChange:
|
stateChange:
|
||||||
switch: false
|
switch: false
|
||||||
|
|
||||||
rpcregistername:
|
rpcregistername: #rpc注册服务名,默认即可
|
||||||
openImUserName: User
|
openImUserName: User
|
||||||
openImFriendName: Friend
|
openImFriendName: Friend
|
||||||
openImOfflineMessageName: OfflineMessage
|
openImOfflineMessageName: OfflineMessage
|
||||||
@ -129,57 +125,57 @@ rpcregistername:
|
|||||||
log:
|
log:
|
||||||
storageLocation: ../logs/
|
storageLocation: ../logs/
|
||||||
rotationTime: 24
|
rotationTime: 24
|
||||||
remainRotationCount: 5
|
remainRotationCount: 5 #日志数量
|
||||||
remainLogLevel: 6
|
remainLogLevel: 6 #日志级别 6表示全都打印,测试阶段建议设置为6
|
||||||
elasticSearchSwitch: false
|
elasticSearchSwitch: false
|
||||||
elasticSearchAddr: [ 127.0.0.1:9201 ]
|
elasticSearchAddr: [ 127.0.0.1:9201 ]
|
||||||
elasticSearchUser: ""
|
elasticSearchUser: ""
|
||||||
elasticSearchPassword: ""
|
elasticSearchPassword: ""
|
||||||
|
|
||||||
modulename:
|
modulename: #日志文件按模块命名,默认即可
|
||||||
longConnSvrName: msg_gateway
|
longConnSvrName: msg_gateway
|
||||||
msgTransferName: msg_transfer
|
msgTransferName: msg_transfer
|
||||||
pushName: push
|
pushName: push
|
||||||
|
|
||||||
longconnsvr:
|
longconnsvr:
|
||||||
openImWsPort: [ 17778 ]
|
openImWsPort: [ 17778 ] # ws服务端口,默认即可,要开放此端口或做nginx转发
|
||||||
websocketMaxConnNum: 10000
|
websocketMaxConnNum: 10000
|
||||||
websocketMaxMsgLen: 4096
|
websocketMaxMsgLen: 4096
|
||||||
websocketTimeOut: 10
|
websocketTimeOut: 10
|
||||||
|
|
||||||
push:
|
push:
|
||||||
tpns:
|
tpns: #腾讯推送,暂未测试 暂不要使用
|
||||||
ios:
|
ios:
|
||||||
accessID: 1600018281
|
accessID: 1600018281
|
||||||
secretKey: 3cd68a77a95b89e5089a1aca523f318f
|
secretKey: 3cd68a77a95b89e5089a1aca523f318f
|
||||||
android:
|
android:
|
||||||
accessID: 111
|
accessID: 111
|
||||||
secretKey: 111
|
secretKey: 111
|
||||||
jpns:
|
jpns: #极光推送 在极光后台申请后,修改以下四项,必须修改
|
||||||
appKey: cf47465a368f24c659608e7e
|
appKey: cf47465a368f24c659608e7e
|
||||||
masterSecret: 02204efe3f3832947a236ee5
|
masterSecret: 02204efe3f3832947a236ee5
|
||||||
pushUrl: "https://api.jpush.cn/v3/push"
|
pushUrl: "https://api.jpush.cn/v3/push"
|
||||||
pushIntent: "intent:#Intent;component=io.openim.app.enterprisechat/io.openim.app.enterprisechat.MainActivity;end"
|
pushIntent: "intent:#Intent;component=io.openim.app.enterprisechat/io.openim.app.enterprisechat.MainActivity;end"
|
||||||
manager:
|
manager:
|
||||||
|
#app管理员userID和对应的secret 建议修改。 用于管理后台登录,也可以用户管理后台对应的api
|
||||||
appManagerUid: [ "openIM123456","openIM654321", "openIM333", "openIMAdmin"]
|
appManagerUid: [ "openIM123456","openIM654321", "openIM333", "openIMAdmin"]
|
||||||
secrets: [ "openIM1","openIM2", "openIM333", "openIMAdmin"]
|
secrets: [ "openIM1","openIM2", "openIM333", "openIMAdmin"]
|
||||||
|
|
||||||
secret: tuoyun
|
secret: tuoyun
|
||||||
|
# 多端互踢策略
|
||||||
|
# 1:多平台登录:Android、iOS、Windows、Mac 每种平台只能一个在线,web端可以多个同时在线
|
||||||
multiloginpolicy: 1
|
multiloginpolicy: 1
|
||||||
|
|
||||||
#token config
|
#token config
|
||||||
tokenpolicy:
|
tokenpolicy:
|
||||||
accessSecret: "open_im_server"
|
accessSecret: "open_im_server" #token生成相关,默认即可
|
||||||
# Token effective time day as a unit
|
# Token effective time day as a unit
|
||||||
accessExpire: 7
|
accessExpire: 3650 #token过期时间(天)
|
||||||
|
|
||||||
messagecallback:
|
messagecallback: #暂时不要使用 还需完善
|
||||||
callbackUrl: "http://www.xxx.com/msg/judge"
|
callbackUrl: "http://www.xxx.com/msg/judge"
|
||||||
#TimeOut use second as unit
|
#TimeOut use second as unit
|
||||||
callbackTimeOut: 10
|
callbackTimeOut: 10
|
||||||
messagejudge:
|
|
||||||
isJudgeFriend: true
|
|
||||||
# c2c:
|
# c2c:
|
||||||
# callbackBeforeSendMsg:
|
# callbackBeforeSendMsg:
|
||||||
# switch: false
|
# switch: false
|
||||||
@ -189,7 +185,7 @@ messagejudge:
|
|||||||
# state:
|
# state:
|
||||||
# stateChange:
|
# stateChange:
|
||||||
# switch: false
|
# switch: false
|
||||||
|
#ios系统推送声音以及标记计数
|
||||||
iospush:
|
iospush:
|
||||||
pushSound: "xxx"
|
pushSound: "xxx"
|
||||||
badgeCount: true
|
badgeCount: true
|
||||||
@ -253,7 +249,7 @@ notification:
|
|||||||
desc: "groupApplicationAccepted desc"
|
desc: "groupApplicationAccepted desc"
|
||||||
ext: "groupApplicationAccepted ext"
|
ext: "groupApplicationAccepted ext"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "was allowed to join the group" # group info changed by xx
|
tips: "allowed to join the group" # group info changed by xx
|
||||||
|
|
||||||
groupApplicationRejected:
|
groupApplicationRejected:
|
||||||
conversation:
|
conversation:
|
||||||
@ -265,7 +261,7 @@ notification:
|
|||||||
desc: " desc"
|
desc: " desc"
|
||||||
ext: " ext"
|
ext: " ext"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "was rejected into the group" # group info changed by xx
|
tips: "rejected into the group" # group info changed by xx
|
||||||
|
|
||||||
groupOwnerTransferred:
|
groupOwnerTransferred:
|
||||||
conversation:
|
conversation:
|
||||||
@ -289,7 +285,7 @@ notification:
|
|||||||
desc: "memberKicked desc"
|
desc: "memberKicked desc"
|
||||||
ext: "memberKicked ext"
|
ext: "memberKicked ext"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "was kicked out of the group" # group info changed by xx
|
tips: "kicked out of the group" # group info changed by xx
|
||||||
|
|
||||||
memberInvited:
|
memberInvited:
|
||||||
conversation:
|
conversation:
|
||||||
@ -301,7 +297,7 @@ notification:
|
|||||||
desc: "memberInvited desc"
|
desc: "memberInvited desc"
|
||||||
ext: "memberInvited ext"
|
ext: "memberInvited ext"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "was invited into the group" # group info changed by xx
|
tips: "invited into the group" # group info changed by xx
|
||||||
|
|
||||||
memberEnter:
|
memberEnter:
|
||||||
conversation:
|
conversation:
|
||||||
@ -378,11 +374,11 @@ notification:
|
|||||||
unreadCount: false
|
unreadCount: false
|
||||||
offlinePush:
|
offlinePush:
|
||||||
switch: true
|
switch: true
|
||||||
title: "Deleted a friend"
|
title: "deleted a friend"
|
||||||
desc: "Deleted a friend"
|
desc: "deleted a friend"
|
||||||
ext: "Deleted a friend"
|
ext: "deleted a friend"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "Deleted a friend" #
|
tips: "deleted a friend" #
|
||||||
|
|
||||||
|
|
||||||
friendRemarkSet:
|
friendRemarkSet:
|
||||||
@ -405,11 +401,11 @@ notification:
|
|||||||
unreadCount: false
|
unreadCount: false
|
||||||
offlinePush:
|
offlinePush:
|
||||||
switch: true
|
switch: true
|
||||||
title: "Blocked a user"
|
title: "blocked a user"
|
||||||
desc: "Blocked a user"
|
desc: "blocked a user"
|
||||||
ext: "Blocked a user"
|
ext: "blocked a user"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "Blocked a user" #
|
tips: "blocked a user" #
|
||||||
|
|
||||||
|
|
||||||
blackDeleted:
|
blackDeleted:
|
||||||
@ -435,7 +431,7 @@ notification:
|
|||||||
desc: "Remove a blocked user"
|
desc: "Remove a blocked user"
|
||||||
ext: "Remove a blocked user"
|
ext: "Remove a blocked user"
|
||||||
defaultTips:
|
defaultTips:
|
||||||
tips: "Remove a blocked user"
|
tips: "remove a blocked user"
|
||||||
|
|
||||||
#####################conversation#########################
|
#####################conversation#########################
|
||||||
conversationOptUpdate:
|
conversationOptUpdate:
|
||||||
@ -454,23 +450,24 @@ notification:
|
|||||||
|
|
||||||
#---------------demo configuration---------------------#
|
#---------------demo configuration---------------------#
|
||||||
#The following configuration items are applied to openIM Demo configuration
|
#The following configuration items are applied to openIM Demo configuration
|
||||||
|
#是否启动demo,如果自身没有账号体系,设置为true
|
||||||
demoswitch: true
|
demoswitch: true
|
||||||
demo:
|
demo:
|
||||||
openImDemoPort: [ 42233 ]
|
openImDemoPort: [ 42233 ] #demo对外服务端口,默认即可,需要开放此端口或做nginx转发
|
||||||
alismsverify:
|
alismsverify: #阿里云短信配置,在阿里云申请成功后修改以下四项,必须修改
|
||||||
accessKeyId: LTAI5tJPkn4HuuePdiLdGqe71
|
accessKeyId: LTAI5tJPkn4HuuePdiLdGqe71
|
||||||
accessKeySecret: 4n9OJ7ZCVN1U6KeHDAtOyNeVZcjOuV1
|
accessKeySecret: 4n9OJ7ZCVN1U6KeHDAtOyNeVZcjOuV1
|
||||||
signName: OpenIM Corporation
|
signName: OpenIM Corporation
|
||||||
verificationCodeTemplateCode: SMS_2268101641
|
verificationCodeTemplateCode: SMS_2268101641
|
||||||
superCode: 666666
|
superCode: 666666 #超级验证码,建议修改掉,收不到短信验证码时可以用此替代
|
||||||
# second
|
# second
|
||||||
codeTTL: 60
|
codeTTL: 60
|
||||||
mail:
|
mail: #仅支持qq邮箱,具体操作参考 https://service.mail.qq.com/cgi-bin/help?subtype=1&id=28&no=1001256 必须修改
|
||||||
title: "openIM"
|
title: "openIM"
|
||||||
senderMail: "1765567899@qq.com"
|
senderMail: "1765567899@qq.com"
|
||||||
senderAuthorizationCode: "1gxyausfoevlzbfag"
|
senderAuthorizationCode: "1gxyausfoevlzbfag"
|
||||||
smtpAddr: "smtp.qq.com"
|
smtpAddr: "smtp.qq.com"
|
||||||
smtpPort: 25
|
smtpPort: 25 #需开放此端口 出口方向
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
1
go.mod
1
go.mod
@ -45,6 +45,7 @@ require (
|
|||||||
github.com/tencentyun/qcloud-cos-sts-sdk v0.0.0-20210325043845-84a0811633ca
|
github.com/tencentyun/qcloud-cos-sts-sdk v0.0.0-20210325043845-84a0811633ca
|
||||||
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
|
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
|
||||||
go.etcd.io/etcd v0.0.0-20200402134248-51bdeb39e698
|
go.etcd.io/etcd v0.0.0-20200402134248-51bdeb39e698
|
||||||
|
go.mongodb.org/mongo-driver v1.8.3
|
||||||
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
|
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb
|
||||||
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf
|
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf
|
||||||
google.golang.org/grpc v1.40.0
|
google.golang.org/grpc v1.40.0
|
||||||
|
@ -43,7 +43,7 @@ func Login(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
if r.Password != params.Password {
|
if r.Password != params.Password {
|
||||||
log.NewError(params.OperationID, "password err", params.Password, account, r.Password, r.Account)
|
log.NewError(params.OperationID, "password err", params.Password, account, r.Password, r.Account)
|
||||||
c.JSON(http.StatusOK, gin.H{"errCode": constant.PasswordErr, "errMsg": "Mobile phone number is not registered"})
|
c.JSON(http.StatusOK, gin.H{"errCode": constant.PasswordErr, "errMsg": "password err"})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
url := fmt.Sprintf("http://%s:10000/auth/user_token", utils.ServerIP)
|
url := fmt.Sprintf("http://%s:10000/auth/user_token", utils.ServerIP)
|
||||||
|
@ -19,4 +19,5 @@ func saveUserChat(uid string, msg *pbMsg.MsgDataToMQ) error {
|
|||||||
pbSaveData.MsgData = msg.MsgData
|
pbSaveData.MsgData = msg.MsgData
|
||||||
log.NewInfo(msg.OperationID, "IncrUserSeq cost time", utils.GetCurrentTimestampByMill()-time)
|
log.NewInfo(msg.OperationID, "IncrUserSeq cost time", utils.GetCurrentTimestampByMill()-time)
|
||||||
return db.DB.SaveUserChat(uid, pbSaveData.MsgData.SendTime, &pbSaveData)
|
return db.DB.SaveUserChat(uid, pbSaveData.MsgData.SendTime, &pbSaveData)
|
||||||
|
// return db.DB.SaveUserChatMongo2(uid, pbSaveData.MsgData.SendTime, &pbSaveData)
|
||||||
}
|
}
|
||||||
|
@ -71,32 +71,34 @@ func MsgToUser(pushMsg *pbPush.PushMsgReq) {
|
|||||||
bCustomContent, _ := json.Marshal(customContent)
|
bCustomContent, _ := json.Marshal(customContent)
|
||||||
jsonCustomContent := string(bCustomContent)
|
jsonCustomContent := string(bCustomContent)
|
||||||
var content string
|
var content string
|
||||||
switch pushMsg.MsgData.ContentType {
|
|
||||||
case constant.Text:
|
|
||||||
content = constant.ContentType2PushContent[constant.Text]
|
|
||||||
case constant.Picture:
|
|
||||||
content = constant.ContentType2PushContent[constant.Picture]
|
|
||||||
case constant.Voice:
|
|
||||||
content = constant.ContentType2PushContent[constant.Voice]
|
|
||||||
case constant.Video:
|
|
||||||
content = constant.ContentType2PushContent[constant.Video]
|
|
||||||
case constant.File:
|
|
||||||
content = constant.ContentType2PushContent[constant.File]
|
|
||||||
case constant.AtText:
|
|
||||||
a := AtContent{}
|
|
||||||
_ = utils.JsonStringToStruct(string(pushMsg.MsgData.Content), &a)
|
|
||||||
if utils.IsContain(v.RecvID, a.AtUserList) {
|
|
||||||
content = constant.ContentType2PushContent[constant.AtText] + constant.ContentType2PushContent[constant.Common]
|
|
||||||
} else {
|
|
||||||
content = constant.ContentType2PushContent[constant.GroupMsg]
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
content = constant.ContentType2PushContent[constant.Common]
|
|
||||||
}
|
|
||||||
if pushMsg.MsgData.OfflinePushInfo != nil {
|
if pushMsg.MsgData.OfflinePushInfo != nil {
|
||||||
content = pushMsg.MsgData.OfflinePushInfo.Title
|
content = pushMsg.MsgData.OfflinePushInfo.Title
|
||||||
|
|
||||||
|
} else {
|
||||||
|
switch pushMsg.MsgData.ContentType {
|
||||||
|
case constant.Text:
|
||||||
|
content = constant.ContentType2PushContent[constant.Text]
|
||||||
|
case constant.Picture:
|
||||||
|
content = constant.ContentType2PushContent[constant.Picture]
|
||||||
|
case constant.Voice:
|
||||||
|
content = constant.ContentType2PushContent[constant.Voice]
|
||||||
|
case constant.Video:
|
||||||
|
content = constant.ContentType2PushContent[constant.Video]
|
||||||
|
case constant.File:
|
||||||
|
content = constant.ContentType2PushContent[constant.File]
|
||||||
|
case constant.AtText:
|
||||||
|
a := AtContent{}
|
||||||
|
_ = utils.JsonStringToStruct(string(pushMsg.MsgData.Content), &a)
|
||||||
|
if utils.IsContain(v.RecvID, a.AtUserList) {
|
||||||
|
content = constant.ContentType2PushContent[constant.AtText] + constant.ContentType2PushContent[constant.Common]
|
||||||
|
} else {
|
||||||
|
content = constant.ContentType2PushContent[constant.GroupMsg]
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
content = constant.ContentType2PushContent[constant.Common]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pushResult, err := push.JGAccountListPush(UIDList, content, jsonCustomContent, constant.PlatformIDToName(t))
|
pushResult, err := push.JGAccountListPush(UIDList, content, jsonCustomContent, constant.PlatformIDToName(t))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error(), constant.PlatformIDToName(t))
|
log.NewError(pushMsg.OperationID, "offline push error", pushMsg.String(), err.Error(), constant.PlatformIDToName(t))
|
||||||
|
@ -40,6 +40,7 @@ func (rpc *rpcChat) PullMessageBySeqList(_ context.Context, in *open_im_sdk.Pull
|
|||||||
log.NewInfo(in.OperationID, "rpc PullMessageBySeqList is arriving", in.String())
|
log.NewInfo(in.OperationID, "rpc PullMessageBySeqList is arriving", in.String())
|
||||||
resp := new(open_im_sdk.PullMessageBySeqListResp)
|
resp := new(open_im_sdk.PullMessageBySeqListResp)
|
||||||
msgList, err := commonDB.DB.GetMsgBySeqList(in.UserID, in.SeqList, in.OperationID)
|
msgList, err := commonDB.DB.GetMsgBySeqList(in.UserID, in.SeqList, in.OperationID)
|
||||||
|
// msgList, err := commonDB.DB.GetMsgBySeqListMongo2(in.UserID, in.SeqList, in.OperationID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.ErrorByKv("PullMessageBySeqList data error", in.OperationID, in.String())
|
log.ErrorByKv("PullMessageBySeqList data error", in.OperationID, in.String())
|
||||||
resp.ErrCode = 201
|
resp.ErrCode = 201
|
||||||
|
@ -31,3 +31,18 @@ type SetReceiveMessageOptResp struct {
|
|||||||
CommResp
|
CommResp
|
||||||
ConversationOptResultList []*OptResult `json:"data"`
|
ConversationOptResultList []*OptResult `json:"data"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//type Conversation struct {
|
||||||
|
// OwnerUserID string `gorm:"column:owner_user_id;primary_key;type:char(128)" json:"OwnerUserID"`
|
||||||
|
// ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
|
||||||
|
// ConversationType int32 `gorm:"column:conversation_type" json:"conversationType"`
|
||||||
|
// UserID string `gorm:"column:user_id;type:char(64)" json:"userID"`
|
||||||
|
// GroupID string `gorm:"column:group_id;type:char(128)" json:"groupID"`
|
||||||
|
// RecvMsgOpt int32 `gorm:"column:recv_msg_opt" json:"recvMsgOpt"`
|
||||||
|
// UnreadCount int32 `gorm:"column:unread_count" json:"unreadCount"`
|
||||||
|
// DraftTextTime int64 `gorm:"column:draft_text_time" json:"draftTextTime"`
|
||||||
|
// IsPinned bool `gorm:"column:is_pinned" json:"isPinned"`
|
||||||
|
// AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
|
||||||
|
// Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
|
||||||
|
//}
|
||||||
|
|
||||||
|
@ -16,6 +16,20 @@ type ApiUserInfo struct {
|
|||||||
Ex string `json:"ex" binding:"omitempty,max=1024"`
|
Ex string `json:"ex" binding:"omitempty,max=1024"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//type Conversation struct {
|
||||||
|
// OwnerUserID string `gorm:"column:owner_user_id;primary_key;type:char(128)" json:"OwnerUserID"`
|
||||||
|
// ConversationID string `gorm:"column:conversation_id;primary_key;type:char(128)" json:"conversationID"`
|
||||||
|
// ConversationType int32 `gorm:"column:conversation_type" json:"conversationType"`
|
||||||
|
// UserID string `gorm:"column:user_id;type:char(64)" json:"userID"`
|
||||||
|
// GroupID string `gorm:"column:group_id;type:char(128)" json:"groupID"`
|
||||||
|
// RecvMsgOpt int32 `gorm:"column:recv_msg_opt" json:"recvMsgOpt"`
|
||||||
|
// UnreadCount int32 `gorm:"column:unread_count" json:"unreadCount"`
|
||||||
|
// DraftTextTime int64 `gorm:"column:draft_text_time" json:"draftTextTime"`
|
||||||
|
// IsPinned bool `gorm:"column:is_pinned" json:"isPinned"`
|
||||||
|
// AttachedInfo string `gorm:"column:attached_info;type:varchar(1024)" json:"attachedInfo"`
|
||||||
|
// Ex string `gorm:"column:ex;type:varchar(1024)" json:"ex"`
|
||||||
|
//}
|
||||||
|
|
||||||
type GroupAddMemberInfo struct {
|
type GroupAddMemberInfo struct {
|
||||||
UserID string `json:"userID" binding:"required"`
|
UserID string `json:"userID" binding:"required"`
|
||||||
RoleLevel int32 `json:"roleLevel" binding:"required"`
|
RoleLevel int32 `json:"roleLevel" binding:"required"`
|
||||||
|
@ -182,3 +182,5 @@ func GroupIsBanPrivateChat(status int32) bool {
|
|||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const BigVersion = "v3"
|
@ -3,9 +3,16 @@ package db
|
|||||||
import (
|
import (
|
||||||
"Open_IM/pkg/common/config"
|
"Open_IM/pkg/common/config"
|
||||||
"Open_IM/pkg/common/log"
|
"Open_IM/pkg/common/log"
|
||||||
|
// "context"
|
||||||
|
// "fmt"
|
||||||
"github.com/garyburd/redigo/redis"
|
"github.com/garyburd/redigo/redis"
|
||||||
"gopkg.in/mgo.v2"
|
"gopkg.in/mgo.v2"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
//"go.mongodb.org/mongo-driver/bson"
|
||||||
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
|
// "go.mongodb.org/mongo-driver/mongo/options"
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var DB DataBases
|
var DB DataBases
|
||||||
@ -14,6 +21,7 @@ type DataBases struct {
|
|||||||
MysqlDB mysqlDB
|
MysqlDB mysqlDB
|
||||||
mgoSession *mgo.Session
|
mgoSession *mgo.Session
|
||||||
redisPool *redis.Pool
|
redisPool *redis.Pool
|
||||||
|
mongoClient *mongo.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
func key(dbAddress, dbName string) string {
|
func key(dbAddress, dbName string) string {
|
||||||
@ -22,10 +30,31 @@ func key(dbAddress, dbName string) string {
|
|||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
var mgoSession *mgo.Session
|
var mgoSession *mgo.Session
|
||||||
|
var mongoClient *mongo.Client
|
||||||
var err1 error
|
var err1 error
|
||||||
//mysql init
|
//mysql init
|
||||||
initMysqlDB()
|
initMysqlDB()
|
||||||
// mongo init
|
// mongo init
|
||||||
|
// "mongodb://sysop:moon@localhost/records"
|
||||||
|
// uri := "mongodb://user:pass@sample.host:27017/?maxPoolSize=20&w=majority"
|
||||||
|
//uri := fmt.Sprintf("mongodb://%s:%s@%s/%s/?maxPoolSize=%d",
|
||||||
|
// config.Config.Mongo.DBUserName, config.Config.Mongo.DBPassword,
|
||||||
|
// config.Config.Mongo.DBAddress[0],config.Config.Mongo.DBDatabase,
|
||||||
|
// config.Config.Mongo.DBMaxPoolSize)
|
||||||
|
//
|
||||||
|
//mongoClient, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(uri))
|
||||||
|
//if err != nil{
|
||||||
|
// log.NewError(" mongo.Connect failed, try ", err.Error(), uri)
|
||||||
|
// time.Sleep(time.Duration(30) * time.Second)
|
||||||
|
// mongoClient, err1 = mongo.Connect(context.TODO(), options.Client().ApplyURI(uri))
|
||||||
|
// if err1 != nil {
|
||||||
|
// log.NewError(" mongo.Connect failed, panic", err.Error(), uri)
|
||||||
|
// panic(err1.Error())
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mgoDailInfo := &mgo.DialInfo{
|
mgoDailInfo := &mgo.DialInfo{
|
||||||
Addrs: config.Config.Mongo.DBAddress,
|
Addrs: config.Config.Mongo.DBAddress,
|
||||||
Direct: config.Config.Mongo.DBDirect,
|
Direct: config.Config.Mongo.DBDirect,
|
||||||
@ -37,16 +66,16 @@ func init() {
|
|||||||
PoolLimit: config.Config.Mongo.DBMaxPoolSize,
|
PoolLimit: config.Config.Mongo.DBMaxPoolSize,
|
||||||
}
|
}
|
||||||
mgoSession, err := mgo.DialWithInfo(mgoDailInfo)
|
mgoSession, err := mgo.DialWithInfo(mgoDailInfo)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.NewError("mgo init err", err.Error(), mgoDailInfo)
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
time.Sleep(time.Duration(30) * time.Second)
|
|
||||||
mgoSession, err1 = mgo.DialWithInfo(mgoDailInfo)
|
mgoSession, err1 = mgo.DialWithInfo(mgoDailInfo)
|
||||||
if err1 != nil {
|
if err1 != nil {
|
||||||
|
log.NewError(" mongo.Connect failed, panic", err.Error())
|
||||||
panic(err1.Error())
|
panic(err1.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DB.mongoClient = mongoClient
|
||||||
DB.mgoSession = mgoSession
|
DB.mgoSession = mgoSession
|
||||||
DB.mgoSession.SetMode(mgo.Monotonic, true)
|
DB.mgoSession.SetMode(mgo.Monotonic, true)
|
||||||
c := DB.mgoSession.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
c := DB.mgoSession.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
||||||
@ -55,6 +84,7 @@ func init() {
|
|||||||
panic(err.Error())
|
panic(err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// redis pool init
|
// redis pool init
|
||||||
DB.redisPool = &redis.Pool{
|
DB.redisPool = &redis.Pool{
|
||||||
MaxIdle: config.Config.Redis.DBMaxIdle,
|
MaxIdle: config.Config.Redis.DBMaxIdle,
|
||||||
|
@ -187,7 +187,7 @@ type ChatLog struct {
|
|||||||
SessionType int32 `gorm:"column:session_type" json:"sessionType"`
|
SessionType int32 `gorm:"column:session_type" json:"sessionType"`
|
||||||
MsgFrom int32 `gorm:"column:msg_from" json:"msgFrom"`
|
MsgFrom int32 `gorm:"column:msg_from" json:"msgFrom"`
|
||||||
ContentType int32 `gorm:"column:content_type" json:"contentType"`
|
ContentType int32 `gorm:"column:content_type" json:"contentType"`
|
||||||
Content string `gorm:"column:content;type:varchar(1000)" json:"content"`
|
Content string `gorm:"column:content;type:varchar(3000)" json:"content"`
|
||||||
Status int32 `gorm:"column:status" json:"status"`
|
Status int32 `gorm:"column:status" json:"status"`
|
||||||
SendTime time.Time `gorm:"column:send_time" json:"sendTime"`
|
SendTime time.Time `gorm:"column:send_time" json:"sendTime"`
|
||||||
CreateTime time.Time `gorm:"column:create_time" json:"createTime"`
|
CreateTime time.Time `gorm:"column:create_time" json:"createTime"`
|
||||||
|
@ -6,10 +6,12 @@ import (
|
|||||||
pbMsg "Open_IM/pkg/proto/chat"
|
pbMsg "Open_IM/pkg/proto/chat"
|
||||||
open_im_sdk "Open_IM/pkg/proto/sdk_ws"
|
open_im_sdk "Open_IM/pkg/proto/sdk_ws"
|
||||||
"Open_IM/pkg/utils"
|
"Open_IM/pkg/utils"
|
||||||
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"github.com/garyburd/redigo/redis"
|
//"github.com/garyburd/redigo/redis"
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
"gopkg.in/mgo.v2/bson"
|
"gopkg.in/mgo.v2/bson"
|
||||||
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@ -34,33 +36,35 @@ type GroupMember_x struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) GetMinSeqFromMongo(uid string) (MinSeq uint32, err error) {
|
func (d *DataBases) GetMinSeqFromMongo(uid string) (MinSeq uint32, err error) {
|
||||||
var i, NB uint32
|
return 1, nil
|
||||||
var seqUid string
|
//var i, NB uint32
|
||||||
session := d.mgoSession.Clone()
|
//var seqUid string
|
||||||
if session == nil {
|
//session := d.mgoSession.Clone()
|
||||||
return MinSeq, errors.New("session == nil")
|
//if session == nil {
|
||||||
}
|
// return MinSeq, errors.New("session == nil")
|
||||||
defer session.Close()
|
//}
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
//defer session.Close()
|
||||||
MaxSeq, err := d.GetUserMaxSeq(uid)
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
||||||
if err != nil && err != redis.ErrNil {
|
//MaxSeq, err := d.GetUserMaxSeq(uid)
|
||||||
return MinSeq, err
|
//if err != nil && err != redis.ErrNil {
|
||||||
}
|
// return MinSeq, err
|
||||||
NB = uint32(MaxSeq / singleGocMsgNum)
|
//}
|
||||||
for i = 0; i <= NB; i++ {
|
//NB = uint32(MaxSeq / singleGocMsgNum)
|
||||||
seqUid = indexGen(uid, i)
|
//for i = 0; i <= NB; i++ {
|
||||||
n, err := c.Find(bson.M{"uid": seqUid}).Count()
|
// seqUid = indexGen(uid, i)
|
||||||
if err == nil && n != 0 {
|
// n, err := c.Find(bson.M{"uid": seqUid}).Count()
|
||||||
if i == 0 {
|
// if err == nil && n != 0 {
|
||||||
MinSeq = 1
|
// if i == 0 {
|
||||||
} else {
|
// MinSeq = 1
|
||||||
MinSeq = uint32(i * singleGocMsgNum)
|
// } else {
|
||||||
}
|
// MinSeq = uint32(i * singleGocMsgNum)
|
||||||
break
|
// }
|
||||||
}
|
// break
|
||||||
}
|
// }
|
||||||
return MinSeq, nil
|
//}
|
||||||
|
//return MinSeq, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) GetMsgBySeqList(uid string, seqList []uint32, operationID string) (seqMsg []*open_im_sdk.MsgData, err error) {
|
func (d *DataBases) GetMsgBySeqList(uid string, seqList []uint32, operationID string) (seqMsg []*open_im_sdk.MsgData, err error) {
|
||||||
var hasSeqList []uint32
|
var hasSeqList []uint32
|
||||||
singleCount := 0
|
singleCount := 0
|
||||||
@ -115,6 +119,61 @@ func (d *DataBases) GetMsgBySeqList(uid string, seqList []uint32, operationID st
|
|||||||
}
|
}
|
||||||
return seqMsg, nil
|
return seqMsg, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func (d *DataBases) GetMsgBySeqListMongo2(uid string, seqList []uint32, operationID string) (seqMsg []*open_im_sdk.MsgData, err error) {
|
||||||
|
var hasSeqList []uint32
|
||||||
|
singleCount := 0
|
||||||
|
ctx, _ := context.WithTimeout(context.Background(), time.Duration(config.Config.Mongo.DBTimeout)*time.Second)
|
||||||
|
c := d.mongoClient.Database(config.Config.Mongo.DBDatabase).Collection(cChat)
|
||||||
|
|
||||||
|
m := func(uid string, seqList []uint32) map[string][]uint32 {
|
||||||
|
t := make(map[string][]uint32)
|
||||||
|
for i := 0; i < len(seqList); i++ {
|
||||||
|
seqUid := getSeqUid(uid, seqList[i])
|
||||||
|
if value, ok := t[seqUid]; !ok {
|
||||||
|
var temp []uint32
|
||||||
|
t[seqUid] = append(temp, seqList[i])
|
||||||
|
} else {
|
||||||
|
t[seqUid] = append(value, seqList[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return t
|
||||||
|
}(uid, seqList)
|
||||||
|
sChat := UserChat{}
|
||||||
|
for seqUid, value := range m {
|
||||||
|
if err = c.FindOne(ctx, bson.M{"uid": seqUid}).Decode(&sChat); err != nil {
|
||||||
|
log.NewError(operationID, "not find seqUid", seqUid, value, uid, seqList, err.Error())
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
singleCount = 0
|
||||||
|
for i := 0; i < len(sChat.Msg); i++ {
|
||||||
|
msg := new(open_im_sdk.MsgData)
|
||||||
|
if err = proto.Unmarshal(sChat.Msg[i].Msg, msg); err != nil {
|
||||||
|
log.NewError(operationID, "Unmarshal err", seqUid, value, uid, seqList, err.Error())
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if isContainInt32(msg.Seq, value) {
|
||||||
|
seqMsg = append(seqMsg, msg)
|
||||||
|
hasSeqList = append(hasSeqList, msg.Seq)
|
||||||
|
singleCount++
|
||||||
|
if singleCount == len(value) {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(hasSeqList) != len(seqList) {
|
||||||
|
var diff []uint32
|
||||||
|
diff = utils.Difference(hasSeqList, seqList)
|
||||||
|
exceptionMSg := genExceptionMessageBySeqList(diff)
|
||||||
|
seqMsg = append(seqMsg, exceptionMSg...)
|
||||||
|
|
||||||
|
}
|
||||||
|
return seqMsg, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
func genExceptionMessageBySeqList(seqList []uint32) (exceptionMsg []*open_im_sdk.MsgData) {
|
func genExceptionMessageBySeqList(seqList []uint32) (exceptionMsg []*open_im_sdk.MsgData) {
|
||||||
for _, v := range seqList {
|
for _, v := range seqList {
|
||||||
msg := new(open_im_sdk.MsgData)
|
msg := new(open_im_sdk.MsgData)
|
||||||
@ -124,6 +183,37 @@ func genExceptionMessageBySeqList(seqList []uint32) (exceptionMsg []*open_im_sdk
|
|||||||
return exceptionMsg
|
return exceptionMsg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (d *DataBases) SaveUserChatMongo2(uid string, sendTime int64, m *pbMsg.MsgDataToDB) error {
|
||||||
|
ctx, _ := context.WithTimeout(context.Background(), time.Duration(config.Config.Mongo.DBTimeout)*time.Second)
|
||||||
|
c := d.mongoClient.Database(config.Config.Mongo.DBDatabase).Collection(cChat)
|
||||||
|
newTime := getCurrentTimestampByMill()
|
||||||
|
operationID := ""
|
||||||
|
seqUid := getSeqUid(uid, m.MsgData.Seq)
|
||||||
|
filter := bson.M{"uid": seqUid}
|
||||||
|
var err error
|
||||||
|
sMsg := MsgInfo{}
|
||||||
|
sMsg.SendTime = sendTime
|
||||||
|
if sMsg.Msg, err = proto.Marshal(m.MsgData); err != nil {
|
||||||
|
return utils.Wrap(err,"")
|
||||||
|
}
|
||||||
|
err = c.FindOneAndUpdate(ctx, filter, bson.M{"$push": bson.M{"msg": sMsg}}).Err()
|
||||||
|
log.NewDebug(operationID, "get mgoSession cost time", getCurrentTimestampByMill()-newTime)
|
||||||
|
if err != nil {
|
||||||
|
sChat := UserChat{}
|
||||||
|
sChat.UID = seqUid
|
||||||
|
sChat.Msg = append(sChat.Msg, sMsg)
|
||||||
|
if _, err = c.InsertOne(ctx, &sChat) ; err != nil{
|
||||||
|
log.NewDebug(operationID, "InsertOne failed", filter)
|
||||||
|
return utils.Wrap(err, "")
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
log.NewDebug(operationID, "FindOneAndUpdate ok", filter)
|
||||||
|
}
|
||||||
|
|
||||||
|
log.NewDebug(operationID, "find mgo uid cost time", getCurrentTimestampByMill()-newTime)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (d *DataBases) SaveUserChat(uid string, sendTime int64, m *pbMsg.MsgDataToDB) error {
|
func (d *DataBases) SaveUserChat(uid string, sendTime int64, m *pbMsg.MsgDataToDB) error {
|
||||||
var seqUid string
|
var seqUid string
|
||||||
newTime := getCurrentTimestampByMill()
|
newTime := getCurrentTimestampByMill()
|
||||||
@ -163,115 +253,137 @@ func (d *DataBases) SaveUserChat(uid string, sendTime int64, m *pbMsg.MsgDataToD
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) DelUserChat(uid string) error {
|
|
||||||
session := d.mgoSession.Clone()
|
|
||||||
if session == nil {
|
|
||||||
return errors.New("session == nil")
|
|
||||||
}
|
|
||||||
defer session.Close()
|
|
||||||
|
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
func (d *DataBases) DelUserChat(uid string) error {
|
||||||
|
return nil
|
||||||
|
//session := d.mgoSession.Clone()
|
||||||
|
//if session == nil {
|
||||||
|
// return errors.New("session == nil")
|
||||||
|
//}
|
||||||
|
//defer session.Close()
|
||||||
|
//
|
||||||
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
||||||
|
//
|
||||||
|
//delTime := time.Now().Unix() - int64(config.Config.Mongo.DBRetainChatRecords)*24*3600
|
||||||
|
//if err := c.Update(bson.M{"uid": uid}, bson.M{"$pull": bson.M{"msg": bson.M{"sendtime": bson.M{"$lte": delTime}}}}); err != nil {
|
||||||
|
// return err
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func (d *DataBases) DelUserChatMongo2(uid string) error {
|
||||||
|
ctx, _ := context.WithTimeout(context.Background(), time.Duration(config.Config.Mongo.DBTimeout)*time.Second)
|
||||||
|
c := d.mongoClient.Database(config.Config.Mongo.DBDatabase).Collection(cChat)
|
||||||
|
filter := bson.M{"uid": uid}
|
||||||
|
|
||||||
delTime := time.Now().Unix() - int64(config.Config.Mongo.DBRetainChatRecords)*24*3600
|
delTime := time.Now().Unix() - int64(config.Config.Mongo.DBRetainChatRecords)*24*3600
|
||||||
if err := c.Update(bson.M{"uid": uid}, bson.M{"$pull": bson.M{"msg": bson.M{"sendtime": bson.M{"$lte": delTime}}}}); err != nil {
|
if _, err := c.UpdateOne(ctx, filter, bson.M{"$pull": bson.M{"msg": bson.M{"sendtime": bson.M{"$lte": delTime}}}}); err != nil {
|
||||||
return err
|
return utils.Wrap(err, "")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
func (d *DataBases) MgoUserCount() (int, error) {
|
func (d *DataBases) MgoUserCount() (int, error) {
|
||||||
session := d.mgoSession.Clone()
|
return 0, nil
|
||||||
if session == nil {
|
//session := d.mgoSession.Clone()
|
||||||
return 0, errors.New("session == nil")
|
//if session == nil {
|
||||||
}
|
// return 0, errors.New("session == nil")
|
||||||
defer session.Close()
|
//}
|
||||||
|
//defer session.Close()
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
//
|
||||||
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
||||||
return c.Find(nil).Count()
|
//
|
||||||
|
//return c.Find(nil).Count()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) MgoSkipUID(count int) (string, error) {
|
func (d *DataBases) MgoSkipUID(count int) (string, error) {
|
||||||
session := d.mgoSession.Clone()
|
return "", nil
|
||||||
if session == nil {
|
//session := d.mgoSession.Clone()
|
||||||
return "", errors.New("session == nil")
|
//if session == nil {
|
||||||
}
|
// return "", errors.New("session == nil")
|
||||||
defer session.Close()
|
//}
|
||||||
|
//defer session.Close()
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
//
|
||||||
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cChat)
|
||||||
sChat := UserChat{}
|
//
|
||||||
c.Find(nil).Skip(count).Limit(1).One(&sChat)
|
//sChat := UserChat{}
|
||||||
return sChat.UID, nil
|
//c.Find(nil).Skip(count).Limit(1).One(&sChat)
|
||||||
|
//return sChat.UID, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) GetGroupMember(groupID string) []string {
|
func (d *DataBases) GetGroupMember(groupID string) []string {
|
||||||
groupInfo := GroupMember_x{}
|
return nil
|
||||||
groupInfo.GroupID = groupID
|
//groupInfo := GroupMember_x{}
|
||||||
groupInfo.UIDList = make([]string, 0)
|
//groupInfo.GroupID = groupID
|
||||||
|
//groupInfo.UIDList = make([]string, 0)
|
||||||
session := d.mgoSession.Clone()
|
//
|
||||||
if session == nil {
|
//session := d.mgoSession.Clone()
|
||||||
return groupInfo.UIDList
|
//if session == nil {
|
||||||
}
|
// return groupInfo.UIDList
|
||||||
defer session.Close()
|
//}
|
||||||
|
//defer session.Close()
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cGroup)
|
//
|
||||||
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cGroup)
|
||||||
if err := c.Find(bson.M{"groupid": groupInfo.GroupID}).One(&groupInfo); err != nil {
|
//
|
||||||
return groupInfo.UIDList
|
//if err := c.Find(bson.M{"groupid": groupInfo.GroupID}).One(&groupInfo); err != nil {
|
||||||
}
|
// return groupInfo.UIDList
|
||||||
|
//}
|
||||||
return groupInfo.UIDList
|
//
|
||||||
|
//return groupInfo.UIDList
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) AddGroupMember(groupID, uid string) error {
|
func (d *DataBases) AddGroupMember(groupID, uid string) error {
|
||||||
session := d.mgoSession.Clone()
|
|
||||||
if session == nil {
|
|
||||||
return errors.New("session == nil")
|
|
||||||
}
|
|
||||||
defer session.Close()
|
|
||||||
|
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cGroup)
|
|
||||||
|
|
||||||
n, err := c.Find(bson.M{"groupid": groupID}).Count()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if n == 0 {
|
|
||||||
groupInfo := GroupMember_x{}
|
|
||||||
groupInfo.GroupID = groupID
|
|
||||||
groupInfo.UIDList = append(groupInfo.UIDList, uid)
|
|
||||||
err = c.Insert(&groupInfo)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
err = c.Update(bson.M{"groupid": groupID}, bson.M{"$addToSet": bson.M{"uidlist": uid}})
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
//session := d.mgoSession.Clone()
|
||||||
|
//if session == nil {
|
||||||
|
// return errors.New("session == nil")
|
||||||
|
//}
|
||||||
|
//defer session.Close()
|
||||||
|
//
|
||||||
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cGroup)
|
||||||
|
//
|
||||||
|
//n, err := c.Find(bson.M{"groupid": groupID}).Count()
|
||||||
|
//if err != nil {
|
||||||
|
// return err
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//if n == 0 {
|
||||||
|
// groupInfo := GroupMember_x{}
|
||||||
|
// groupInfo.GroupID = groupID
|
||||||
|
// groupInfo.UIDList = append(groupInfo.UIDList, uid)
|
||||||
|
// err = c.Insert(&groupInfo)
|
||||||
|
// if err != nil {
|
||||||
|
// return err
|
||||||
|
// }
|
||||||
|
//} else {
|
||||||
|
// err = c.Update(bson.M{"groupid": groupID}, bson.M{"$addToSet": bson.M{"uidlist": uid}})
|
||||||
|
// if err != nil {
|
||||||
|
// return err
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DataBases) DelGroupMember(groupID, uid string) error {
|
func (d *DataBases) DelGroupMember(groupID, uid string) error {
|
||||||
session := d.mgoSession.Clone()
|
|
||||||
if session == nil {
|
|
||||||
return errors.New("session == nil")
|
|
||||||
}
|
|
||||||
defer session.Close()
|
|
||||||
|
|
||||||
c := session.DB(config.Config.Mongo.DBDatabase).C(cGroup)
|
|
||||||
|
|
||||||
if err := c.Update(bson.M{"groupid": groupID}, bson.M{"$pull": bson.M{"uidlist": uid}}); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
//session := d.mgoSession.Clone()
|
||||||
|
//if session == nil {
|
||||||
|
// return errors.New("session == nil")
|
||||||
|
//}
|
||||||
|
//defer session.Close()
|
||||||
|
//
|
||||||
|
//c := session.DB(config.Config.Mongo.DBDatabase).C(cGroup)
|
||||||
|
//
|
||||||
|
//if err := c.Update(bson.M{"groupid": groupID}, bson.M{"$pull": bson.M{"uidlist": uid}}); err != nil {
|
||||||
|
// return err
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getCurrentTimestampByMill() int64 {
|
func getCurrentTimestampByMill() int64 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user