Notify.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. namespace app\api\controller;
  3. use llianpay\accp\security\LLianPayAccpSignature;
  4. use think\Controller;
  5. use think\Db;
  6. use llianpay\accp\client\LLianPayClient;
  7. use llianpay\accp\params\TradeCreateParams;
  8. use llianpay\accp\params\TradeCreateOrderInfo;
  9. use llianpay\accp\params\TradeCreatePayeeInfo;
  10. use llianpay\accp\params\GetRandomParams;
  11. use llianpay\accp\params\TradeCreatePayerInfo;
  12. require_once env('root_path').'application/common/library/llp/src/security/LLianPayAccpSignature.php';
  13. require_once env('root_path').'application/common/library/llp/src/cfg.php';
  14. require_once env('root_path').'application/common/library/llp/src/client/LLianPayClient.php';
  15. require_once env('root_path').'application/common/library/llp/src/params/TradeCreateParams.php';
  16. require_once env('root_path').'application/common/library/llp/src/params/TradeCreateOrderInfo.php';
  17. require_once env('root_path').'application/common/library/llp/src/params/TradeCreatePayeeInfo.php';
  18. require_once env('root_path').'application/common/library/llp/src/params/TradeCreatePayerInfo.php';
  19. require_once env('root_path').'application/common/library/llp/src/params/GetRandomParams.php';
  20. /**
  21. * 连连异步回调
  22. * Class Notify
  23. */
  24. class Notify extends Controller
  25. {
  26. protected $prefix = 'xl_';
  27. public function __construct()
  28. {
  29. $data = input('post.');
  30. $header = app()->request->header();
  31. $notify_ip = request()->ip();
  32. file_put_contents("lianLianNotify.txt", json_encode($data,JSON_UNESCAPED_UNICODE) . "\n" . "\n", FILE_APPEND);
  33. file_put_contents("lianLianNotify.txt", json_encode($header) . "\n" . "\n", FILE_APPEND);
  34. file_put_contents("lianLianNotify.txt", json_encode(['ip'=>$notify_ip]) . "\n" . "\n", FILE_APPEND);
  35. }
  36. // 连连充值异步回调
  37. public function cloudWalletNotify()
  38. {
  39. $data = input('post.');
  40. $header = app()->request->header();
  41. $notify_ip = request()->ip();
  42. file_put_contents("lianLianNotify.txt", json_encode($data,JSON_UNESCAPED_UNICODE) . "\n" . "\n", FILE_APPEND);
  43. file_put_contents("lianLianNotify.txt", json_encode($header) . "\n" . "\n", FILE_APPEND);
  44. file_put_contents("lianLianNotify.txt", json_encode(['ip'=>$notify_ip]) . "\n" . "\n", FILE_APPEND);
  45. $result = $data;
  46. if($result['txn_status'] == 'TRADE_SUCCESS') {
  47. // 验签
  48. $check_sign = LLianPayAccpSignature::checkSign(json_encode($data,JSON_UNESCAPED_UNICODE),$header['signature-data']);
  49. if(!$check_sign) return false;
  50. $orderNo = $result['orderInfo']['txn_seqno'];
  51. $order = Db::name('cloud_wallet_order')->where('order_no',$orderNo)->find();
  52. if (!$order) return false;
  53. if ($order['status']==1) return 'Success';
  54. Db::name('cloud_wallet_order')->where('order_no',$orderNo)->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  55. return 'Success';
  56. }
  57. }
  58. // 开户回调
  59. public function openAcctApplyNotify()
  60. {
  61. $result = input('post.');
  62. $result['openAcctApplyNotify'] = 'openAcctApplyNotify';
  63. if($result['user_status'] == 'NORMAL') {
  64. Db::name('store_member')->where('id',trim($result['user_id'],$this->prefix))->update(['cloud_wallet'=>1]);
  65. }
  66. }
  67. //连连云钱包提现回调
  68. public function withdrawalNotify()
  69. {
  70. $data = input('post.');
  71. $header = app()->request->header();
  72. $notify_ip = request()->ip();
  73. file_put_contents("lianLianNotify.txt", json_encode($data,JSON_UNESCAPED_UNICODE) . "\n" . "\n", FILE_APPEND);
  74. file_put_contents("lianLianNotify.txt", json_encode($header) . "\n" . "\n", FILE_APPEND);
  75. file_put_contents("lianLianNotify.txt", json_encode(['ip'=>$notify_ip]) . "\n" . "\n", FILE_APPEND);
  76. $result = $data;
  77. $orderNo = $result['txn_seqno'];
  78. $withdraw_info = Db::name('cloud_wallet_withdraw')->where('order_no',$orderNo)->find();
  79. if(empty($withdraw_info)) return false;
  80. if($withdraw_info['is_over']) return 'Success';
  81. // 提现成功
  82. if($result['ret_code'] == '0000') {
  83. $check_sign = LLianPayAccpSignature::checkSign(json_encode($data,JSON_UNESCAPED_UNICODE),$header['signature-data']);
  84. if(!$check_sign) return false;
  85. Db::name('cloud_wallet_withdraw')->where('order_no',$orderNo)->update(['paid'=>1,'pay_time'=>time(),'is_over'=>1,'return_info'=>json_encode($result,JSON_UNESCAPED_UNICODE)]);
  86. }else{// 提现失败
  87. Db::name('cloud_wallet_withdraw')->where('id',$withdraw_info['id'])->update(['is_over'=>1,'return_info'=>json_encode($result,JSON_UNESCAPED_UNICODE)]);
  88. }
  89. return 'Success';
  90. }
  91. }