설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PayApi.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2020-05-22
  12. */
  13. namespace app\user\model;
  14. use think\Model;
  15. use think\Config;
  16. use think\Db;
  17. /**
  18. * 支付API数据层
  19. */
  20. class PayApi extends Model
  21. {
  22. private $home_lang = 'cn';
  23. private $key = ''; // key密钥
  24. //初始化
  25. protected function initialize()
  26. {
  27. // 需要调用`Model`的`initialize`方法
  28. parent::initialize();
  29. $this->times = getTime();
  30. $this->home_lang = get_home_lang();
  31. $this->url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
  32. }
  33. /*
  34. * 微信端H5支付,手机微信直接调起微信支付
  35. * @params string $openid : 用户的openid
  36. * @params string $out_trade_no : 商户订单号
  37. * @params number $total_fee : 订单金额,单位分
  38. * return string $result : 微信支付所需参数数组
  39. */
  40. public function getWechatPay($openid = '', $out_trade_no = '', $total_fee = 0, $PayInfo = [], $is_applets = 0, $transaction_type = 2)
  41. {
  42. if (isMobile() && isWeixin()) {
  43. $thirdparty = Db::name('users')->where(['users_id'=>session('users_id')])->getField('thirdparty');
  44. if (0 === intval($thirdparty) && empty($openid)) $openid = model('ShopPublicHandle')->weChatauthorizeCookie(session('users_id'));
  45. }
  46. // 获取微信配置信息
  47. if (empty($PayInfo)) {
  48. $where = [
  49. 'pay_id' => 1,
  50. 'pay_mark' => 'wechat'
  51. ];
  52. $PayInfo = Db::name('pay_api_config')->where($where)->getField('pay_info');
  53. if (empty($PayInfo)) return false;
  54. $PayInfo = unserialize($PayInfo);
  55. }
  56. // 支付备注
  57. $body = "微信支付";
  58. // 小程序配置
  59. if (1 === intval($is_applets)) {
  60. $miniproValue = Db::name('weapp_minipro0002')->where('type', 'minipro')->getField('value');
  61. if (empty($miniproValue)) return false;
  62. $miniproValue = !empty($miniproValue) ? json_decode($miniproValue, true) : [];
  63. $PayInfo['appid'] = $miniproValue['appId'];
  64. $body = "小程序支付";
  65. }
  66. // 支付备注
  67. if (1 == config('global.opencodetype')) {
  68. $web_name = tpCache('web.web_name');
  69. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  70. $body = $web_name . $body;
  71. }
  72. // 调用支付接口参数
  73. $params = [
  74. 'appid' => $PayInfo['appid'],
  75. 'attach' => "wechat|,|is_notify|,|" . $transaction_type . '|,|' . session('users_id'),
  76. 'body' => $body . "订单号: {$out_trade_no}",
  77. 'mch_id' => $PayInfo['mchid'],
  78. 'nonce_str' => md5($this->times . $openid),
  79. 'notify_url' => request()->domain() . ROOT_DIR . '/index.php', // 异步地址
  80. 'openid' => $openid,
  81. 'out_trade_no' => $out_trade_no,
  82. 'spbill_create_ip' => getClientIP(),
  83. 'total_fee' => strval($total_fee * 100),
  84. 'trade_type' => 'JSAPI'
  85. ];
  86. // 微信公众号支付密钥
  87. $this->key = $PayInfo['key'];
  88. // 微信小程序参数签名
  89. $params['sign'] = $this->getParamsSign($params);
  90. // 调用接口返回数据
  91. $result = $this->getParamsArr($this->executePostRequest($this->getParamsXml($params)));
  92. // 请求接口成功
  93. if (!empty($result['return_code']) && $result['return_code'] == 'SUCCESS' && $result['return_msg'] == 'OK') {
  94. // 返回支付所需参数
  95. return [
  96. 'appId' => $PayInfo['appid'],
  97. 'nonceStr' => $params['nonce_str'],
  98. 'timeStamp' => strval($this->times),
  99. 'package' => 'prepay_id='.$result['prepay_id'],
  100. 'signType' => 'MD5',
  101. // 微信小程序支付签名
  102. 'paySign' => $this->getPaySign($PayInfo['appid'], $params['nonce_str'], $result['prepay_id']),
  103. ];
  104. }
  105. // 请求接口失败
  106. else if (!empty($result['return_code']) && $result['return_code'] == 'FAIL') {
  107. if (stristr($result['return_msg'], '签名错误')) {
  108. $result['return_msg'] = '微信支付KEY密钥不正确';
  109. } else if (stristr($result['return_msg'], 'mch_id')) {
  110. $result['return_msg'] = '微信支付商户号配置不正确';
  111. } else if (stristr($result['return_msg'], 'appid')) {
  112. $result['return_msg'] = '微信支付AppID配置不正确';
  113. }
  114. return $result;
  115. } else {
  116. $result['postCode'] = 'error';
  117. if (!empty($result['return_code']) && $result['return_code'] == 'FAIL' && empty($openid)) $result['return_msg'] = '未配置公众号信息,无法进行微信支付';
  118. return $result;
  119. }
  120. }
  121. /*
  122. * 微信H5支付,手机浏览器调起微信支付
  123. * @params string $out_trade_no : 商户订单号
  124. * @params number $total_fee : 订单金额,单位分
  125. * return string $mweb_url : 二维码URL链接
  126. */
  127. public function getMobilePay($out_trade_no = '', $total_fee = 0, $PayInfo = [], $transaction_type = 2)
  128. {
  129. // 获取微信配置信息
  130. if (empty($PayInfo)) {
  131. $where = [
  132. 'pay_id' => 1,
  133. 'pay_mark' => 'wechat'
  134. ];
  135. $PayInfo = Db::name('pay_api_config')->where($where)->getField('pay_info');
  136. if (empty($PayInfo)) return false;
  137. $PayInfo = unserialize($PayInfo);
  138. }
  139. // 支付备注
  140. $body = "微信支付";
  141. if (1 == config('global.opencodetype')) {
  142. $web_name = tpCache('web.web_name');
  143. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  144. $body = $web_name . $body;
  145. }
  146. // 调用支付接口参数
  147. $params = [
  148. 'appid' => $PayInfo['appid'],
  149. 'attach' => "wechat|,|is_notify|,|" . $transaction_type . '|,|' . session('users_id'),
  150. 'body' => $body . "订单号: {$out_trade_no}",
  151. 'mch_id' => $PayInfo['mchid'],
  152. 'nonce_str' => md5($this->times),
  153. 'notify_url' => request()->domain() . ROOT_DIR . '/index.php', // 异步地址
  154. 'out_trade_no' => $out_trade_no,
  155. 'spbill_create_ip' => getClientIP(),
  156. 'total_fee' => strval($total_fee * 100),
  157. 'trade_type' => 'MWEB'
  158. ];
  159. $params['scene_info'] = '{"h5_info":{"type":"Wap","wap_url":' . $params['notify_url'] . ',"wap_name":"微信支付"}}';
  160. // 微信支付密钥
  161. $this->key = $PayInfo['key'];
  162. // 微信支付参数签名
  163. $params['sign'] = $this->getParamsSign($params);
  164. // 调用接口返回数据
  165. $result = $this->getParamsArr($this->executePostRequest($this->getParamsXml($params)));
  166. // 请求接口成功
  167. if (isset($result['return_code']) && $result['return_code'] == 'SUCCESS' && $result['return_msg'] == 'OK') {
  168. if (!empty($result['mweb_url'])) return $result['mweb_url'];
  169. if (!empty($result['err_code'])) return $result['err_code_des'];
  170. }
  171. // 请求接口失败
  172. else if (!empty($result['return_code']) && $result['return_code'] == 'FAIL') {
  173. if (stristr($result['return_msg'], '签名错误')) {
  174. $result['return_msg'] = '微信支付KEY密钥不正确';
  175. } else if (stristr($result['return_msg'], 'mch_id')) {
  176. $result['return_msg'] = '微信支付商户号配置不正确';
  177. } else if (stristr($result['return_msg'], 'appid')) {
  178. $result['return_msg'] = '微信支付AppID配置不正确';
  179. }
  180. return $result;
  181. }
  182. return $result;
  183. }
  184. /*
  185. * 微信二维码支付
  186. * @params string $out_trade_no : 商户订单号
  187. * @params number $total_fee : 订单金额,单位分
  188. * return string $code_url : 二维码URL链接
  189. */
  190. public function payForQrcode($out_trade_no = '', $total_fee = 0, $transaction_type = 2)
  191. {
  192. if (!empty($out_trade_no) || !empty($total_fee)) {
  193. // 支付配置
  194. $where = [
  195. 'pay_id' => 1,
  196. 'pay_mark' => 'wechat'
  197. ];
  198. $PayInfo = Db::name('pay_api_config')->where($where)->getField('pay_info');
  199. if (empty($PayInfo)) return false;
  200. $PayInfo = unserialize($PayInfo);
  201. // 支付备注
  202. $body = "微信支付";
  203. if (1 == config('global.opencodetype')) {
  204. $web_name = tpCache('web.web_name');
  205. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  206. $body = $web_name . $body;
  207. }
  208. // 调用支付接口参数
  209. $params = [
  210. 'appid' => $PayInfo['appid'],
  211. 'attach' => "wechat|,|is_notify|,|" . $transaction_type . '|,|' . session('users_id'),
  212. 'body' => $body . "订单号: {$out_trade_no}",
  213. 'mch_id' => $PayInfo['mchid'],
  214. 'nonce_str' => md5($this->times),
  215. 'notify_url' => request()->domain() . ROOT_DIR . '/index.php', // 异步地址
  216. 'out_trade_no' => $out_trade_no,
  217. 'spbill_create_ip' => getClientIP(),
  218. 'total_fee' => strval($total_fee * 100),
  219. 'trade_type' => 'NATIVE'
  220. ];
  221. // 微信公众号支付密钥
  222. $this->key = $PayInfo['key'];
  223. // 微信小程序参数签名
  224. $params['sign'] = $this->getParamsSign($params);
  225. // 调用接口返回数据
  226. $result = $this->getParamsArr($this->executePostRequest($this->getParamsXml($params)));
  227. // 请求接口成功
  228. if (isset($result['return_code']) && $result['return_code'] == 'SUCCESS' && $result['return_msg'] == 'OK') {
  229. return $result['code_url'];
  230. }
  231. // 请求接口失败
  232. else if (!empty($result['return_code']) && $result['return_code'] == 'FAIL') {
  233. if (stristr($result['return_msg'], '签名错误')) {
  234. $result['return_msg'] = '微信支付KEY密钥不正确';
  235. } else if (stristr($result['return_msg'], 'mch_id')) {
  236. $result['return_msg'] = '微信支付商户号配置不正确';
  237. } else if (stristr($result['return_msg'], 'appid')) {
  238. $result['return_msg'] = '微信支付AppID配置不正确';
  239. }
  240. return $result;
  241. }
  242. return $result;
  243. }
  244. }
  245. /*
  246. * 微信小程序支付
  247. * @params string $openid : 用户的openid
  248. * @params string $out_trade_no : 商户订单号
  249. * @params number $total_fee : 订单金额,单位分
  250. * return string $result : 微信支付所需参数数组
  251. */
  252. public function getWechatAppletsPay($openid = '', $out_trade_no = '', $total_fee = 0, $transaction_type = 2, $miniproInfo = [])
  253. {
  254. // 微信小程序配置
  255. if (empty($miniproInfo)) {
  256. $miniproInfo = model('ShopPublicHandle')->getSpecifyAppletsConfig();
  257. // $dataConf = tpSetting("OpenMinicode.conf_weixin", [], 'cn');
  258. // $miniproInfo = json_decode($dataConf, true);
  259. }
  260. // 支付备注
  261. $body = "小程序支付";
  262. if (1 == config('global.opencodetype')) {
  263. $web_name = tpCache('web.web_name');
  264. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  265. $body = $web_name . $body;
  266. }
  267. // 调用支付接口参数
  268. $params = [
  269. 'appid' => $miniproInfo['appid'],
  270. 'attach' => "wechat|,|is_notify|,|" . $transaction_type . '|,|' . session('users_id'),
  271. 'body' => $body . "订单号: {$out_trade_no}",
  272. 'mch_id' => $miniproInfo['mchid'],
  273. 'nonce_str' => md5($this->times . $openid),
  274. 'notify_url' => request()->domain() . ROOT_DIR . '/index.php', // 异步地址
  275. 'openid' => $openid,
  276. 'out_trade_no' => $out_trade_no,
  277. 'spbill_create_ip' => getClientIP(),
  278. 'total_fee' => strval($total_fee * 100),
  279. 'trade_type' => 'JSAPI'
  280. ];
  281. // 微信小程序支付密钥
  282. $this->key = $miniproInfo['apikey'];
  283. // 微信小程序参数签名
  284. $params['sign'] = $this->getParamsSign($params);
  285. // 调用接口返回数据
  286. $result = $this->getParamsArr($this->executePostRequest($this->getParamsXml($params)));
  287. // 请求接口成功
  288. if ($result['return_code'] == 'SUCCESS' && $result['return_msg'] == 'OK') {
  289. if ($result['result_code'] == 'SUCCESS') {
  290. // 返回支付所需参数
  291. return [
  292. 'prepay_id' => $result['prepay_id'],
  293. 'nonceStr' => $params['nonce_str'],
  294. 'timeStamp' => strval($this->times),
  295. 'return_code' => $result['return_code'],
  296. // 微信小程序支付签名
  297. 'paySign' => $this->getPaySign($miniproInfo['appid'], $params['nonce_str'], $result['prepay_id']),
  298. ];
  299. }
  300. }
  301. // 请求接口失败
  302. else if (!empty($result['return_code']) && $result['return_code'] == 'FAIL') {
  303. if (stristr($result['return_msg'], '签名错误')) {
  304. $result['return_msg'] = '小程序支付APIv2密钥不正确';
  305. } else if (stristr($result['return_msg'], 'mch_id')) {
  306. $result['return_msg'] = '小程序支付商户号配置不正确';
  307. } else if (stristr($result['return_msg'], 'appid')) {
  308. $result['return_msg'] = '小程序支付AppID配置不正确';
  309. }
  310. return $result;
  311. }
  312. return $result;
  313. }
  314. /*
  315. * 查询微信小程序支付结果
  316. * @params string $openid : 用户的openid
  317. * @params string $out_trade_no : 商户订单号
  318. * @params number $total_fee : 订单金额,单位分
  319. * return string $code_url : 二维码URL链接
  320. */
  321. public function getWeChatPayResult($openid = '', $out_trade_no = '')
  322. {
  323. // 微信小程序配置
  324. $dataConf = tpSetting("OpenMinicode.conf_weixin", [], 'cn');
  325. $miniproInfo = json_decode($dataConf, true);
  326. // 调用支付接口参数
  327. $params = [
  328. 'appid' => $miniproInfo['appid'],
  329. 'mch_id' => $miniproInfo['mchid'],
  330. 'nonce_str' => !empty($openid) ? md5($this->times . $openid) : md5($this->times),
  331. 'out_trade_no' => $out_trade_no
  332. ];
  333. // 微信小程序支付密钥
  334. $this->key = $miniproInfo['apikey'];
  335. // 微信小程序参数签名
  336. $params['sign'] = $this->getParamsSign($params);
  337. // 微信小程序查询支付结果URL
  338. $this->url = 'https://api.mch.weixin.qq.com/pay/orderquery';
  339. // 调用接口返回数据
  340. $result = $this->getParamsArr($this->executePostRequest($this->getParamsXml($params)));
  341. if (!empty($result['return_msg'])) {
  342. if (stristr($result['return_msg'], '签名错误')) {
  343. $result['return_msg'] = '小程序支付密钥不正确';
  344. } else if (stristr($result['return_msg'], 'mch_id')) {
  345. $result['return_msg'] = '小程序商户号配置不正确';
  346. } else if (stristr($result['return_msg'], 'appid')) {
  347. $result['return_msg'] = '小程序AppID配置不正确';
  348. }
  349. }
  350. return $result;
  351. }
  352. // 对参数排序,生成MD5加密签名
  353. private function getParamsSign($params = [])
  354. {
  355. // 按字典序排序参数后拼装支付密钥key参数再进行MD5加密后转为纯大写字母返回
  356. ksort($params);
  357. return strtoupper(md5($this->getParamsUrl($params) . '&key=' . $this->key));
  358. }
  359. // 获取提交参数xml(arr转成xml)
  360. private function getParamsXml($params = [])
  361. {
  362. if (!is_array($params) || count($params) <= 0) return false;
  363. $xml = "<xml>";
  364. foreach ($params as $key => $val) {
  365. if (is_numeric($val)) {
  366. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  367. } else {
  368. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  369. }
  370. }
  371. $xml .= "</xml>";
  372. return $xml;
  373. }
  374. // POST提交数据
  375. private function executePostRequest($paramsXml = '')
  376. {
  377. $ch = curl_init();
  378. curl_setopt($ch, CURLOPT_URL, $this->url);
  379. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
  380. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  381. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  382. curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
  383. curl_setopt($ch, CURLOPT_POSTFIELDS, $paramsXml);
  384. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  385. $result = curl_exec($ch);
  386. // 返回错误提示
  387. if (curl_errno($ch)) return 'Errno: ' . curl_error($ch);
  388. // 返回成功数据
  389. curl_close($ch);
  390. return $result;
  391. }
  392. // 获取返回参数数组(xml转成arr)
  393. private function getParamsArr($xml = [])
  394. {
  395. // 禁止引用外部xml实体
  396. @libxml_disable_entity_loader(true);
  397. return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  398. }
  399. // 微信小程序支付签名
  400. private function getPaySign($appid = '', $nonceStr = '', $prepay_id = '')
  401. {
  402. $result = [
  403. 'appId' => $appid,
  404. 'nonceStr' => $nonceStr,
  405. 'package' => 'prepay_id=' . $prepay_id,
  406. 'signType' => 'MD5',
  407. 'timeStamp' => strval($this->times),
  408. ];
  409. return $this->getParamsSign($result);
  410. // 按字典序排序参数后拼装支付密钥key参数再进行MD5加密后转为纯大写字母返回
  411. // ksort($result);
  412. // return strtoupper(md5($this->getParamsUrl($result) . '&key=' . $this->key));
  413. }
  414. // 获取数组参数拼装的URL参数
  415. private function getParamsUrl($values)
  416. {
  417. $url = '';
  418. foreach ($values as $key => $value) {
  419. if ($key != 'sign' && $value != '' && !is_array($value)) $url .= $key . '=' . $value . '&';
  420. }
  421. return trim($url, '&');
  422. }
  423. /*
  424. * 支付宝新版支付,生成支付链接方法。
  425. * @params string $data 订单表数据,必须传入
  426. */
  427. public function getNewAliPayPayUrl($data = [])
  428. {
  429. if (empty($data)) return false;
  430. // 获取支付宝配置信息
  431. $where = [
  432. 'pay_id' => 2,
  433. 'pay_mark' => 'alipay'
  434. ];
  435. $PayApiConfig = Db::name('pay_api_config')->field('pay_info, pay_terminal')->where($where)->find();
  436. if (empty($PayApiConfig['pay_info'])) return false;
  437. $PayInfo = unserialize($PayApiConfig['pay_info']);
  438. $PayTerminal = !empty($PayApiConfig['pay_terminal']) ? unserialize($PayApiConfig['pay_terminal']) : [];
  439. // 后台支付宝支付配置信息
  440. $config['app_id'] = $PayInfo['app_id'];
  441. $config['merchant_private_key'] = $PayInfo['merchant_private_key'];
  442. $config['alipay_public_key'] = $PayInfo['alipay_public_key'];
  443. // 支付订单类型
  444. $config['transaction_type'] = $type = $data['transaction_type'];
  445. // 异步地址
  446. $config['notify_url'] = request()->domain() . ROOT_DIR . '/index.php?transaction_type=' . $type . '&is_notify=1';
  447. // 同步地址
  448. $config['return_url'] = url('user/Pay/alipay_return', ['transaction_type' => $type, 'is_notify' => 2], true, true);
  449. // 支付接口固定参数
  450. $config['charset'] = 'UTF-8';
  451. $config['sign_type'] = 'RSA2';
  452. $config['gatewayUrl'] = 'https://openapi.alipay.com/gateway.do';
  453. // 商户订单号,商户网站订单系统中唯一订单号,必填
  454. $out_trade_no = trim($data['unified_number']);
  455. // 付款金额,必填
  456. $total_amount = trim($data['unified_amount']);
  457. // 订单名称,必填
  458. $subject = '支付';
  459. // 商品描述,可空
  460. $body = '支付宝支付';
  461. // 处理订单名称级商品描述
  462. if (1 == config('global.opencodetype')) {
  463. $web_name = tpCache('web.web_name');
  464. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  465. $subject = $web_name . $subject;
  466. $body = $web_name . $body;
  467. }
  468. // 引入SDK文件
  469. vendor('alipay.pagepay.service.AlipayTradeService');
  470. vendor('alipay.pagepay.buildermodel.AlipayTradePagePayContentBuilder');
  471. // 实例化并且构造参数
  472. $PayContentBuilder = new \AlipayTradePagePayContentBuilder($PayTerminal, isMobile());
  473. $PayContentBuilder->setBody($body . "订单号:{$out_trade_no}");
  474. $PayContentBuilder->setSubject($subject . "订单号:{$out_trade_no}");
  475. $PayContentBuilder->setOutTradeNo($out_trade_no);
  476. $PayContentBuilder->setTotalAmount($total_amount);
  477. // 调用SDK进行支付宝支付
  478. $TradeService = new \AlipayTradeService($config);
  479. // 支付宝支付终端分发调用
  480. if (true === isMobile() && !empty($PayTerminal['mobile'])) {
  481. // 支付宝手机端支付调用
  482. $response = $TradeService->wapPay($PayContentBuilder, $config['return_url'], $config['notify_url']);
  483. } else if (!empty($PayTerminal['computer']) || !empty($PayTerminal[0])) {
  484. // 支付宝电脑端支付调用
  485. $response = $TradeService->pagePay($PayContentBuilder, $config['return_url'], $config['notify_url']);
  486. } else {
  487. // 支付终端全部关闭
  488. return '后台支付宝支付配置中支付终端全部关闭,请联系管理员!';
  489. }
  490. }
  491. /*
  492. * 支付宝旧版支付,生成支付链接方法。
  493. * @params string $data 订单表数据,必须传入
  494. * @params string $alipay 支付宝配置信息,通过 getUsersConfigData 方法调用数据
  495. * return string $alipay_url 支付宝支付链接
  496. */
  497. public function getOldAliPayPayUrl($data = [], $alipay = [])
  498. {
  499. // 重要参数,支付宝配置信息
  500. if (empty($alipay)) {
  501. $where = [
  502. 'pay_id' => 2,
  503. 'pay_mark' => 'alipay'
  504. ];
  505. $PayInfo = Db::name('pay_api_config')->where($where)->getField('pay_info');
  506. if (empty($PayInfo)) return false;
  507. $alipay = unserialize($PayInfo);
  508. }
  509. // 参数设置
  510. $order['out_trade_no'] = $data['unified_number']; //订单号
  511. $order['price'] = $data['unified_amount']; //订单金额
  512. $charset = 'utf-8'; //编码格式
  513. $real_method = '2'; //调用方式
  514. $agent = 'C4335994340215837114'; //代理机构
  515. $seller_email = $alipay['account'];//支付宝用户账号
  516. $security_check_code = $alipay['code']; //交易安全校验码
  517. $partner = $alipay['id']; //合作者身份ID
  518. switch ($real_method){
  519. case '0':
  520. $service = 'trade_create_by_buyer';
  521. break;
  522. case '1':
  523. $service = 'create_partner_trade_by_buyer';
  524. break;
  525. case '2':
  526. $service = 'create_direct_pay_by_user';
  527. break;
  528. }
  529. // 支付备注
  530. $body = "支付";
  531. if (1 == config('global.opencodetype')) {
  532. $web_name = tpCache('web.web_name');
  533. $web_name = !empty($web_name) ? "[{$web_name}]" : "";
  534. $body = $web_name.$body;
  535. }
  536. // 跳转链接
  537. $referurl = input('param.referurl/s', null, 'urldecode');
  538. $referurl = base64_encode($referurl);
  539. //自定义,用于验证
  540. $type = $data['transaction_type'];
  541. // 异步地址
  542. $notify_url = request()->domain().ROOT_DIR.'/index.php?transaction_type='.$type.'&is_notify=1';
  543. // 同步地址
  544. $return_url = url('user/Pay/alipay_return', ['transaction_type'=>$type,'is_notify'=>2,'referurl'=>$referurl], true, true);
  545. // 参数拼装
  546. $parameter = array(
  547. 'agent' => $agent,
  548. 'service' => $service,
  549. //合作者ID
  550. 'partner' => $partner,
  551. '_input_charset' => $charset,
  552. 'notify_url' => $notify_url,
  553. 'return_url' => $return_url,
  554. /* 业务参数 */
  555. 'subject' => $body."订单号:{$order['out_trade_no']}",
  556. 'out_trade_no' => $order['out_trade_no'],
  557. 'price' => $order['price'],
  558. 'quantity' => 1,
  559. 'payment_type' => 1,
  560. /* 物流参数 */
  561. 'logistics_type' => 'EXPRESS',
  562. 'logistics_fee' => 0,
  563. 'logistics_payment' => 'BUYER_PAY_AFTER_RECEIVE',
  564. /* 买卖双方信息 */
  565. 'seller_email' => $seller_email,
  566. );
  567. ksort($parameter);
  568. reset($parameter);
  569. $param = '';
  570. $sign = '';
  571. foreach ($parameter AS $key => $val) {
  572. $param .= "$key=" . urlencode($val) . "&";
  573. $sign .= "$key=$val&";
  574. }
  575. $param = substr($param, 0, -1);
  576. $sign = substr($sign, 0, -1) . $security_check_code;
  577. // $alipay_url = 'https://www.alipay.com/cooperate/gateway.do?' . $param . '&sign=' . MD5($sign) . '&sign_type=MD5';
  578. $alipay_url = 'https://mapi.alipay.com/gateway.do?' . $param . '&sign=' . MD5($sign) . '&sign_type=MD5';
  579. return $alipay_url;
  580. }
  581. // 获取随机字符串
  582. // 长度 length
  583. // 结果 str
  584. public function GetRandomString($length)
  585. {
  586. $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  587. $str = "";
  588. for ($i = 0; $i < $length; $i++) {
  589. $str .= substr($chars, mt_rand(0, strlen($chars) - 1), 1);
  590. }
  591. return $str;
  592. }
  593. }