Some checks failed
Build docker and publish / build (20.15.1) (push) Failing after 7m38s
- purchaseLogic: 允许只有赠送订阅(order_id=0)的用户在SingleModel下新购 - activateOrderLogic: NewPurchase激活时检测赠送订阅,在原有订阅上延长到期时间而非创建新记录
259 lines
8.9 KiB
Go
259 lines
8.9 KiB
Go
package order
|
||
|
||
import (
|
||
"context"
|
||
"encoding/json"
|
||
"math"
|
||
"time"
|
||
|
||
"github.com/perfect-panel/server/internal/model/log"
|
||
"github.com/perfect-panel/server/pkg/constant"
|
||
|
||
"github.com/hibiken/asynq"
|
||
"github.com/perfect-panel/server/internal/model/order"
|
||
"github.com/perfect-panel/server/internal/model/user"
|
||
"github.com/perfect-panel/server/pkg/tool"
|
||
"github.com/perfect-panel/server/pkg/xerr"
|
||
queue "github.com/perfect-panel/server/queue/types"
|
||
"github.com/pkg/errors"
|
||
"gorm.io/gorm"
|
||
|
||
"github.com/perfect-panel/server/internal/svc"
|
||
"github.com/perfect-panel/server/internal/types"
|
||
"github.com/perfect-panel/server/pkg/logger"
|
||
)
|
||
|
||
type PurchaseLogic struct {
|
||
logger.Logger
|
||
ctx context.Context
|
||
svcCtx *svc.ServiceContext
|
||
}
|
||
|
||
const (
|
||
CloseOrderTimeMinutes = 15
|
||
)
|
||
|
||
// NewPurchaseLogic creates a new purchase logic instance for subscription purchase operations.
|
||
// It initializes the logger with context and sets up the service context for database operations.
|
||
func NewPurchaseLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PurchaseLogic {
|
||
return &PurchaseLogic{
|
||
Logger: logger.WithContext(ctx),
|
||
ctx: ctx,
|
||
svcCtx: svcCtx,
|
||
}
|
||
}
|
||
|
||
// Purchase processes new subscription purchase orders including validation, discount calculation,
|
||
// coupon processing, gift amount deduction, fee calculation, and order creation with database transaction.
|
||
// It handles the complete purchase workflow from user validation to order creation and task scheduling.
|
||
func (l *PurchaseLogic) Purchase(req *types.PurchaseOrderRequest) (resp *types.PurchaseOrderResponse, err error) {
|
||
|
||
u, ok := l.ctx.Value(constant.CtxKeyUser).(*user.User)
|
||
if !ok {
|
||
logger.Error("current user is not found in context")
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.InvalidAccess), "Invalid Access")
|
||
}
|
||
|
||
if req.Quantity <= 0 {
|
||
l.Debugf("[Purchase] Quantity is less than or equal to 0, setting to 1")
|
||
req.Quantity = 1
|
||
}
|
||
|
||
// find user subscription
|
||
userSub, err := l.svcCtx.UserModel.QueryUserSubscribe(l.ctx, u.Id)
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Database query error", logger.Field("error", err.Error()), logger.Field("user_id", u.Id))
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find user subscription error: %v", err.Error())
|
||
}
|
||
if l.svcCtx.Config.Subscribe.SingleModel {
|
||
// 检查是否有非赠送的活跃订阅(order_id > 0 表示付费订阅)
|
||
hasPaidSubscription := false
|
||
for _, s := range userSub {
|
||
if s.OrderId > 0 {
|
||
hasPaidSubscription = true
|
||
break
|
||
}
|
||
}
|
||
if hasPaidSubscription {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.UserSubscribeExist), "user has subscription")
|
||
}
|
||
}
|
||
|
||
// find subscribe plan
|
||
sub, err := l.svcCtx.SubscribeModel.FindOne(l.ctx, req.SubscribeId)
|
||
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Database query error", logger.Field("error", err.Error()), logger.Field("subscribe_id", req.SubscribeId))
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find subscribe error: %v", err.Error())
|
||
}
|
||
// check subscribe plan status
|
||
if !*sub.Sell {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.ERROR), "subscribe not sell")
|
||
}
|
||
// check subscribe plan limit
|
||
if sub.Quota > 0 {
|
||
var count int64
|
||
for _, v := range userSub {
|
||
if v.SubscribeId == req.SubscribeId {
|
||
count += 1
|
||
}
|
||
}
|
||
if count >= sub.Quota {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.SubscribeQuotaLimit), "quota limit")
|
||
}
|
||
}
|
||
|
||
var discount float64 = 1
|
||
if sub.Discount != "" {
|
||
var dis []types.SubscribeDiscount
|
||
_ = json.Unmarshal([]byte(sub.Discount), &dis)
|
||
discount = getDiscount(dis, req.Quantity)
|
||
}
|
||
price := sub.UnitPrice * req.Quantity
|
||
// discount amount
|
||
amount := int64(math.Round(float64(price) * discount))
|
||
discountAmount := price - amount
|
||
var coupon int64 = 0
|
||
// Calculate the coupon deduction
|
||
if req.Coupon != "" {
|
||
couponInfo, err := l.svcCtx.CouponModel.FindOneByCode(l.ctx, req.Coupon)
|
||
if err != nil {
|
||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.CouponNotExist), "coupon not found")
|
||
}
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find coupon error: %v", err.Error())
|
||
}
|
||
if couponInfo.Count != 0 && couponInfo.Count <= couponInfo.UsedCount {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.CouponInsufficientUsage), "coupon used")
|
||
}
|
||
couponSub := tool.StringToInt64Slice(couponInfo.Subscribe)
|
||
if len(couponSub) > 0 && !tool.Contains(couponSub, req.SubscribeId) {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.CouponNotApplicable), "coupon not match")
|
||
}
|
||
var count int64
|
||
err = l.svcCtx.DB.Transaction(func(tx *gorm.DB) error {
|
||
return tx.Model(&order.Order{}).Where("user_id = ? and coupon = ?", u.Id, req.Coupon).Count(&count).Error
|
||
})
|
||
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Database query error", logger.Field("error", err.Error()), logger.Field("user_id", u.Id), logger.Field("coupon", req.Coupon))
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find coupon error: %v", err.Error())
|
||
}
|
||
if count >= couponInfo.UserLimit {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.CouponInsufficientUsage), "coupon limit exceeded")
|
||
}
|
||
coupon = calculateCoupon(amount, couponInfo)
|
||
}
|
||
// Calculate the handling fee
|
||
amount -= coupon
|
||
var deductionAmount int64
|
||
// Check user deduction amount
|
||
if u.GiftAmount > 0 {
|
||
if u.GiftAmount >= amount {
|
||
deductionAmount = amount
|
||
amount = 0
|
||
u.GiftAmount -= deductionAmount
|
||
} else {
|
||
deductionAmount = u.GiftAmount
|
||
amount -= u.GiftAmount
|
||
u.GiftAmount = 0
|
||
}
|
||
}
|
||
// find payment method
|
||
payment, err := l.svcCtx.PaymentModel.FindOne(l.ctx, req.Payment)
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Database query error", logger.Field("error", err.Error()), logger.Field("payment", req.Payment))
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find payment method error: %v", err.Error())
|
||
}
|
||
var feeAmount int64
|
||
// Calculate the handling fee
|
||
if amount > 0 {
|
||
feeAmount = calculateFee(amount, payment)
|
||
amount += feeAmount
|
||
}
|
||
// query user is new purchase or renewal
|
||
isNew, err := l.svcCtx.OrderModel.IsUserEligibleForNewOrder(l.ctx, u.Id)
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Database query error", logger.Field("error", err.Error()), logger.Field("user_id", u.Id))
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "find user order error: %v", err.Error())
|
||
}
|
||
// create order
|
||
orderInfo := &order.Order{
|
||
UserId: u.Id,
|
||
OrderNo: tool.GenerateTradeNo(),
|
||
Type: 1,
|
||
Quantity: req.Quantity,
|
||
Price: price,
|
||
Amount: amount,
|
||
Discount: discountAmount,
|
||
GiftAmount: deductionAmount,
|
||
Coupon: req.Coupon,
|
||
CouponDiscount: coupon,
|
||
PaymentId: payment.Id,
|
||
Method: payment.Platform,
|
||
FeeAmount: feeAmount,
|
||
Status: 1,
|
||
IsNew: isNew,
|
||
SubscribeId: req.SubscribeId,
|
||
}
|
||
// Database transaction
|
||
err = l.svcCtx.DB.Transaction(func(db *gorm.DB) error {
|
||
// update user deduction && Pre deduction ,Return after canceling the order
|
||
if orderInfo.GiftAmount > 0 {
|
||
// update user deduction && Pre deduction ,Return after canceling the order
|
||
if e := l.svcCtx.UserModel.Update(l.ctx, u, db); e != nil {
|
||
l.Errorw("[Purchase] Database update error", logger.Field("error", e.Error()), logger.Field("user", u))
|
||
return e
|
||
}
|
||
// create deduction record
|
||
giftLog := log.Gift{
|
||
Type: log.GiftTypeReduce,
|
||
OrderNo: orderInfo.OrderNo,
|
||
SubscribeId: 0,
|
||
Amount: orderInfo.GiftAmount,
|
||
Balance: u.GiftAmount,
|
||
Remark: "Purchase order deduction",
|
||
Timestamp: time.Now().UnixMilli(),
|
||
}
|
||
content, _ := giftLog.Marshal()
|
||
|
||
if e := db.Model(&log.SystemLog{}).Create(&log.SystemLog{
|
||
Type: log.TypeGift.Uint8(),
|
||
Date: time.Now().Format(time.DateOnly),
|
||
ObjectID: u.Id,
|
||
Content: string(content),
|
||
}).Error; e != nil {
|
||
l.Errorw("[Purchase] Database insert error",
|
||
logger.Field("error", e.Error()),
|
||
logger.Field("deductionLog", giftLog),
|
||
)
|
||
return e
|
||
}
|
||
}
|
||
// insert order
|
||
return db.WithContext(l.ctx).Model(&order.Order{}).Create(&orderInfo).Error
|
||
})
|
||
if err != nil {
|
||
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseInsertError), "insert order error: %v", err.Error())
|
||
}
|
||
// Deferred task
|
||
payload := queue.DeferCloseOrderPayload{
|
||
OrderNo: orderInfo.OrderNo,
|
||
}
|
||
val, err := json.Marshal(payload)
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Marshal payload error", logger.Field("error", err.Error()), logger.Field("payload", payload))
|
||
}
|
||
task := asynq.NewTask(queue.DeferCloseOrder, val, asynq.MaxRetry(3))
|
||
taskInfo, err := l.svcCtx.Queue.Enqueue(task, asynq.ProcessIn(CloseOrderTimeMinutes*time.Minute))
|
||
if err != nil {
|
||
l.Errorw("[Purchase] Enqueue task error", logger.Field("error", err.Error()), logger.Field("task", task))
|
||
} else {
|
||
l.Infow("[Purchase] Enqueue task success", logger.Field("TaskID", taskInfo.ID))
|
||
}
|
||
|
||
return &types.PurchaseOrderResponse{
|
||
OrderNo: orderInfo.OrderNo,
|
||
}, nil
|
||
}
|