Browse Source

跟微信有关的相关操作(登录,支付,支付通知等)暂时屏蔽

wufeng 2 years ago
parent
commit
6ec02f8c6b

+ 11 - 11
app/mobile/controller/Account.php

@@ -50,17 +50,17 @@ class Account extends BaseController
     }
 
     //通过微信端code绑定账户
-    public function bindAccountByCode()
-    {
-
-        $code = $this->request->param('code', '');
-
-        $val = Validate::rule(['code|微信端code' => 'require']);
-        if (!$val->check(['code' => $code])) throw new ValidateException($val->getError());
-
-        return AccountLogic::bindAccountByCode($code);
-
-    }
+//    public function bindAccountByCode()
+//    {
+//
+//        $code = $this->request->param('code', '');
+//
+//        $val = Validate::rule(['code|微信端code' => 'require']);
+//        if (!$val->check(['code' => $code])) throw new ValidateException($val->getError());
+//
+//        return AccountLogic::bindAccountByCode($code);
+//
+//    }
 
 
 }

+ 15 - 14
app/mobile/logic/AccountLogic.php

@@ -59,12 +59,13 @@ class AccountLogic extends BaseLogic
 
 
             //获取微信网页授权URL
-            $url = '';
-            if ($data['callback_url'] != '') $url = WechatLogic::getOauthRedirect($data['callback_url'], $token);
+//            $url = '';
+//            if ($data['callback_url'] != '') $url = WechatLogic::getOauthRedirect($data['callback_url'], $token);
 
             Db::commit();
 
-            return json_show($url ? CommonModel::$error_jump : CommonModel::$success, '登录成功', ['token' => $token, 'url' => $url]);
+//            return json_show($url ? CommonModel::$error_jump : CommonModel::$success, '登录成功', ['token' => $token, 'url' => $url]);
+            return json_show(CommonModel::$success, '登录成功', ['token' => $token]);
 
         } catch (Exception $exception) {
             Db::rollback();
@@ -128,17 +129,17 @@ class AccountLogic extends BaseLogic
     }
 
     //通过微信端code绑定账户
-    public static function bindAccountByCode(): Json
-    {
-
-        $openId = WechatLogic::getOauthAccessToken();
-
-        $rs = AccountModel::where('id', self::$aid)
-            ->save(['wx_openId' => $openId, 'updaterid' => self::$aid, 'updater' => self::$aname, 'updatetime' => date('Y-m-d H:i:s')]);
-
-        return $rs ? json_show(CommonModel::$success, '绑定成功') : json_show(CommonModel::$error_param, '绑定失败');
-
-    }
+//    public static function bindAccountByCode(): Json
+//    {
+//
+//        $openId = WechatLogic::getOauthAccessToken();
+//
+//        $rs = AccountModel::where('id', self::$aid)
+//            ->save(['wx_openId' => $openId, 'updaterid' => self::$aid, 'updater' => self::$aname, 'updatetime' => date('Y-m-d H:i:s')]);
+//
+//        return $rs ? json_show(CommonModel::$success, '绑定成功') : json_show(CommonModel::$error_param, '绑定失败');
+//
+//    }
 
 
 }

+ 2 - 2
app/mobile/logic/OrderLogic.php

@@ -267,7 +267,7 @@ class OrderLogic extends BaseLogic
 
                 //获取预支付信息,
                 //@todo body要写什么????????
-                $result = WechatLogic::getPrepayId($openId, '', $masterOrderCode, $amount);
+//                $result = WechatLogic::getPrepayId($openId, '', $masterOrderCode, $amount);
 
 
                 //更新主订单表数据
@@ -282,7 +282,7 @@ class OrderLogic extends BaseLogic
                     'status' => MasterOrderModel::$order_status_wait_pay,
                 ]);
 
-                $res = ['is_need_pay' => 1, 'result' => $result];
+                $res = ['is_need_pay' => 1, 'result' => ''];
 
             }
 

+ 79 - 79
app/mobile/logic/WechatLogic.php

