All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 7m26s
96 lines
3.4 KiB
Go
96 lines
3.4 KiB
Go
package subscribe
|
|
|
|
import (
|
|
"context"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/perfect-panel/server/internal/model/user"
|
|
"github.com/perfect-panel/server/pkg/uuidx"
|
|
"github.com/perfect-panel/server/pkg/xerr"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/internal/types"
|
|
"github.com/perfect-panel/server/pkg/logger"
|
|
)
|
|
|
|
type ResetAllSubscribeTokenLogic struct {
|
|
logger.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
// Reset all subscribe tokens
|
|
func NewResetAllSubscribeTokenLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ResetAllSubscribeTokenLogic {
|
|
return &ResetAllSubscribeTokenLogic{
|
|
Logger: logger.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *ResetAllSubscribeTokenLogic) ResetAllSubscribeToken() (resp *types.ResetAllSubscribeTokenResponse, err error) {
|
|
var list []*user.Subscribe
|
|
tx := l.svcCtx.DB.WithContext(l.ctx).Begin()
|
|
if tx.Error != nil {
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "Failed to begin transaction: %v", tx.Error)
|
|
}
|
|
// select all active and Finished subscriptions
|
|
if err = tx.Model(&user.Subscribe{}).Where("`status` IN ?", []int64{1, 2}).Find(&list).Error; err != nil {
|
|
tx.Rollback()
|
|
logger.Errorf("[ResetAllSubscribeToken] Failed to fetch subscribe list: %v", err.Error())
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "Failed to fetch subscribe list: %v", err.Error())
|
|
}
|
|
|
|
// Save old tokens before overwriting for proper cache clearing
|
|
type oldTokenInfo struct {
|
|
Token string
|
|
UserId int64
|
|
Id int64
|
|
}
|
|
oldTokens := make([]oldTokenInfo, len(list))
|
|
for i, sub := range list {
|
|
oldTokens[i] = oldTokenInfo{Token: sub.Token, UserId: sub.UserId, Id: sub.Id}
|
|
}
|
|
|
|
for _, sub := range list {
|
|
sub.Token = uuidx.SubscribeToken(strconv.FormatInt(time.Now().UnixMilli(), 10) + strconv.FormatInt(sub.Id, 10))
|
|
sub.UUID = uuidx.NewUUID().String()
|
|
if err = tx.Model(&user.Subscribe{}).Where("id = ?", sub.Id).Save(sub).Error; err != nil {
|
|
tx.Rollback()
|
|
logger.Errorf("[ResetAllSubscribeToken] Failed to update subscribe token for ID %d: %v", sub.Id, err.Error())
|
|
return &types.ResetAllSubscribeTokenResponse{
|
|
Success: false,
|
|
}, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseUpdateError), "Failed to update subscribe token for ID %d: %v", sub.Id, err.Error())
|
|
}
|
|
}
|
|
if err = tx.Commit().Error; err != nil {
|
|
logger.Errorf("[ResetAllSubscribeToken] Failed to commit transaction: %v", err.Error())
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseUpdateError), "Failed to commit transaction: %v", err.Error())
|
|
}
|
|
|
|
// Clear cache for both old and new tokens
|
|
for i, sub := range list {
|
|
// Clear new token cache
|
|
if clearErr := l.svcCtx.UserModel.ClearSubscribeCache(l.ctx, sub); clearErr != nil {
|
|
logger.Errorf("[ResetAllSubscribeToken] Failed to clear new cache for subscribe ID %d: %v", sub.Id, clearErr.Error())
|
|
}
|
|
// Clear old token cache
|
|
if oldTokens[i].Token != "" && oldTokens[i].Token != sub.Token {
|
|
oldSub := &user.Subscribe{
|
|
Id: oldTokens[i].Id,
|
|
UserId: oldTokens[i].UserId,
|
|
Token: oldTokens[i].Token,
|
|
}
|
|
if clearErr := l.svcCtx.UserModel.ClearSubscribeCache(l.ctx, oldSub); clearErr != nil {
|
|
logger.Errorf("[ResetAllSubscribeToken] Failed to clear old cache for subscribe ID %d: %v", sub.Id, clearErr.Error())
|
|
}
|
|
}
|
|
}
|
|
|
|
return &types.ResetAllSubscribeTokenResponse{
|
|
Success: true,
|
|
}, nil
|
|
}
|