Notify.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. $result = $data;
  42. if($result['txn_status'] == 'TRADE_SUCCESS') {
  43. // 验签
  44. $check_sign = LLianPayAccpSignature::checkSign(json_encode($data,JSON_UNESCAPED_UNICODE),$header['signature-data']);
  45. if(!$check_sign) return false;
  46. $orderNo = $result['orderInfo']['txn_seqno'];
  47. $order = Db::name('cloud_wallet_order')->where('order_no',$orderNo)->find();
  48. if (!$order) return false;
  49. if ($order['status']==1) return 'Success';
  50. Db::name('cloud_wallet_order')->where('order_no',$orderNo)->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  51. return 'Success';
  52. }
  53. }
  54. // 开户回调
  55. public function openAcctApplyNotify()
  56. {
  57. $result = input('post.');
  58. $result['openAcctApplyNotify'] = 'openAcctApplyNotify';
  59. if($result['user_status'] == 'NORMAL') {
  60. Db::name('store_member')->where('id',trim($result['user_id'],$this->prefix))->update(['cloud_wallet'=>1]);
  61. }
  62. }
  63. }