@@ -12,83 +12,83 @@ use think\facade\Validate;
 class WechatLogic
 {
 
-    //获取微信网页授权URL
-    //$param $callback string 微信回跳地址(接口已经默认url_encode处理,授权成功会有$_GET['code']值,可用于下个步骤)
-    //$param $state string 重定向后会带上state参数(开发者可以填写a-zA-Z0-9的参数值,最多128字节
-    //$param $scope string 应用授权作用域(snsapi_base | snsapi_userinfo
-    public static function getOauthRedirect(string $callback = '', string $state = '', string $scope = 'snsapi_base'): string
-    {
-
-        $val = Validate::rule([
-            'callback|微信回跳地址' => 'require|url',
-            'state|携带参数' => 'require|length:1,255',
-            'scope|应用授权作用域' => 'require|in:snsapi_base,snsapi_userinfo'
-        ]);
-
-        if (!$val->check(['callback' => $callback, 'state' => $state, 'scope' => $scope])) throw new ValidateException($val->getError());
-
-        $oauth = &load_wechat('Oauth');
-
-        $rs = $oauth->getOauthRedirect($callback, $state, $scope);
-
-        halt('调用成功', $rs);
-
-    }
-
-
-    //通过code换取网页授权access_token(和openId)
-    public static function getOauthAccessToken()
-    {
-
-        $oauth = &load_wechat('Oauth');
-
-        $rs = $oauth->getOauthAccessToken();
-
-        halt('最终结果:', $rs);
-    }
-
-
-    //获取预支付信息
-    public static function getPrepayId(string $openid = '', string $body = '', string $out_trade_no = '', float $total_fee = 0, string $notify_url = '', string $trade_type = "JSAPI")
-    {
-
-        if ($notify_url == '') $notify_url = env('notify_url');
-
-        $pay = &load_wechat('Pay');
-
-        $rs = $pay->getPrepayId($openid, $body, $out_trade_no, bcmul($total_fee, '100'), $notify_url, $trade_type);
-
-        halt('预支付结果:', $rs);
-    }
-
-
-    //支付通知回调
-    public static function Notify()
-    {
-
-        //实例化支付接口
-        $pay = &load_wechat('Pay');
-
-        //获取支付通知
-        $notifyInfo = $pay->getNotify();
-
-        if ($notifyInfo === false) throw new Exception('获取微信支付通知数据失败,' . $pay->errMsg);
-        elseif ($notifyInfo['result_code'] == 'SUCCESS' && $notifyInfo['return_code'] == 'SUCCESS') return $notifyInfo;// 支付状态完全成功,可以更新订单的支付状态了
-        else throw new Exception('获取微信支付通知数据失败,' . json_encode($notifyInfo, JSON_UNESCAPED_UNICODE));
-
-    }
-
-
-    //@todo 校验订单状态,确认支付结果
-    public static function checkPayResult(string $out_trade_no = '')
-    {
-        $pay = &load_wechat('Pay');
-
-        $rs = $pay->queryOrder($out_trade_no);
-
-        halt('订单详情:', $rs);
-
-    }
-
-
+    /**
+     * //获取微信网页授权URL
+     * //$param $callback string 微信回跳地址(接口已经默认url_encode处理,授权成功会有$_GET['code']值,可用于下个步骤
+     * //$param $state string 重定向后会带上state参数(开发者可以填写a-zA-Z0-9的参数值,最多128字节
+     * //$param $scope string 应用授权作用域(snsapi_base | snsapi_userinfo)
+     * public static function getOauthRedirect(string $callback = '', string $state = '', string $scope = 'snsapi_base'): string
+     * {
+     *
+     * $val = Validate::rule([
+     * 'callback|微信回跳地址' => 'require|url',
+     * 'state|携带参数' => 'require|length:1,255',
+     * 'scope|应用授权作用域' => 'require|in:snsapi_base,snsapi_userinfo'
+     * ]);
+     *
+     * if (!$val->check(['callback' => $callback, 'state' => $state, 'scope' => $scope])) throw new ValidateException($val->getError());
+     *
+     * $oauth = &load_wechat('Oauth');
+     *
+     * $rs = $oauth->getOauthRedirect($callback, $state, $scope);
+     *
+     * halt('调用成功', $rs);
+     *
+     * }
+     *
+     *
+     * //通过code换取网页授权access_token(和openId)
+     * public static function getOauthAccessToken()
+     * {
+     *
+     * $oauth = &load_wechat('Oauth');
+     *
+     * $rs = $oauth->getOauthAccessToken();
+     *
+     * halt('最终结果:', $rs);
+     * }
+     *
+     *
+     * //获取预支付信息
+     * public static function getPrepayId(string $openid = '', string $body = '', string $out_trade_no = '', float $total_fee = 0, string $notify_url = '', string $trade_type = "JSAPI")
+     * {
+     *
+     * if ($notify_url == '') $notify_url = env('notify_url');
+     *
+     * $pay = &load_wechat('Pay');
+     *
+     * $rs = $pay->getPrepayId($openid, $body, $out_trade_no, bcmul($total_fee, '100'), $notify_url, $trade_type);
+     *
+     * halt('预支付结果:', $rs);
+     * }
+     *
+     *
+     * //支付通知回调
+     * public static function Notify()
+     * {
+     *
+     * //实例化支付接口
+     * $pay = &load_wechat('Pay');
+     *
+     * //获取支付通知
+     * $notifyInfo = $pay->getNotify();
+     *
+     * if ($notifyInfo === false) throw new Exception('获取微信支付通知数据失败,' . $pay->errMsg);
+     * elseif ($notifyInfo['result_code'] == 'SUCCESS' && $notifyInfo['return_code'] == 'SUCCESS') return $notifyInfo;// 支付状态完全成功,可以更新订单的支付状态了
+     * else throw new Exception('获取微信支付通知数据失败,' . json_encode($notifyInfo, JSON_UNESCAPED_UNICODE));
+     *
+     * }
+     *
+     *
+     * //@todo 校验订单状态,确认支付结果
+     * public static function checkPayResult(string $out_trade_no = '')
+     * {
+     * $pay = &load_wechat('Pay');
+     *
+     * $rs = $pay->queryOrder($out_trade_no);
+     *
+     * halt('订单详情:', $rs);
+     *
+     * }
+     **/
 }

+ 3 - 3
app/mobile/route/app.php

@@ -7,11 +7,11 @@ Route::rule('login', 'Account/login');//登录
 Route::rule('logout', 'Account/logout');//登出
 Route::rule('info', 'Account/info');//账户详情
 Route::rule('updatePassword', 'Account/updatePassword');//修改密码
-Route::rule('bindAccountByCode', 'Account/bindAccountByCode');//通过微信端code绑定账户
+//Route::rule('bindAccountByCode', 'Account/bindAccountByCode');//通过微信端code绑定账户
 
 //【支付】
-Route::rule('notify', 'Pay/Notify');//微信支付成功后的异步通知及订单处理
-Route::rule('checkPayResult', 'Pay/checkPayResult');//检查支付结果
+//Route::rule('notify', 'Pay/Notify');//微信支付成功后的异步通知及订单处理
+//Route::rule('checkPayResult', 'Pay/checkPayResult');//检查支付结果
 
 
 //【公共】