ByteDanceQueryRefund.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\service\byte_dance;
  3. use app\common\model\MobileOrder;
  4. class ByteDanceQueryRefund implements ByteDanceInterface {
  5. protected $orderNo;
  6. protected $data;
  7. /**
  8. * @param array $body
  9. */
  10. public function setOrderNo($body)
  11. {
  12. $this->orderNo = $body;
  13. return $this;
  14. }
  15. public function get()
  16. {
  17. $platformSource = MobileOrder::where('refund_no',$this->orderNo)->value('platform_source');
  18. if($platformSource=='旺卡'){
  19. $params=[
  20. 'app_id'=>ByteDance::appIdTwo(),
  21. 'out_refund_no'=>$this->orderNo,
  22. ];
  23. $params['sign']=ByteDance::signWangKa($params);
  24. } else if ($platformSource=='美美号源') {
  25. $params=[
  26. 'app_id'=>ByteDance::appIdThree(),
  27. 'out_refund_no'=>$this->orderNo,
  28. ];
  29. $params['sign']=ByteDance::signHaoYuan($params);
  30. }else{
  31. $params=[
  32. 'app_id'=>ByteDance::appId(),
  33. 'out_refund_no'=>$this->orderNo,
  34. ];
  35. $params['sign']=ByteDance::sign($params);
  36. }
  37. $data=ByteDance::httpPost('https://developer.toutiao.com/api/apps/ecpay/v1/query_refund',$params,[],false);
  38. $this->data=$data;
  39. user_log('ByteDanceQueryRefund',['orderNo'=>$this->orderNo,'data'=>$data]);
  40. return $data['err_no']===0;
  41. }
  42. public function getData(){
  43. return $this->data;
  44. }
  45. public static function notify($succ=true){
  46. $arr=[
  47. 'err_no'=>$succ?0:1,
  48. 'msg'=>$succ?'success':'fail',
  49. ];
  50. return json($arr);
  51. }
  52. }