Some checks failed
Build docker and publish / build (20.15.1) (push) Has been cancelled
refactor: 重构用户模型和密码验证逻辑 feat(epay): 添加支付类型支持 docs: 添加安装和配置指南文档 fix: 修复优惠券过期检查逻辑 perf: 优化设备解绑缓存清理流程 test: 添加密码验证测试用例 chore: 更新依赖版本
120 lines
3.5 KiB
Go
120 lines
3.5 KiB
Go
package portal
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"strings"
|
|
|
|
"github.com/perfect-panel/server/internal/model/subscribe"
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/internal/types"
|
|
"github.com/perfect-panel/server/pkg/logger"
|
|
"github.com/perfect-panel/server/pkg/tool"
|
|
"github.com/perfect-panel/server/pkg/xerr"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type GetSubscriptionLogic struct {
|
|
logger.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
// NewGetSubscriptionLogic Get Subscription
|
|
func NewGetSubscriptionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSubscriptionLogic {
|
|
return &GetSubscriptionLogic{
|
|
Logger: logger.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *GetSubscriptionLogic) GetSubscription1(req *types.GetSubscriptionRequest) (resp *types.GetSubscriptionResponse, err error) {
|
|
resp = &types.GetSubscriptionResponse{
|
|
List: make([]types.Subscribe, 0),
|
|
}
|
|
// Get the subscription list
|
|
_, data, err := l.svcCtx.SubscribeModel.FilterList(l.ctx, &subscribe.FilterParams{
|
|
Page: 1,
|
|
Size: 9999,
|
|
Show: true,
|
|
Language: req.Language,
|
|
DefaultLanguage: true,
|
|
})
|
|
if err != nil {
|
|
l.Errorw("[Site GetSubscription]", logger.Field("err", err.Error()))
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "get subscription list error: %v", err.Error())
|
|
}
|
|
list := make([]types.Subscribe, len(data))
|
|
for i, item := range data {
|
|
var sub types.Subscribe
|
|
tool.DeepCopy(&sub, item)
|
|
if item.Discount != "" {
|
|
var discount []types.SubscribeDiscount
|
|
_ = json.Unmarshal([]byte(item.Discount), &discount)
|
|
sub.Discount = discount
|
|
list[i] = sub
|
|
}
|
|
list[i] = sub
|
|
}
|
|
resp.List = list
|
|
return
|
|
}
|
|
|
|
// CountNodesByIdsAndTags 根据节点ID和标签计算启用的节点数量
|
|
func (l *GetSubscriptionLogic) CountNodesByIdsAndTags(ctx context.Context, nodeIds []int64, tags []string) (int64, error) {
|
|
return l.svcCtx.NodeModel.CountNodesByIdsAndTags(ctx, nodeIds, tags)
|
|
}
|
|
|
|
func (l *GetSubscriptionLogic) GetSubscription(req *types.GetSubscriptionRequest) (resp *types.GetSubscriptionResponse, err error) {
|
|
resp = &types.GetSubscriptionResponse{
|
|
List: make([]types.Subscribe, 0),
|
|
}
|
|
// Get the subscription list
|
|
_, data, err := l.svcCtx.SubscribeModel.FilterList(l.ctx, &subscribe.FilterParams{
|
|
Page: 1,
|
|
Size: 9999,
|
|
Show: true,
|
|
Language: req.Language,
|
|
DefaultLanguage: true,
|
|
})
|
|
if err != nil {
|
|
l.Errorw("[Site GetSubscription]", logger.Field("err", err.Error()))
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "get subscription list error: %v", err.Error())
|
|
}
|
|
list := make([]types.Subscribe, len(data))
|
|
for i, item := range data {
|
|
var sub types.Subscribe
|
|
tool.DeepCopy(&sub, item)
|
|
if item.Discount != "" {
|
|
var discount []types.SubscribeDiscount
|
|
_ = json.Unmarshal([]byte(item.Discount), &discount)
|
|
sub.Discount = discount
|
|
}
|
|
|
|
// 计算节点数量
|
|
nodeIds := tool.StringToInt64Slice(item.Nodes)
|
|
var nodeTags []string
|
|
if item.NodeTags != "" {
|
|
tags := strings.Split(item.NodeTags, ",")
|
|
for _, tag := range tags {
|
|
if strings.TrimSpace(tag) != "" {
|
|
nodeTags = append(nodeTags, strings.TrimSpace(tag))
|
|
}
|
|
}
|
|
}
|
|
|
|
nodeCount, err := l.svcCtx.NodeModel.CountNodesByIdsAndTags(l.ctx, nodeIds, nodeTags)
|
|
if err != nil {
|
|
l.Logger.Error("[GetSubscription] count nodes failed: ", logger.Field("error", err.Error()))
|
|
sub.NodeCount = 0
|
|
} else {
|
|
sub.NodeCount = nodeCount
|
|
}
|
|
|
|
list[i] = sub
|
|
}
|
|
resp.List = list
|
|
return
|
|
}
|