ByteDanceRefund.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. namespace app\service\byte_dance;
  3. use app\common\model\MobileOrder;
  4. use app\common\model\Payment;
  5. class ByteDanceRefund implements ByteDanceInterface {
  6. protected $reason;
  7. /** @var Payment */
  8. protected $payment;
  9. protected $amount;
  10. /**
  11. * @param mixed $reason
  12. */
  13. public function setReason($reason)
  14. {
  15. $this->reason = $reason;
  16. return $this;
  17. }
  18. /**
  19. * @param Payment $payment
  20. */
  21. public function setPayment(Payment $payment): void
  22. {
  23. $this->payment = $payment;
  24. }
  25. /**
  26. * @param mixed $amount
  27. */
  28. public function setAmount($amount): void
  29. {
  30. $this->amount = $amount;
  31. }
  32. public function get()
  33. {
  34. $refundNo=$this->payment['refund_no'];
  35. $platformSource = MobileOrder::where('refund_no',$refundNo)->value('platform_source');
  36. if($platformSource=='旺卡') {
  37. $data = [
  38. 'app_id' => ByteDance::appIdTwo(),
  39. 'out_order_no' => $this->payment['order_no'],
  40. 'out_refund_no' => $refundNo,
  41. 'reason' => $this->reason,
  42. 'refund_amount' => $this->amount,
  43. 'notify_url' => sprintf('%s/%s', request()->domain(), 'index/payment/refund_url/type/dy/order/' . $refundNo)
  44. ];
  45. $data['sign'] = ByteDance::signWangKa($data);
  46. } else if($platformSource=='美美号源') {
  47. $data = [
  48. 'app_id' => ByteDance::appIdThree(),
  49. 'out_order_no' => $this->payment['order_no'],
  50. 'out_refund_no' => $refundNo,
  51. 'reason' => $this->reason,
  52. 'refund_amount' => $this->amount,
  53. 'notify_url' => sprintf('%s/%s', request()->domain(), 'index/payment/refund_url/type/dy/order/' . $refundNo)
  54. ];
  55. $data['sign'] = ByteDance::signHaoYuan($data);
  56. }else{
  57. $data = [
  58. 'app_id' => ByteDance::appId(),
  59. 'out_order_no' => $this->payment['order_no'],
  60. 'out_refund_no' => $refundNo,
  61. 'reason' => $this->reason,
  62. 'refund_amount' => $this->amount,
  63. 'notify_url' => sprintf('%s/%s', request()->domain(), 'index/payment/refund_url/type/dy/order/' . $refundNo)
  64. ];
  65. $data['sign'] = ByteDance::sign($data);
  66. }
  67. $fromData=ByteDance::httpPost('https://developer.toutiao.com/api/apps/ecpay/v1/create_refund',$data,[],false);
  68. user_log('ByteDanceRefund',['no'=>$refundNo,'res'=>$fromData]);
  69. return [
  70. $fromData['err_no']==0,
  71. $fromData['err_tips'],
  72. $fromData
  73. ];
  74. }
  75. public function getWangKa()
  76. {
  77. $refundNo=$this->payment['refund_no'];
  78. $data=[
  79. 'app_id'=>ByteDance::appIdTwo(),
  80. 'out_order_no'=>$this->payment['order_no'],
  81. 'out_refund_no'=>$refundNo,
  82. 'reason'=>$this->reason,
  83. 'refund_amount'=>$this->amount,
  84. 'notify_url'=>sprintf('%s/%s',request()->domain(),'index/payment/refund_url/type/dy/order/'.$refundNo)
  85. ];
  86. $data['sign']=ByteDance::signWangKa($data);
  87. $fromData=ByteDance::httpPost('https://developer.toutiao.com/api/apps/ecpay/v1/create_refund',$data,[],false);
  88. user_log('ByteDanceRefund',['no'=>$refundNo,'res'=>$fromData]);
  89. return [
  90. $fromData['err_no']==0,
  91. $fromData['err_tips'],
  92. $fromData
  93. ];
  94. }
  95. }