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.
39 lines
1.5 KiB
39 lines
1.5 KiB
package controller
|
|
|
|
import (
|
|
"OpenIM/pkg/common/db/cache"
|
|
"OpenIM/pkg/proto/sdkws"
|
|
"context"
|
|
)
|
|
|
|
type ThirdDatabase interface {
|
|
GetSignalInvitationInfoByClientMsgID(ctx context.Context, clientMsgID string) (invitationInfo *sdkws.SignalInviteReq, err error)
|
|
GetAvailableSignalInvitationInfo(ctx context.Context, userID string) (invitationInfo *sdkws.SignalInviteReq, err error)
|
|
FcmUpdateToken(ctx context.Context, account string, platformID int, fcmToken string, expireTime int64) error
|
|
SetAppBadge(ctx context.Context, userID string, value int) error
|
|
}
|
|
|
|
type thirdDatabase struct {
|
|
cache cache.Model
|
|
}
|
|
|
|
func NewThirdDatabase(cache cache.Model) ThirdDatabase {
|
|
return &thirdDatabase{cache: cache}
|
|
}
|
|
|
|
func (t *thirdDatabase) GetSignalInvitationInfoByClientMsgID(ctx context.Context, clientMsgID string) (invitationInfo *sdkws.SignalInviteReq, err error) {
|
|
return t.cache.GetSignalInvitationInfoByClientMsgID(ctx, clientMsgID)
|
|
}
|
|
|
|
func (t *thirdDatabase) GetAvailableSignalInvitationInfo(ctx context.Context, userID string) (invitationInfo *sdkws.SignalInviteReq, err error) {
|
|
return t.cache.GetAvailableSignalInvitationInfo(ctx, userID)
|
|
}
|
|
|
|
func (t *thirdDatabase) FcmUpdateToken(ctx context.Context, account string, platformID int, fcmToken string, expireTime int64) error {
|
|
return t.cache.SetFcmToken(ctx, account, platformID, fcmToken, expireTime)
|
|
}
|
|
|
|
func (t *thirdDatabase) SetAppBadge(ctx context.Context, userID string, value int) error {
|
|
return t.cache.SetUserBadgeUnreadCountSum(ctx, userID, value)
|
|
}
|