mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
Improve user subscription and unsubscription (#770)
* Improve user subscription and unsubscription * Modification only does not delete all subscribed documents when unsubscribing * fix build * update * update * update * update * add log * update * update * update * delete simple log
This commit is contained in:
parent
ef32a6bce9
commit
863c52c7bb
@ -250,18 +250,27 @@ func (s *userServer) GetAllUserID(ctx context.Context, req *pbuser.GetAllUserIDR
|
|||||||
|
|
||||||
// SubscribeOrCancelUsersStatus Subscribe online or cancel online users.
|
// SubscribeOrCancelUsersStatus Subscribe online or cancel online users.
|
||||||
func (s *userServer) SubscribeOrCancelUsersStatus(ctx context.Context, req *pbuser.SubscribeOrCancelUsersStatusReq) (resp *pbuser.SubscribeOrCancelUsersStatusResp, err error) {
|
func (s *userServer) SubscribeOrCancelUsersStatus(ctx context.Context, req *pbuser.SubscribeOrCancelUsersStatusReq) (resp *pbuser.SubscribeOrCancelUsersStatusResp, err error) {
|
||||||
err = s.UserDatabase.SubscribeOrCancelUsersStatus(ctx, req.UserID, req.UserIDs, req.Genre)
|
if req.Genre == constant.SubscriberUser {
|
||||||
if err != nil {
|
err = s.UserDatabase.SubscribeUsersStatus(ctx, req.UserID, req.UserIDs)
|
||||||
return nil, err
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var status []*pbuser.OnlineStatus
|
||||||
|
status, err = s.UserDatabase.GetUserStatus(ctx, req.UserIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &pbuser.SubscribeOrCancelUsersStatusResp{StatusList: status}, nil
|
||||||
|
} else if req.Genre == constant.Unsubscribe {
|
||||||
|
err = s.UserDatabase.UnsubscribeUsersStatus(ctx, req.UserID, req.UserIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//var status map[string][]string
|
|
||||||
//TODO 获取用户在线列表,返回订阅的用户的在线列表
|
|
||||||
|
|
||||||
return &pbuser.SubscribeOrCancelUsersStatusResp{}, nil
|
return &pbuser.SubscribeOrCancelUsersStatusResp{}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *userServer) GetUserStatus(ctx context.Context, req *pbuser.GetUserStatusReq) (resp *pbuser.GetUserStatusResp, err error) {
|
func (s *userServer) GetUserStatus(ctx context.Context, req *pbuser.GetUserStatusReq) (resp *pbuser.GetUserStatusResp, err error) {
|
||||||
//TODO 是否加一个参数校验-判断req.userID的数量,每一个获取加一个限制,一次请求限制500?
|
|
||||||
onlineStatusList, err := s.UserDatabase.GetUserStatus(ctx, req.UserIDs)
|
onlineStatusList, err := s.UserDatabase.GetUserStatus(ctx, req.UserIDs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -17,7 +17,6 @@ package controller
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
unRelationTb "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/unrelation"
|
unRelationTb "github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/unrelation"
|
||||||
"github.com/OpenIMSDK/protocol/constant"
|
|
||||||
"github.com/OpenIMSDK/protocol/user"
|
"github.com/OpenIMSDK/protocol/user"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -51,8 +50,10 @@ type UserDatabase interface {
|
|||||||
CountTotal(ctx context.Context, before *time.Time) (int64, error)
|
CountTotal(ctx context.Context, before *time.Time) (int64, error)
|
||||||
// CountRangeEverydayTotal Get the user increment in the range
|
// CountRangeEverydayTotal Get the user increment in the range
|
||||||
CountRangeEverydayTotal(ctx context.Context, start time.Time, end time.Time) (map[string]int64, error)
|
CountRangeEverydayTotal(ctx context.Context, start time.Time, end time.Time) (map[string]int64, error)
|
||||||
//SubscribeOrCancelUsersStatus Subscribe or unsubscribe a user's presence status
|
//SubscribeUsersStatus Subscribe a user's presence status
|
||||||
SubscribeOrCancelUsersStatus(ctx context.Context, userID string, userIDs []string, genre int32) error
|
SubscribeUsersStatus(ctx context.Context, userID string, userIDs []string) error
|
||||||
|
// UnsubscribeUsersStatus unsubscribe a user's presence status
|
||||||
|
UnsubscribeUsersStatus(ctx context.Context, userID string, userIDs []string) error
|
||||||
// GetAllSubscribeList Get a list of all subscriptions
|
// GetAllSubscribeList Get a list of all subscriptions
|
||||||
GetAllSubscribeList(ctx context.Context, userID string) ([]string, error)
|
GetAllSubscribeList(ctx context.Context, userID string) ([]string, error)
|
||||||
// GetSubscribedList Get all subscribed lists
|
// GetSubscribedList Get all subscribed lists
|
||||||
@ -176,29 +177,34 @@ func (u *userDatabase) CountRangeEverydayTotal(ctx context.Context, start time.T
|
|||||||
return u.userDB.CountRangeEverydayTotal(ctx, start, end)
|
return u.userDB.CountRangeEverydayTotal(ctx, start, end)
|
||||||
}
|
}
|
||||||
|
|
||||||
//SubscribeOrCancelUsersStatus Subscribe or unsubscribe a user's presence status
|
// SubscribeUsersStatus Subscribe or unsubscribe a user's presence status
|
||||||
func (u *userDatabase) SubscribeOrCancelUsersStatus(ctx context.Context, userID string, userIDs []string, genre int32) error {
|
func (u *userDatabase) SubscribeUsersStatus(ctx context.Context, userID string, userIDs []string) error {
|
||||||
var err error
|
err := u.mongoDB.AddSubscriptionList(ctx, userID, userIDs)
|
||||||
if genre == constant.SubscriberUser {
|
return err
|
||||||
err = u.mongoDB.AddSubscriptionList(ctx, userID, userIDs)
|
}
|
||||||
} else if genre == constant.Unsubscribe {
|
|
||||||
err = u.mongoDB.UnsubscriptionList(ctx, userID, userIDs)
|
// UnsubscribeUsersStatus unsubscribe a user's presence status
|
||||||
}
|
func (u *userDatabase) UnsubscribeUsersStatus(ctx context.Context, userID string, userIDs []string) error {
|
||||||
|
err := u.mongoDB.UnsubscriptionList(ctx, userID, userIDs)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetAllSubscribeList Get a list of all subscriptions.
|
// GetAllSubscribeList Get a list of all subscriptions.
|
||||||
func (u *userDatabase) GetAllSubscribeList(ctx context.Context, userID string) ([]string, error) {
|
func (u *userDatabase) GetAllSubscribeList(ctx context.Context, userID string) ([]string, error) {
|
||||||
|
list, err := u.mongoDB.GetAllSubscribeList(ctx, userID)
|
||||||
//TODO 获取所有订阅
|
if err != nil {
|
||||||
return nil, nil
|
return nil, err
|
||||||
|
}
|
||||||
|
return list, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSubscribedList Get all subscribed lists
|
// GetSubscribedList Get all subscribed lists
|
||||||
func (u *userDatabase) GetSubscribedList(ctx context.Context, userID string) ([]string, error) {
|
func (u *userDatabase) GetSubscribedList(ctx context.Context, userID string) ([]string, error) {
|
||||||
|
list, err := u.mongoDB.GetSubscribedList(ctx, userID)
|
||||||
//TODO 获取所有被订阅
|
if err != nil {
|
||||||
return nil, nil
|
return nil, err
|
||||||
|
}
|
||||||
|
return list, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetUserStatus get user status
|
// GetUserStatus get user status
|
||||||
|
@ -39,4 +39,8 @@ type UserModelInterface interface {
|
|||||||
UnsubscriptionList(ctx context.Context, userID string, userIDList []string) error
|
UnsubscriptionList(ctx context.Context, userID string, userIDList []string) error
|
||||||
// RemoveSubscribedListFromUser Among the unsubscribed users, delete the user from the subscribed list.
|
// RemoveSubscribedListFromUser Among the unsubscribed users, delete the user from the subscribed list.
|
||||||
RemoveSubscribedListFromUser(ctx context.Context, userID string, userIDList []string) error
|
RemoveSubscribedListFromUser(ctx context.Context, userID string, userIDList []string) error
|
||||||
|
// GetAllSubscribeList Get all users subscribed by this user
|
||||||
|
GetAllSubscribeList(ctx context.Context, id string) (userIDList []string, err error)
|
||||||
|
// GetSubscribedList Get the user subscribed by those users
|
||||||
|
GetSubscribedList(ctx context.Context, id string) (userIDList []string, err error)
|
||||||
}
|
}
|
||||||
|
@ -17,14 +17,14 @@ package unrelation
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/unrelation"
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/unrelation"
|
||||||
|
"github.com/OpenIMSDK/tools/errs"
|
||||||
"github.com/OpenIMSDK/tools/utils"
|
"github.com/OpenIMSDK/tools/utils"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
"go.mongodb.org/mongo-driver/mongo"
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
"go.mongodb.org/mongo-driver/mongo/options"
|
"go.mongodb.org/mongo-driver/mongo/options"
|
||||||
"log"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// prefixes and suffixes.
|
// prefixes and suffixes.
|
||||||
const (
|
const (
|
||||||
SubscriptionPrefix = "subscription_prefix"
|
SubscriptionPrefix = "subscription_prefix"
|
||||||
SubscribedPrefix = "subscribed_prefix"
|
SubscribedPrefix = "subscribed_prefix"
|
||||||
@ -48,22 +48,35 @@ type UserMongoDriver struct {
|
|||||||
// AddSubscriptionList Subscriber's handling of thresholds.
|
// AddSubscriptionList Subscriber's handling of thresholds.
|
||||||
func (u *UserMongoDriver) AddSubscriptionList(ctx context.Context, userID string, userIDList []string) error {
|
func (u *UserMongoDriver) AddSubscriptionList(ctx context.Context, userID string, userIDList []string) error {
|
||||||
// Check the number of lists in the key.
|
// Check the number of lists in the key.
|
||||||
filter := bson.M{SubscriptionPrefix + userID: bson.M{"$size": 1}}
|
pipeline := mongo.Pipeline{
|
||||||
result, err := u.userCollection.Find(context.Background(), filter)
|
{{"$match", bson.D{{"user_id", SubscriptionPrefix + userID}}}},
|
||||||
if err != nil {
|
{{"$project", bson.D{{"count", bson.D{{"$size", "$user_id_list"}}}}}},
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
var newUserIDList []string
|
// perform aggregate operations
|
||||||
for result.Next(context.Background()) {
|
cursor, err := u.userCollection.Aggregate(ctx, pipeline)
|
||||||
err := result.Decode(&newUserIDList)
|
if err != nil {
|
||||||
|
return errs.Wrap(err)
|
||||||
|
}
|
||||||
|
defer cursor.Close(ctx)
|
||||||
|
var cnt struct {
|
||||||
|
Count int `bson:"count"`
|
||||||
|
}
|
||||||
|
// iterate over aggregated results
|
||||||
|
for cursor.Next(ctx) {
|
||||||
|
err := cursor.Decode(&cnt)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return errs.Wrap(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
var newUserIDList []string
|
||||||
// If the threshold is exceeded, pop out the previous MaximumSubscription - len(userIDList) and insert it.
|
// If the threshold is exceeded, pop out the previous MaximumSubscription - len(userIDList) and insert it.
|
||||||
if len(newUserIDList)+len(userIDList) > MaximumSubscription {
|
if cnt.Count+len(userIDList) > MaximumSubscription {
|
||||||
|
newUserIDList, err = u.GetAllSubscribeList(ctx, userID)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
newUserIDList = newUserIDList[MaximumSubscription-len(userIDList):]
|
newUserIDList = newUserIDList[MaximumSubscription-len(userIDList):]
|
||||||
_, err := u.userCollection.UpdateOne(
|
_, err = u.userCollection.UpdateOne(
|
||||||
ctx,
|
ctx,
|
||||||
bson.M{"user_id": SubscriptionPrefix + userID},
|
bson.M{"user_id": SubscriptionPrefix + userID},
|
||||||
bson.M{"$set": bson.M{"user_id_list": newUserIDList}},
|
bson.M{"$set": bson.M{"user_id_list": newUserIDList}},
|
||||||
@ -71,16 +84,17 @@ func (u *UserMongoDriver) AddSubscriptionList(ctx context.Context, userID string
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
//for i := 1; i <= MaximumSubscription-len(userIDList); i++ {
|
// Another way to subscribe to N before pop,Delete after testing
|
||||||
// _, err := u.userCollection.UpdateOne(
|
/*for i := 1; i <= MaximumSubscription-len(userIDList); i++ {
|
||||||
// ctx,
|
_, err := u.userCollection.UpdateOne(
|
||||||
// bson.M{"user_id": SubscriptionPrefix + userID},
|
ctx,
|
||||||
// bson.M{SubscriptionPrefix + userID: bson.M{"$pop": -1}},
|
bson.M{"user_id": SubscriptionPrefix + userID},
|
||||||
// )
|
bson.M{SubscriptionPrefix + userID: bson.M{"$pop": -1}},
|
||||||
// if err != nil {
|
)
|
||||||
// return err
|
if err != nil {
|
||||||
// }
|
return err
|
||||||
//}
|
}
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
upsert := true
|
upsert := true
|
||||||
opts := &options.UpdateOptions{
|
opts := &options.UpdateOptions{
|
||||||
@ -93,7 +107,7 @@ func (u *UserMongoDriver) AddSubscriptionList(ctx context.Context, userID string
|
|||||||
opts,
|
opts,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return errs.Wrap(err)
|
||||||
}
|
}
|
||||||
for _, user := range userIDList {
|
for _, user := range userIDList {
|
||||||
_, err = u.userCollection.UpdateOne(
|
_, err = u.userCollection.UpdateOne(
|
||||||
@ -117,25 +131,50 @@ func (u *UserMongoDriver) UnsubscriptionList(ctx context.Context, userID string,
|
|||||||
bson.M{"$pull": bson.M{"user_id_list": bson.M{"$in": userIDList}}},
|
bson.M{"$pull": bson.M{"user_id_list": bson.M{"$in": userIDList}}},
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return errs.Wrap(err)
|
||||||
}
|
}
|
||||||
err = u.RemoveSubscribedListFromUser(ctx, userID, userIDList)
|
err = u.RemoveSubscribedListFromUser(ctx, userID, userIDList)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return errs.Wrap(err)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemoveSubscribedListFromUser Among the unsubscribed users, delete the user from the subscribed list.
|
// RemoveSubscribedListFromUser Among the unsubscribed users, delete the user from the subscribed list.
|
||||||
func (u *UserMongoDriver) RemoveSubscribedListFromUser(ctx context.Context, userID string, userIDList []string) error {
|
func (u *UserMongoDriver) RemoveSubscribedListFromUser(ctx context.Context, userID string, userIDList []string) error {
|
||||||
var newUserIDList []string
|
var err error
|
||||||
for _, value := range userIDList {
|
for _, userIDTemp := range userIDList {
|
||||||
newUserIDList = append(newUserIDList, SubscribedPrefix+value)
|
_, err = u.userCollection.UpdateOne(
|
||||||
|
ctx,
|
||||||
|
bson.M{"user_id": SubscribedPrefix + userIDTemp},
|
||||||
|
bson.M{"$pull": bson.M{"user_id_list": userID}},
|
||||||
|
)
|
||||||
}
|
}
|
||||||
_, err := u.userCollection.UpdateOne(
|
return errs.Wrap(err)
|
||||||
ctx,
|
}
|
||||||
bson.M{"user_id": bson.M{"$in": newUserIDList}},
|
|
||||||
bson.M{"$pull": bson.M{"user_id_list": userID}},
|
// GetAllSubscribeList Get all users subscribed by this user
|
||||||
)
|
func (u *UserMongoDriver) GetAllSubscribeList(ctx context.Context, userID string) (userIDList []string, err error) {
|
||||||
return utils.Wrap(err, "")
|
var user unrelation.UserModel
|
||||||
|
cursor := u.userCollection.FindOne(
|
||||||
|
ctx,
|
||||||
|
bson.M{"user_id": SubscriptionPrefix + userID})
|
||||||
|
err = cursor.Decode(&user)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errs.Wrap(err)
|
||||||
|
}
|
||||||
|
return user.UserIDList, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSubscribedList Get the user subscribed by those users
|
||||||
|
func (u *UserMongoDriver) GetSubscribedList(ctx context.Context, userID string) (userIDList []string, err error) {
|
||||||
|
var user unrelation.UserModel
|
||||||
|
cursor := u.userCollection.FindOne(
|
||||||
|
ctx,
|
||||||
|
bson.M{"user_id": SubscribedPrefix + userID})
|
||||||
|
err = cursor.Decode(&user)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errs.Wrap(err)
|
||||||
|
}
|
||||||
|
return user.UserIDList, nil
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user