mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
* statistics user register * refactor: router change * minio init * UserRegisterCount * push use local conn * refactor: user pb update * remove online push close grpc conn * refactor: user pb update * refactor:pb file * msgs statistics * msgs statistics * revoke userID * refactor: errcode update * active user * active user * active user * refactor: errcode update * feat: conn update token * active user * active user * feat: conn update token * active user * feat: conn update token * feat: conn update token * feat: conn update token * add tx_oss cos * active user * active user * group create * group create * feat: group notification show to conversation * feat: group notification show to conversation * group active * user active * sendNotificationWithName * withname * privateChat * a2r call option * grpc with detail return error * change log error * chain unary interceptor * api nil slice map * fix sync has read * fix: text update * fix: update add model * set conversations update * set privateChat * fix: content update * remove unuse rpc * msgDestruct * cron use rpc mw * set IsMsgDestruct * msg destruct * msgDestruct * s3 minio, cos, oss support * feat: add implement of GetUsersOnlineStatus, #472 (#477) * s3 minio, cos, oss support * s3 route * remove extendMsg code * s3 route * remove unuse code * s3 pb * s3 pb * s3 pb * s3 presigned put * s3 presigned test * s3 presigned test * s3 presigned test * s3 presigned test * s3 presigned test * s3 presigned test * s3 presigned test * s3 presigned test * Update .gitignore (#482) * s3 debug log * s3 debug log * cron add log and fix cron * add log * cron * s3 config * fix kick user bug * s3 cos * add kick log * s3 cos test * s3 cos test * s3 cos test * kick user log * kickuserlog * s3 cos copy * s3 cos copy * s3 url * s3 url * s3 AccessURL * log * s3 InitiateMultipartUpload add ExpireTime --------- Co-authored-by: withchao <993506633@qq.com> Co-authored-by: wangchuxiao <wangchuxiao97@outlook.com> Co-authored-by: BanTanger <88583317+BanTanger@users.noreply.github.com> Co-authored-by: withchao <48119764+withchao@users.noreply.github.com> Co-authored-by: Alan <68671759+hanzhixiao@users.noreply.github.com>
165 lines
5.6 KiB
Go
165 lines
5.6 KiB
Go
// Copyright © 2023 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 controller
|
||
|
||
import (
|
||
"context"
|
||
"time"
|
||
|
||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/cache"
|
||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/table/relation"
|
||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/db/tx"
|
||
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
|
||
"github.com/OpenIMSDK/Open-IM-Server/pkg/utils"
|
||
)
|
||
|
||
type UserDatabase interface {
|
||
//获取指定用户的信息 如有userID未找到 也返回错误
|
||
FindWithError(ctx context.Context, userIDs []string) (users []*relation.UserModel, err error)
|
||
//获取指定用户的信息 如有userID未找到 不返回错误
|
||
Find(ctx context.Context, userIDs []string) (users []*relation.UserModel, err error)
|
||
//插入多条 外部保证userID 不重复 且在db中不存在
|
||
Create(ctx context.Context, users []*relation.UserModel) (err error)
|
||
//更新(非零值) 外部保证userID存在
|
||
Update(ctx context.Context, user *relation.UserModel) (err error)
|
||
//更新(零值) 外部保证userID存在
|
||
UpdateByMap(ctx context.Context, userID string, args map[string]interface{}) (err error)
|
||
//如果没找到,不返回错误
|
||
Page(ctx context.Context, pageNumber, showNumber int32) (users []*relation.UserModel, count int64, err error)
|
||
//只要有一个存在就为true
|
||
IsExist(ctx context.Context, userIDs []string) (exist bool, err error)
|
||
//获取所有用户ID
|
||
GetAllUserID(ctx context.Context) ([]string, error)
|
||
//函数内部先查询db中是否存在,存在则什么都不做;不存在则插入
|
||
InitOnce(ctx context.Context, users []*relation.UserModel) (err error)
|
||
// 获取用户总数
|
||
CountTotal(ctx context.Context, before *time.Time) (int64, error)
|
||
// 获取范围内用户增量
|
||
CountRangeEverydayTotal(ctx context.Context, start time.Time, end time.Time) (map[string]int64, error)
|
||
}
|
||
|
||
type userDatabase struct {
|
||
userDB relation.UserModelInterface
|
||
cache cache.UserCache
|
||
tx tx.Tx
|
||
}
|
||
|
||
func NewUserDatabase(userDB relation.UserModelInterface, cache cache.UserCache, tx tx.Tx) UserDatabase {
|
||
return &userDatabase{userDB: userDB, cache: cache, tx: tx}
|
||
}
|
||
|
||
func (u *userDatabase) InitOnce(ctx context.Context, users []*relation.UserModel) (err error) {
|
||
userIDs := utils.Slice(users, func(e *relation.UserModel) string {
|
||
return e.UserID
|
||
})
|
||
result, err := u.userDB.Find(ctx, userIDs)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
miss := utils.SliceAnySub(users, result, func(e *relation.UserModel) string { return e.UserID })
|
||
if len(miss) > 0 {
|
||
_ = u.userDB.Create(ctx, miss)
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 获取指定用户的信息 如有userID未找到 也返回错误
|
||
func (u *userDatabase) FindWithError(ctx context.Context, userIDs []string) (users []*relation.UserModel, err error) {
|
||
users, err = u.cache.GetUsersInfo(ctx, userIDs)
|
||
if err != nil {
|
||
return
|
||
}
|
||
if len(users) != len(userIDs) {
|
||
err = errs.ErrRecordNotFound.Wrap("userID not found")
|
||
}
|
||
return
|
||
}
|
||
|
||
// 获取指定用户的信息 如有userID未找到 不返回错误
|
||
func (u *userDatabase) Find(ctx context.Context, userIDs []string) (users []*relation.UserModel, err error) {
|
||
users, err = u.cache.GetUsersInfo(ctx, userIDs)
|
||
return
|
||
}
|
||
|
||
// 插入多条 外部保证userID 不重复 且在db中不存在
|
||
func (u *userDatabase) Create(ctx context.Context, users []*relation.UserModel) (err error) {
|
||
if err := u.tx.Transaction(func(tx any) error {
|
||
err = u.userDB.Create(ctx, users)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
return nil
|
||
}); err != nil {
|
||
return err
|
||
}
|
||
var userIDs []string
|
||
for _, user := range users {
|
||
userIDs = append(userIDs, user.UserID)
|
||
}
|
||
return u.cache.DelUsersInfo(userIDs...).ExecDel(ctx)
|
||
}
|
||
|
||
// 更新(非零值) 外部保证userID存在
|
||
func (u *userDatabase) Update(ctx context.Context, user *relation.UserModel) (err error) {
|
||
if err := u.userDB.Update(ctx, user); err != nil {
|
||
return err
|
||
}
|
||
return u.cache.DelUsersInfo(user.UserID).ExecDel(ctx)
|
||
}
|
||
|
||
// 更新(零值) 外部保证userID存在
|
||
func (u *userDatabase) UpdateByMap(ctx context.Context, userID string, args map[string]interface{}) (err error) {
|
||
if err := u.userDB.UpdateByMap(ctx, userID, args); err != nil {
|
||
return err
|
||
}
|
||
return u.cache.DelUsersInfo(userID).ExecDel(ctx)
|
||
}
|
||
|
||
// 获取,如果没找到,不返回错误
|
||
func (u *userDatabase) Page(
|
||
ctx context.Context,
|
||
pageNumber, showNumber int32,
|
||
) (users []*relation.UserModel, count int64, err error) {
|
||
return u.userDB.Page(ctx, pageNumber, showNumber)
|
||
}
|
||
|
||
// userIDs是否存在 只要有一个存在就为true
|
||
func (u *userDatabase) IsExist(ctx context.Context, userIDs []string) (exist bool, err error) {
|
||
users, err := u.userDB.Find(ctx, userIDs)
|
||
if err != nil {
|
||
return false, err
|
||
}
|
||
if len(users) > 0 {
|
||
return true, nil
|
||
}
|
||
return false, nil
|
||
}
|
||
|
||
func (u *userDatabase) GetAllUserID(ctx context.Context) (userIDs []string, err error) {
|
||
return u.userDB.GetAllUserID(ctx)
|
||
}
|
||
|
||
func (u *userDatabase) CountTotal(ctx context.Context, before *time.Time) (count int64, err error) {
|
||
return u.userDB.CountTotal(ctx, before)
|
||
}
|
||
|
||
func (u *userDatabase) CountRangeEverydayTotal(
|
||
ctx context.Context,
|
||
start time.Time,
|
||
end time.Time,
|
||
) (map[string]int64, error) {
|
||
return u.userDB.CountRangeEverydayTotal(ctx, start, end)
|
||
}
|