WechatLogic.php 1.9 KB

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