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 env('root_path').'application/common/library/llp/src/security/LLianPayAccpSignature.php';
  13. require env('root_path').'application/common/library/llp/src/cfg.php';
  14. require env('root_path').'application/common/library/llp/src/client/LLianPayClient.php';
  15. require env('root_path').'application/common/library/llp/src/params/TradeCreateParams.php';
  16. require env('root_path').'application/common/library/llp/src/params/TradeCreateOrderInfo.php';
  17. require env('root_path').'application/common/library/llp/src/params/TradeCreatePayeeInfo.php';
  18. require env('root_path').'application/common/library/llp/src/params/TradeCreatePayerInfo.php';
  19. require 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 lianLianNotify()
  38. {
  39. $header = app()->request->header();
  40. $result = input('post.');
  41. if($result['txn_status'] == 'TRADE_SUCCESS') {
  42. // 验签
  43. $check_sign = LLianPayAccpSignature::checkSign(json_encode($result,JSON_UNESCAPED_UNICODE),$header['signature-data']);
  44. if(!$check_sign) return false;
  45. $orderNo = $result['orderInfo']['txn_seqno'];
  46. $order = Db::name('store_recharge_order')->where('order_no',$orderNo)->find();
  47. if (!$order) return false;
  48. if ($order['status']==1) return 'Success';
  49. Db::name('store_recharge_order')->where('order_no',$orderNo)->update(['status'=>1,'pay_at'=>date('Y-m-d H:i:s')]);
  50. memberMoneyChange($order['total_price'],3,$order['mid'],'余额充值',1,$order['id'],5);
  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. }