123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 支付回调通知
- */
- namespace app\citys\controller\api\v1;
- use app\citys\controller\api\Base;
- use app\citys\model\Citys;
- use app\citys\model\CitysConfig;
- use app\citys\model\CitysPhone;
- use app\citys\model\CitysOrder;
- use app\common\facade\WechatPay;
- use filter\Filter;
- use Exception;
- class Notify extends Base{
- /**
- * 发布同城通知
- * @return void
- */
- public function index(){
- try {
- $response = WechatPay::doPay($this->miniapp_id)->handlePaidNotify(function($message,$fail){
- $order = Citys::where(['is_pay'=>0,'order_no' => Filter::filter_escape($message['out_trade_no'])])->find();
- if (empty($order)) {
- return true;
- }
- if ($message['return_code'] === 'SUCCESS') {
- if($message['result_code'] === 'SUCCESS'){
- $sub_mchid = $message['sub_mch_id'] ?? '';
- $ispay = WechatPay::doPay($this->miniapp_id,false,$sub_mchid)->order->queryByOutTradeNumber($order->order_no);
- if ($ispay['return_code'] === 'SUCCESS') {
- if ($ispay['result_code'] === 'SUCCESS') {
- if ($ispay['trade_state'] === 'SUCCESS') {
- $order->is_pay = 1;
- $order->is_top = empty($order->top_money)?0:1;
- $order->is_lock = 0;
- $order->is_pay_time = strtotime($ispay['time_end']);
- $order->save();
- return true;
- }
- }
- }
- }
- }
- return $fail('通信失败,请稍后再通知我');
- });
- $response->send();
- }catch (Exception $e) {
- $this->error('页面不存在');
- }
- }
- /**
- * 订购
- * @return void
- */
- public function order(){
- try {
- $response = WechatPay::doPay($this->miniapp_id)->handlePaidNotify(function($message,$fail){
- $order = CitysOrder::where(['paid_at'=>0,'order_no' => Filter::filter_escape($message['out_trade_no'])])->find();
- if (empty($order)) {
- return true;
- }
- if ($message['return_code'] === 'SUCCESS') {
- if($message['result_code'] === 'SUCCESS'){
- $sub_mchid = $message['sub_mch_id'] ?? '';
- $ispay = WechatPay::doPay($this->miniapp_id,false,$sub_mchid)->order->queryByOutTradeNumber($order->order_no);
- if ($ispay['return_code'] === 'SUCCESS') {
- if ($ispay['result_code'] === 'SUCCESS') {
- if ($ispay['trade_state'] === 'SUCCESS') {
- $order->paid_at = 1;
- $order->paid_time = strtotime($ispay['time_end']);
- $order->paid_no = $ispay['transaction_id'];
- $order->save();
- return true;
- }
- }
- }
- }
- }
- return $fail('通信失败,请稍后再通知我');
- });
- $response->send();
- }catch (Exception $e) {
- $this->error('页面不存在');
- }
- }
- /**
- * 订购
- * @return void
- */
- public function showPhone(){
- try {
- $response = WechatPay::doPay($this->miniapp_id)->handlePaidNotify(function($message,$fail){
- $result = CitysPhone::where(['paid_at'=>0,'order_no' => Filter::filter_escape($message['out_trade_no'])])->find();
- if (empty($result)) {
- return true;
- }
- if ($message['return_code'] === 'SUCCESS') {
- if($message['result_code'] === 'SUCCESS'){
- $sub_mchid = $message['sub_mch_id'] ?? '';
- $ispay = WechatPay::doPay($this->miniapp_id,false,$sub_mchid)->order->queryByOutTradeNumber($result->order_no);
- if ($ispay['return_code'] === 'SUCCESS') {
- if ($ispay['result_code'] === 'SUCCESS') {
- if ($ispay['trade_state'] === 'SUCCESS') {
- $result->paid_at = 1;
- $result->paid_time = strtotime($ispay['time_end']);
- $result->paid_no = $ispay['transaction_id'];
- $result->save();
- return true;
- }
- }
- }
- }
- }
- return $fail('通信失败,请稍后再通知我');
- });
- $response->send();
- }catch (Exception $e) {
- $this->error('页面不存在');
- }
- }
- }
|