voucher/internal/data/wechatrepoimpl/bank_multi_activity.go

58 lines
1.3 KiB
Go

package wechatrepoimpl
import (
"errors"
"fmt"
"github.com/wechatpay-apiv3/wechatpay-go/core"
err2 "voucher/api/err"
"voucher/internal/biz/bo"
"voucher/internal/biz/wechatrepo"
"voucher/internal/conf"
"voucher/internal/data"
"voucher/internal/pkg/wechat/srv/marketing"
"voucher/internal/pkg/wechat/utils"
)
type BankMultiActivityImpl struct {
bc *conf.Bootstrap
wx *data.Wx
}
func NewBankMultiActivityImpl(bc *conf.Bootstrap, wx *data.Wx) wechatrepo.BankMultiActivityRepo {
return &BankMultiActivityImpl{bc: bc, wx: wx}
}
func (w *BankMultiActivityImpl) Order(order *bo.OrderBo) (couponId string, err error) {
req := &marketing.SendReq{
OutRequestNo: core.String(order.OrderNo),
Appid: core.String(order.AppID),
StockId: core.String(order.BatchNo),
StockCreatorMchId: core.String(order.MerchantNo),
ActivityId: core.String(order.ActivityId),
}
t, err := w.wx.Get(w.bc.Wechat.MchID)
if err != nil {
return "", err
}
resp, err := t.Send(order.Account, req)
if err != nil {
var e *utils.ApiException
if errors.As(err, &e) {
apiErr, err3 := marketing.BuildErr(e.Body())
if err3 != nil {
return "", fmt.Errorf("ApiException analysis err: %+v", err3)
}
return "", err2.ErrorWechatFAIL("%s-%s", apiErr.Code, apiErr.Message)
}
return "", err
}
return *resp.CouponId, nil
}