This commit is contained in:
邹宗楠
2023-06-07 17:51:46 +08:00
parent 31c952f3f6
commit acc9e8b144
3 changed files with 95 additions and 38 deletions

View File

@@ -19,6 +19,35 @@ const (
OrderPayStatusFailed = "FAILED" // 订单支付失败
)
type T struct {
Data struct {
KsOrderNo string `json:"ks_order_no"`
RefundType interface{} `json:"refund_type"`
OutRefundNo interface{} `json:"out_refund_no"`
KsSettleNo interface{} `json:"ks_settle_no"`
Channel string `json:"channel"`
OutOrderNo string `json:"out_order_no"`
KsRefundFailReason interface{} `json:"ks_refund_fail_reason"`
ApplyRefundReason interface{} `json:"apply_refund_reason"`
PromotionAmount int `json:"promotion_amount"`
DeveloperPromotionAmount int `json:"developer_promotion_amount"`
ExtraInfo string `json:"extra_info"`
SettleAmount interface{} `json:"settle_amount"`
OrderAmount int `json:"order_amount"`
EnablePromotion bool `json:"enable_promotion"`
OutSettleNo interface{} `json:"out_settle_no"`
RefundAmount interface{} `json:"refund_amount"`
TradeNo string `json:"trade_no"`
Attach string `json:"attach"`
KsRefundNo interface{} `json:"ks_refund_no"`
Status string `json:"status"`
} `json:"data"`
BizType string `json:"biz_type"`
MessageId string `json:"message_id"`
AppId string `json:"app_id"`
Timestamp int64 `json:"timestamp"`
}
// KauiShouCallback 回调处理
func (a *API) KauiShouCallback(request *http.Request) (*CallBackDetail, *RefundCallBack, string, string, error) {
data, err := ioutil.ReadAll(request.Body)
@@ -35,32 +64,20 @@ func (a *API) KauiShouCallback(request *http.Request) (*CallBackDetail, *RefundC
switch callback.BizType {
case CallbackTypePay:
var payCallback *CallBackDetail
if value, ok := callback.Data.(string); ok {
if err := json.Unmarshal([]byte(value), &payCallback); err != nil {
globals.SugarLogger.Debugf("err2 =========== :%s", utils.Format4Output(err, false))
return nil, nil, "", callback.MessageId, err
}
} else {
if err := json.Unmarshal([]byte(utils.Interface2String(value)), &payCallback); err != nil {
globals.SugarLogger.Debugf("err3 =========== :%s", utils.Format4Output(err, false))
return nil, nil, "", callback.MessageId, err
}
globals.SugarLogger.Debugf("payCallback : %s", utils.Format4Output(callback.Data, false))
if err := utils.Map2StructByJson(callback.Data, &payCallback, false); err != nil {
globals.SugarLogger.Debugf("err3 =========== :%s", utils.Format4Output(err, false))
return nil, nil, "", callback.MessageId, err
}
return payCallback, nil, CallbackTypePay, callback.MessageId, err
return payCallback, nil, CallbackTypePay, callback.MessageId, nil
case CallbackTypeRefund:
var refundCallback *RefundCallBack
if value, ok := callback.Data.(string); ok {
if err := json.Unmarshal([]byte(value), &refundCallback); err != nil {
globals.SugarLogger.Debugf("err4 =========== :%s", utils.Format4Output(err, false))
return nil, nil, "", callback.MessageId, err
}
} else {
if err := json.Unmarshal([]byte(utils.Interface2String(value)), &refundCallback); err != nil {
globals.SugarLogger.Debugf("err5 =========== :%s", utils.Format4Output(err, false))
return nil, nil, "", callback.MessageId, err
}
globals.SugarLogger.Debugf("payCallback : %s", utils.Format4Output(callback.Data, false))
if err := utils.Map2StructByJson(callback.Data, &refundCallback, false); err != nil {
globals.SugarLogger.Debugf("err5 =========== :%s", utils.Format4Output(err, false))
return nil, nil, "", callback.MessageId, err
}
return nil, refundCallback, CallbackTypeRefund, callback.MessageId, err
return nil, refundCallback, CallbackTypeRefund, callback.MessageId, nil
case CallbackTypeSettle:
return nil, nil, "", callback.MessageId, errors.New("无效回调类型")
default: