77 lines
2.5 KiB
Go
77 lines
2.5 KiB
Go
// Copyright © 2023 OpenIM open source community. 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 admin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"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"
|
|
|
|
"git.imall.cloud/openim/chat/pkg/common/db/table/admin"
|
|
"github.com/openimsdk/tools/errs"
|
|
)
|
|
|
|
func NewRegisterAddFriend(db *mongo.Database) (admin.RegisterAddFriendInterface, error) {
|
|
coll := db.Collection("register_add_friend")
|
|
_, err := coll.Indexes().CreateOne(context.Background(), mongo.IndexModel{
|
|
Keys: bson.D{
|
|
{Key: "user_id", Value: 1},
|
|
},
|
|
Options: options.Index().SetUnique(true),
|
|
})
|
|
if err != nil {
|
|
return nil, errs.Wrap(err)
|
|
}
|
|
return &RegisterAddFriend{
|
|
coll: coll,
|
|
}, nil
|
|
}
|
|
|
|
type RegisterAddFriend struct {
|
|
coll *mongo.Collection
|
|
}
|
|
|
|
func (o *RegisterAddFriend) Add(ctx context.Context, registerAddFriends []*admin.RegisterAddFriend) error {
|
|
return mongoutil.InsertMany(ctx, o.coll, registerAddFriends)
|
|
}
|
|
|
|
func (o *RegisterAddFriend) Del(ctx context.Context, userIDs []string) error {
|
|
if len(userIDs) == 0 {
|
|
return nil
|
|
}
|
|
return mongoutil.DeleteMany(ctx, o.coll, bson.M{"user_id": bson.M{"$in": userIDs}})
|
|
}
|
|
|
|
func (o *RegisterAddFriend) FindUserID(ctx context.Context, userIDs []string) ([]string, error) {
|
|
filter := bson.M{}
|
|
if len(userIDs) > 0 {
|
|
filter["user_id"] = bson.M{"$in": userIDs}
|
|
}
|
|
return mongoutil.Find[string](ctx, o.coll, filter, options.Find().SetProjection(bson.M{"_id": 0, "user_id": 1}))
|
|
}
|
|
|
|
func (o *RegisterAddFriend) Search(ctx context.Context, keyword string, pagination pagination.Pagination) (int64, []*admin.RegisterAddFriend, error) {
|
|
filter := bson.M{"user_id": bson.M{"$regex": keyword, "$options": "i"}}
|
|
return mongoutil.FindPage[*admin.RegisterAddFriend](ctx, o.coll, filter, pagination)
|
|
}
|
|
|
|
func (o *RegisterAddFriend) CountTotal(ctx context.Context) (int64, error) {
|
|
return mongoutil.Count(ctx, o.coll, bson.M{})
|
|
}
|