| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- namespace App\Http\Controllers\Api;
- use App\Http\logic\api\WiwiPayLogic;
- use App\Http\logic\api\WiwiPayCashierLogic;
- use App\Inter\PayMentInterFace;
- use App\Notification\TelegramBot;
- use App\Services\WiwiPay;
- use App\Util;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\Redis;
- class WiwiPayController implements PayMentInterFace
- {
- private $retryTimes = 0;
- public function pay_order($userId, $payAmt, $userName, $userEmail, $userPhone, $GiftsID, $buyIP, $AdId, $eventType, $pay_method = '')
- {
- $logic = new WiwiPayLogic();
- try {
- $res = $logic->pay_order($userId, $payAmt, $userPhone, $userEmail, $userName, $GiftsID, $buyIP, $AdId, $eventType, $pay_method);
- } catch (\Exception $exception) {
- Redis::set("PayErro_WiwiPay", 1);
- Redis::expire("PayErro_WiwiPay", 600);
- Util::WriteLog('WiwiPay_error', $exception->getMessage() . json_encode($logic->result ?? []));
- TelegramBot::getDefault()->sendProgramNotify("WiwiPay Except ", $exception->getMessage(), $exception);
- return apiReturnFail($logic->getError());
- }
- if (!empty($res) && isset($res['status']) && $res['status'] > 0) {
- $data = [
- 'content' => urldecode($res['payUrl'] ?? $res['url'] ?? ''),
- 'money' => $payAmt,
- 'prdOrdNo' => $res['mchOrderNo'],
- ];
- return apiReturnSuc($data);
- } else if ($res == false) {
- return apiReturnFail($logic->getError());
- } else {
- if ($this->retryTimes > 0) {
- Redis::set("PayErro_WiwiPay", 1);
- Redis::expire("PayErro_WiwiPay", 600);
- TelegramBot::getDefault()->sendProgramNotify("WiwiPay RetrunFail ", $logic->getError() . " | " . json_encode($res));
- return apiReturnFail($logic->getError());
- } else {
- $this->retryTimes++;
- return $this->pay_order($userId, $payAmt, $userName, $userEmail, $userPhone, $GiftsID, $buyIP, $AdId, $eventType, $pay_method);
- }
- }
- }
- // 支付异步回调
- public function notify(Request $request)
- {
- $post = $request->all();
- $payload = json_encode($post);
- Util::WriteLog('WiwiPay', "WiwiPay回调订单\n" . $payload);
- $service = new WiwiPay();
-
- try {
- $verify = $service->verifySign($post);
- } catch (\Exception $e) {
- Util::WriteLog('WiwiPay', '验签失败:' . $e->getMessage());
- return 'fail';
- }
- if (!$verify) {
- Util::WriteLog('WiwiPay', '签名错误');
- return 'fail';
- }
- $order_sn = @$post['mchOrderNo'];
- $logic = new WiwiPayLogic();
- try {
- $redis = Redis::connection();
- $ret = $logic->notify($post);
- if ($ret == 'SUCCESS') $redis->set($order_sn, $order_sn, 3600 * 24);
- return $ret;
- } catch (\Exception $exception) {
- Redis::set("PayErro_WiwiPay", 1);
- Redis::expire("PayErro_WiwiPay", 600);
- TelegramBot::getDefault()->sendProgramNotify("WiwiPay 订单回调执行 异常 ", json_encode($post), $exception);
- Util::WriteLog("WiwiPay_error", $post);
- return '{"success":false,"message":"商户自定义出错信息"}';
- }
- }
- public function sync_notify(Request $request)
- {
- Log::info('WiwiPay同步回调');
- echo 'WiwiPay同步回调';
- }
- // 提现异步回调
- public function cash_notify(Request $request)
- {
- $post = $request->all();
- $payload = json_encode($post);
- Util::WriteLog('WiwiPay', "WiwiPay cash 异步回调\n" . $payload);
- $service = new WiwiPay();
-
- try {
- $verify = $service->verifySign($post);
- } catch (\Exception $e) {
- Util::WriteLog('WiwiPay cash', '验签失败:' . $e->getMessage());
- return 'fail';
- }
- if (!$verify) {
- Util::WriteLog('WiwiPay cash', '签名错误');
- return 'fail';
- }
- $logic = new WiwiPayCashierLogic();
- try {
- return $logic->notify($post);
- } catch (\Exception $exception) {
- TelegramBot::getDefault()->sendProgramNotify("WiwiPay 提现异步回调执行 异常 ", json_encode($post), $exception);
- Util::WriteLog("WiwiPay_error", $post);
- return '{"success":false,"message":"商户自定义出错信息"}';
- }
- }
- }
|