You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.3 KiB
74 lines
2.3 KiB
2 years ago
|
package third
|
||
|
|
||
|
import (
|
||
|
"OpenIM/internal/common/check"
|
||
|
"OpenIM/pkg/common/db/cache"
|
||
|
"OpenIM/pkg/common/db/controller"
|
||
|
"OpenIM/pkg/common/db/relation"
|
||
|
"OpenIM/pkg/common/db/tx"
|
||
|
"OpenIM/pkg/common/db/unrelation"
|
||
|
"OpenIM/pkg/proto/third"
|
||
|
"context"
|
||
|
"github.com/OpenIMSDK/openKeeper"
|
||
|
"google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
func Start(client *openKeeper.ZkClient, server *grpc.Server) error {
|
||
|
rdb, err := cache.NewRedis()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
third.RegisterThirdServer(server, &thirdServer{
|
||
|
thirdDatabase: controller.NewThirdDatabase(cache.NewCache(rdb)),
|
||
|
userCheck: check.NewUserCheck(client),
|
||
|
})
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type thirdServer struct {
|
||
|
thirdDatabase controller.ThirdDatabase
|
||
|
userCheck *check.UserCheck
|
||
|
}
|
||
|
|
||
|
func (t *thirdServer) ApplySpace(ctx context.Context, req *third.ApplySpaceReq) (resp *third.ApplySpaceResp, err error) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (t *thirdServer) GetSignalInvitationInfo(ctx context.Context, req *third.GetSignalInvitationInfoReq) (resp *third.GetSignalInvitationInfoResp, err error) {
|
||
|
signalReq, err := t.thirdDatabase.GetSignalInvitationInfoByClientMsgID(ctx, req.ClientMsgID)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
resp = &third.GetSignalInvitationInfoResp{}
|
||
|
resp.InvitationInfo = signalReq.Invitation
|
||
|
resp.OfflinePushInfo = signalReq.OfflinePushInfo
|
||
|
return resp, nil
|
||
|
}
|
||
|
|
||
|
func (t *thirdServer) GetSignalInvitationInfoStartApp(ctx context.Context, req *third.GetSignalInvitationInfoStartAppReq) (resp *third.GetSignalInvitationInfoStartAppResp, err error) {
|
||
|
signalReq, err := t.thirdDatabase.GetAvailableSignalInvitationInfo(ctx, req.UserID)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
resp = &third.GetSignalInvitationInfoStartAppResp{}
|
||
|
resp.InvitationInfo = signalReq.Invitation
|
||
|
resp.OfflinePushInfo = signalReq.OfflinePushInfo
|
||
|
return resp, nil
|
||
|
}
|
||
|
|
||
|
func (t *thirdServer) FcmUpdateToken(ctx context.Context, req *third.FcmUpdateTokenReq) (resp *third.FcmUpdateTokenResp, err error) {
|
||
|
err = t.thirdDatabase.FcmUpdateToken(ctx)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &third.FcmUpdateTokenResp{}, nil
|
||
|
}
|
||
|
|
||
|
func (t *thirdServer) SetAppBadge(ctx context.Context, req *third.SetAppBadgeReq) (resp *third.SetAppBadgeResp, err error) {
|
||
|
err = t.thirdDatabase.SetAppBadge(ctx, req.UserID, req.AppUnreadCount)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &third.SetAppBadgeResp{}, nil
|
||
|
}
|