123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- namespace app\service\byte_dance;
- use app\common\model\MobileOrder;
- use app\common\model\Payment;
- class ByteDanceRefund implements ByteDanceInterface {
- protected $reason;
- /** @var Payment */
- protected $payment;
- protected $amount;
- /**
- * @param mixed $reason
- */
- public function setReason($reason)
- {
- $this->reason = $reason;
- return $this;
- }
- /**
- * @param Payment $payment
- */
- public function setPayment(Payment $payment): void
- {
- $this->payment = $payment;
- }
- /**
- * @param mixed $amount
- */
- public function setAmount($amount): void
- {
- $this->amount = $amount;
- }
- public function get()
- {
- $refundNo=$this->payment['refund_no'];
- $platformSource = MobileOrder::where('refund_no',$refundNo)->value('platform_source');
- if($platformSource=='旺卡') {
- $data = [
- 'app_id' => ByteDance::appIdTwo(),
- 'out_order_no' => $this->payment['order_no'],
- 'out_refund_no' => $refundNo,
- 'reason' => $this->reason,
- 'refund_amount' => $this->amount,
- 'notify_url' => sprintf('%s/%s', request()->domain(), 'index/payment/refund_url/type/dy/order/' . $refundNo)
- ];
- $data['sign'] = ByteDance::signWangKa($data);
- } else if($platformSource=='美美号源') {
- $data = [
- 'app_id' => ByteDance::appIdThree(),
- 'out_order_no' => $this->payment['order_no'],
- 'out_refund_no' => $refundNo,
- 'reason' => $this->reason,
- 'refund_amount' => $this->amount,
- 'notify_url' => sprintf('%s/%s', request()->domain(), 'index/payment/refund_url/type/dy/order/' . $refundNo)
- ];
- $data['sign'] = ByteDance::signHaoYuan($data);
- }else{
- $data = [
- 'app_id' => ByteDance::appId(),
- 'out_order_no' => $this->payment['order_no'],
- 'out_refund_no' => $refundNo,
- 'reason' => $this->reason,
- 'refund_amount' => $this->amount,
- 'notify_url' => sprintf('%s/%s', request()->domain(), 'index/payment/refund_url/type/dy/order/' . $refundNo)
- ];
- $data['sign'] = ByteDance::sign($data);
- }
- $fromData=ByteDance::httpPost('https://developer.toutiao.com/api/apps/ecpay/v1/create_refund',$data,[],false);
- user_log('ByteDanceRefund',['no'=>$refundNo,'res'=>$fromData]);
- return [
- $fromData['err_no']==0,
- $fromData['err_tips'],
- $fromData
- ];
- }
- public function getWangKa()
- {
- $refundNo=$this->payment['refund_no'];
- $data=[
- 'app_id'=>ByteDance::appIdTwo(),
- 'out_order_no'=>$this->payment['order_no'],
- 'out_refund_no'=>$refundNo,
- 'reason'=>$this->reason,
- 'refund_amount'=>$this->amount,
- 'notify_url'=>sprintf('%s/%s',request()->domain(),'index/payment/refund_url/type/dy/order/'.$refundNo)
- ];
- $data['sign']=ByteDance::signWangKa($data);
- $fromData=ByteDance::httpPost('https://developer.toutiao.com/api/apps/ecpay/v1/create_refund',$data,[],false);
- user_log('ByteDanceRefund',['no'=>$refundNo,'res'=>$fromData]);
- return [
- $fromData['err_no']==0,
- $fromData['err_tips'],
- $fromData
- ];
- }
- }
|