mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 05:12:45 +08:00
* refactor: refactor workflows contents. * add tool workflows. * update field. * fix: remove chat error. * Fix err. * fix error. * remove cn comment. * update workflows files. * update infra config. * move workflows. * feat: update bot. * fix: solve uncorrect outdated msg get. * update get docIDs logic. * update * update skip logic. * fix * update. * fix: delay deleteObject func. * remove unused content. * update log type. * feat: implement request batch count limit. * update * update * feat: implement offline push. * feat: implement batch Push spilt * update go mod * feat: implement kafka producer and consumer. * update format, * add PushMQ log. * feat: update Handler logic. * update MQ logic. * update * update * fix: update OfflinePushConsumerHandler.
86 lines
2.5 KiB
Go
86 lines
2.5 KiB
Go
package push
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/openimsdk/open-im-server/v3/internal/push/offlinepush"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/config"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/storage/cache/redis"
|
|
"github.com/openimsdk/open-im-server/v3/pkg/common/storage/controller"
|
|
pbpush "github.com/openimsdk/protocol/push"
|
|
"github.com/openimsdk/tools/db/redisutil"
|
|
"github.com/openimsdk/tools/discovery"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type pushServer struct {
|
|
database controller.PushDatabase
|
|
disCov discovery.SvcDiscoveryRegistry
|
|
offlinePusher offlinepush.OfflinePusher
|
|
pushCh *ConsumerHandler
|
|
offlinePushCh *OfflinePushConsumerHandler
|
|
}
|
|
|
|
type Config struct {
|
|
RpcConfig config.Push
|
|
RedisConfig config.Redis
|
|
KafkaConfig config.Kafka
|
|
NotificationConfig config.Notification
|
|
Share config.Share
|
|
WebhooksConfig config.Webhooks
|
|
LocalCacheConfig config.LocalCache
|
|
Discovery config.Discovery
|
|
FcmConfigPath string
|
|
}
|
|
|
|
func (p pushServer) PushMsg(ctx context.Context, req *pbpush.PushMsgReq) (*pbpush.PushMsgResp, error) {
|
|
//todo reserved Interface
|
|
return nil, nil
|
|
}
|
|
|
|
func (p pushServer) DelUserPushToken(ctx context.Context,
|
|
req *pbpush.DelUserPushTokenReq) (resp *pbpush.DelUserPushTokenResp, err error) {
|
|
if err = p.database.DelFcmToken(ctx, req.UserID, int(req.PlatformID)); err != nil {
|
|
return nil, err
|
|
}
|
|
return &pbpush.DelUserPushTokenResp{}, nil
|
|
}
|
|
|
|
func Start(ctx context.Context, config *Config, client discovery.SvcDiscoveryRegistry, server *grpc.Server) error {
|
|
rdb, err := redisutil.NewRedisClient(ctx, config.RedisConfig.Build())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cacheModel := redis.NewThirdCache(rdb)
|
|
offlinePusher, err := offlinepush.NewOfflinePusher(&config.RpcConfig, cacheModel, config.FcmConfigPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
database := controller.NewPushDatabase(cacheModel, &config.KafkaConfig)
|
|
|
|
consumer, err := NewConsumerHandler(config, database, offlinePusher, rdb, client)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
offlinePushConsumer, err := NewOfflinePushConsumerHandler(config, offlinePusher)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pbpush.RegisterPushMsgServiceServer(server, &pushServer{
|
|
database: database,
|
|
disCov: client,
|
|
offlinePusher: offlinePusher,
|
|
pushCh: consumer,
|
|
offlinePushCh: offlinePushConsumer,
|
|
})
|
|
|
|
go consumer.pushConsumerGroup.RegisterHandleAndConsumer(ctx, consumer)
|
|
|
|
go offlinePushConsumer.OfflinePushConsumerGroup.RegisterHandleAndConsumer(ctx, offlinePushConsumer)
|
|
|
|
return nil
|
|
}
|