2026-04-06 14:29:40 +08:00

145 lines
4.8 KiB
Go

// Copyright © 2024 OpenIM. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package mgo
import (
"context"
"github.com/openimsdk/open-im-server/v3/pkg/common/storage/database"
"github.com/openimsdk/open-im-server/v3/pkg/common/storage/model"
"github.com/openimsdk/tools/db/mongoutil"
"github.com/openimsdk/tools/db/pagination"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
func NewSignalMongo(db *mongo.Database) (database.SignalDatabase, error) {
invColl := db.Collection(database.SignalInvitationName)
_, err := invColl.Indexes().CreateMany(context.Background(), []mongo.IndexModel{
{
Keys: bson.D{{Key: "room_id", Value: 1}},
Options: options.Index().SetUnique(true),
},
{
Keys: bson.D{{Key: "invitee_user_id_list", Value: 1}},
},
{
Keys: bson.D{{Key: "create_time", Value: -1}},
},
})
if err != nil {
return nil, err
}
recColl := db.Collection(database.SignalRecordName)
_, err = recColl.Indexes().CreateMany(context.Background(), []mongo.IndexModel{
{
Keys: bson.D{{Key: "sid", Value: 1}},
Options: options.Index().SetUnique(true),
},
{
Keys: bson.D{{Key: "send_id", Value: 1}},
},
{
Keys: bson.D{{Key: "recv_id", Value: 1}},
},
{
Keys: bson.D{{Key: "create_time", Value: -1}},
},
})
if err != nil {
return nil, err
}
return &signalMgo{invColl: invColl, recColl: recColl}, nil
}
type signalMgo struct {
invColl *mongo.Collection
recColl *mongo.Collection
}
func (s *signalMgo) CreateInvitation(ctx context.Context, inv *model.SignalInvitation) error {
return mongoutil.InsertMany(ctx, s.invColl, []*model.SignalInvitation{inv})
}
func (s *signalMgo) GetInvitationByRoomID(ctx context.Context, roomID string) (*model.SignalInvitation, error) {
return mongoutil.FindOne[*model.SignalInvitation](ctx, s.invColl, bson.M{"room_id": roomID})
}
func (s *signalMgo) GetInvitationByInviteeUserID(ctx context.Context, userID string) (*model.SignalInvitation, error) {
opts := options.FindOne().SetSort(bson.M{"create_time": -1})
return mongoutil.FindOne[*model.SignalInvitation](ctx, s.invColl, bson.M{"invitee_user_id_list": userID}, opts)
}
func (s *signalMgo) DeleteInvitation(ctx context.Context, roomID string) error {
return mongoutil.DeleteMany(ctx, s.invColl, bson.M{"room_id": roomID})
}
func (s *signalMgo) RemoveInvitee(ctx context.Context, roomID string, userID string) error {
filter := bson.M{"room_id": roomID}
update := bson.M{"$pull": bson.M{"invitee_user_id_list": userID}}
if _, err := s.invColl.UpdateOne(ctx, filter, update); err != nil {
return err
}
_, err := s.invColl.DeleteOne(ctx, bson.M{
"room_id": roomID,
"invitee_user_id_list": bson.M{"$size": 0},
})
return err
}
func (s *signalMgo) GetInvitationByGroupID(ctx context.Context, groupID string) (*model.SignalInvitation, error) {
opts := options.FindOne().SetSort(bson.M{"create_time": -1})
return mongoutil.FindOne[*model.SignalInvitation](ctx, s.invColl, bson.M{"group_id": groupID}, opts)
}
func (s *signalMgo) GetInvitationsByRoomIDs(ctx context.Context, roomIDs []string) ([]*model.SignalInvitation, error) {
return mongoutil.Find[*model.SignalInvitation](ctx, s.invColl, bson.M{"room_id": bson.M{"$in": roomIDs}})
}
func (s *signalMgo) CreateRecord(ctx context.Context, record *model.SignalRecord) error {
return mongoutil.InsertMany(ctx, s.recColl, []*model.SignalRecord{record})
}
func (s *signalMgo) SearchRecords(ctx context.Context, sendID, recvID string, sessionType int32, startTime, endTime int64, pagination pagination.Pagination) (int64, []*model.SignalRecord, error) {
filter := bson.M{}
if sendID != "" {
filter["send_id"] = sendID
}
if recvID != "" {
filter["recv_id"] = recvID
}
if sessionType != 0 {
filter["session_type"] = sessionType
}
if startTime > 0 || endTime > 0 {
timeFilter := bson.M{}
if startTime > 0 {
timeFilter["$gte"] = startTime
}
if endTime > 0 {
timeFilter["$lte"] = endTime
}
filter["create_time"] = timeFilter
}
return mongoutil.FindPage[*model.SignalRecord](ctx, s.recColl, filter, pagination, options.Find().SetSort(bson.M{"create_time": -1}))
}
func (s *signalMgo) DeleteRecords(ctx context.Context, sIDs []string) error {
return mongoutil.DeleteMany(ctx, s.recColl, bson.M{"sid": bson.M{"$in": sIDs}})
}