WechatLogic.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. namespace app\mobile\logic;
  3. //关于微信相关操作的工具类
  4. use think\Exception;
  5. use think\exception\ValidateException;
  6. use think\facade\Config;
  7. use think\facade\Validate;
  8. class WechatLogic
  9. {
  10. //获取微信网页授权URL
  11. //$param $callback string 微信回跳地址(接口已经默认url_encode处理,授权成功会有$_GET['code']值,可用于下个步骤)
  12. //$param $state string 重定向后会带上state参数(开发者可以填写a-zA-Z0-9的参数值,最多128字节)
  13. //$param $scope string 应用授权作用域(snsapi_base | snsapi_userinfo)
  14. public static function getOauthRedirect(string $callback = '', string $state = '', string $scope = 'snsapi_base'): string
  15. {
  16. $val = Validate::rule([
  17. 'callback|微信回跳地址' => 'require|url',
  18. 'state|携带参数' => 'require|length:1,255',
  19. 'scope|应用授权作用域' => 'require|in:snsapi_base,snsapi_userinfo'
  20. ]);
  21. if (!$val->check(['callback' => $callback, 'state' => $state, 'scope' => $scope])) throw new ValidateException($val->getError());
  22. $oauth = &load_wechat('Oauth');
  23. $rs = $oauth->getOauthRedirect($callback, $state, $scope);
  24. halt('调用成功', $rs);
  25. }
  26. //通过code换取网页授权access_token(和openId)
  27. public static function getOauthAccessToken()
  28. {
  29. $oauth = &load_wechat('Oauth');
  30. $rs = $oauth->getOauthAccessToken();
  31. halt('最终结果:', $rs);
  32. }
  33. //获取预支付信息
  34. public static function getPrepayId(string $openid = '', string $body = '', string $out_trade_no = '', float $total_fee = 0, string $notify_url = '', string $trade_type = "JSAPI")
  35. {
  36. if ($notify_url == '') $notify_url = env('notify_url');
  37. $pay = &load_wechat('Pay');
  38. $rs = $pay->getPrepayId($openid, $body, $out_trade_no, bcmul($total_fee, '100'), $notify_url, $trade_type);
  39. halt('预支付结果:', $rs);
  40. }
  41. //支付通知回调
  42. public static function Notify()
  43. {
  44. //实例化支付接口
  45. $pay = &load_wechat('Pay');
  46. //获取支付通知
  47. $notifyInfo = $pay->getNotify();
  48. if ($notifyInfo === false) throw new Exception('获取微信支付通知数据失败,' . $pay->errMsg);
  49. elseif ($notifyInfo['result_code'] == 'SUCCESS' && $notifyInfo['return_code'] == 'SUCCESS') return $notifyInfo;// 支付状态完全成功,可以更新订单的支付状态了
  50. else throw new Exception('获取微信支付通知数据失败,' . json_encode($notifyInfo, JSON_UNESCAPED_UNICODE));
  51. }
  52. }