Açıklama Yok
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 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Config;
  17. class PayApi extends Base {
  18. private $UsersConfigData = [];
  19. /**
  20. * 构造方法
  21. */
  22. public function __construct(){
  23. parent::__construct();
  24. $this->language_access(); // 多语言功能操作权限
  25. $this->pay_api_config_db = Db::name('pay_api_config');
  26. // 会员中心配置信息
  27. $this->UsersConfigData = getUsersConfigData('all');
  28. $this->assign('userConfig', $this->UsersConfigData);
  29. }
  30. /**
  31. * 支付接口首页
  32. */
  33. public function pay_api_index()
  34. {
  35. $list = $this->pay_api_config_db->where('status', 1)->order('pay_id asc')->select();
  36. foreach ($list as $key => $val) {
  37. if (1 == $val['system_built']) {
  38. $val['litpic'] = $this->root_dir . "/public/static/admin/images/{$val['pay_mark']}.png";
  39. } else {
  40. $val['litpic'] = $this->root_dir . "/weapp/{$val['pay_mark']}/logo.png";
  41. }
  42. $list[$key] = $val;
  43. }
  44. $this->assign('list', $list);
  45. return $this->fetch('pay_api_index');
  46. }
  47. /**
  48. * 打开支付接口配置
  49. */
  50. public function open_pay_api_config()
  51. {
  52. $pay_id = input('get.pay_id') ? input('get.pay_id') : 0;
  53. $Config = $this->pay_api_config_db->where('pay_id', $pay_id)->find();
  54. if (!empty($Config) && 1 == $Config['pay_id'] && 'wechat' == $Config['pay_mark']) {
  55. // 系统内置的微信支付
  56. $TemplateHtml = $this->WeChatPayTemplate($Config);
  57. } else if (!empty($Config) && 2 == $Config['pay_id'] && 'alipay' == $Config['pay_mark']) {
  58. // 系统内置的支付宝支付
  59. $TemplateHtml = $this->AliPayPayTemplate($Config);
  60. } else if (!empty($Config) && !empty($Config['pay_mark']) && 0 == $Config['system_built']) {
  61. // 第三方插件
  62. $ControllerName = "\weapp\\" . $Config['pay_mark']."\controller\\" . $Config['pay_mark'];
  63. $UnifyController = new $ControllerName;
  64. $TemplateHtml = $UnifyController->UnifyAction($Config);
  65. }
  66. return $this->display($TemplateHtml);
  67. }
  68. /**
  69. * 保存支付接口配置
  70. */
  71. public function save_pay_api_config()
  72. {
  73. if (IS_AJAX_POST) {
  74. $post = input('post.');
  75. $pay_id = !empty($post['pay_id']) ? $post['pay_id'] : 0;
  76. $Config = $this->pay_api_config_db->where('pay_id', $pay_id)->find();
  77. if (empty($Config)) $this->error('数据有误,请刷新重试');
  78. if (1 == $Config['pay_id'] && 'wechat' == $Config['pay_mark']) {
  79. // 系统内置的微信支付
  80. $this->WeChatPayConfig($post);
  81. } else if (2 == $Config['pay_id'] && 'alipay' == $Config['pay_mark']) {
  82. // 系统内置的支付宝支付
  83. $this->AliPayPayConfig($post);
  84. } else if (!empty($Config) && !empty($Config['pay_mark']) && 0 == $Config['system_built']) {
  85. // 第三方插件
  86. $ControllerName = "\weapp\\" . $Config['pay_mark']."\controller\\" . $Config['pay_mark'];
  87. $UnifyController = new $ControllerName;
  88. $UnifyController->UnifySaveConfigAction($post);
  89. }
  90. }
  91. }
  92. /* 微信逻辑 */
  93. public function WeChatPayTemplate($Config = [])
  94. {
  95. $pay_info = !empty($Config['pay_info']) ? unserialize($Config['pay_info']) : [];
  96. $Config['pay_terminal'] = !empty($Config['pay_terminal']) ? unserialize($Config['pay_terminal']) : [];
  97. $this->assign('Config', $Config);
  98. $this->assign('pay_info', $pay_info);
  99. return $this->fetch('wechat_template');
  100. }
  101. // 保存微信配置
  102. public function WeChatPayConfig($post = [])
  103. {
  104. if (empty($post['pay_info']['is_open_wechat'])) {
  105. // 配置信息不允许为空
  106. if (empty($post['pay_info']['appid'])) $this->error('请填写微信AppId');
  107. if (empty($post['pay_info']['mchid'])) $this->error('请填写微信商户号');
  108. if (empty($post['pay_info']['key'])) $this->error('请填写微信KEY值');
  109. // 验证微信配置是否正确,不正确则返回提示
  110. $Result = model('PayApi')->VerifyWeChatConfig($post['pay_info']);
  111. if (!empty($Result['return_code']) && $Result['return_code'] == 'FAIL') $this->error($Result['return_msg']);
  112. }
  113. // 保存配置
  114. $SynData['pay_info'] = serialize($post['pay_info']);
  115. // $SynData['pay_terminal'] = serialize($post['pay_terminal']);
  116. $SynData['update_time'] = getTime();
  117. // 保存条件
  118. $where = [
  119. 'pay_id' => $post['pay_id'],
  120. 'pay_mark' => 'wechat',
  121. 'system_built' => 1
  122. ];
  123. $ResultID = $this->pay_api_config_db->where($where)->update($SynData);
  124. // 返回结果
  125. if (!empty($ResultID)) {
  126. $this->success('保存成功');
  127. } else {
  128. $this->error('数据错误');
  129. }
  130. }
  131. /* END */
  132. /* 支付宝逻辑 */
  133. public function AliPayPayTemplate($Config = [])
  134. {
  135. $pay_info = !empty($Config['pay_info']) ? unserialize($Config['pay_info']) : [];
  136. $Config['pay_terminal'] = !empty($Config['pay_terminal']) ? unserialize($Config['pay_terminal']) : [];
  137. $this->assign('Config', $Config);
  138. $this->assign('pay_info', $pay_info);
  139. // PHP5.5.0或更高版本,可使用新版支付方式,兼容旧版支付方式
  140. $php_version = 0;
  141. if (version_compare(PHP_VERSION, '5.5.0', '<')) {
  142. // PHP5.4.0或更低版本,可使用旧版支付方式
  143. $php_version = 1;
  144. }
  145. $this->assign('php_version', $php_version);
  146. return $this->fetch('alipay_template');
  147. }
  148. // 保存支付宝支付配置
  149. public function AliPayPayConfig($post = [])
  150. {
  151. $php_version = $post['pay_info']['version'];
  152. if (0 == $php_version) {
  153. if (empty($post['pay_info']['is_open_alipay'])) {
  154. // 配置信息不允许为空
  155. if (empty($post['pay_terminal']['computer']) && empty($post['pay_terminal']['computer'])) $this->error('请勾选支付终端');
  156. if (empty($post['pay_info']['app_id'])) $this->error('请填写支付宝APPID');
  157. if (empty($post['pay_info']['merchant_private_key'])) $this->error('请填写商户私钥');
  158. if (empty($post['pay_info']['alipay_public_key'])) $this->error('请填写支付宝公钥');
  159. // 验证支付宝配置是否正确,不正确则返回提示
  160. $Result = model('PayApi')->VerifyAliPayConfig($post['pay_info']);
  161. if ('ok' != $Result) {
  162. empty($Result) && $Result = '配置信息不正确,请重新获取';
  163. $this->error($Result);
  164. }
  165. }
  166. // 处理数据中的空格和换行
  167. $post['pay_info']['app_id'] = preg_replace('/\r|\n/', '', $post['pay_info']['app_id']);
  168. $post['pay_info']['alipay_public_key'] = preg_replace('/\r|\n/', '', $post['pay_info']['alipay_public_key']);
  169. $post['pay_info']['merchant_private_key'] = preg_replace('/\r|\n/', '', $post['pay_info']['merchant_private_key']);
  170. } else if (1 == $php_version) {
  171. if (empty($post['pay_info']['is_open_alipay'])) {
  172. // 配置信息不允许为空
  173. if (empty($post['pay_info']['account'])) $this->error('请填写支付宝账号');
  174. if (empty($post['pay_info']['code'])) $this->error('请填写安全校验码');
  175. if (empty($post['pay_info']['id'])) $this->error('请填写合作者身份ID');
  176. }
  177. }
  178. // 保存配置
  179. $SynData['pay_info'] = serialize($post['pay_info']);
  180. $SynData['pay_terminal'] = serialize($post['pay_terminal']);
  181. $SynData['update_time'] = getTime();
  182. $where = [
  183. 'pay_id' => $post['pay_id'],
  184. 'pay_mark' => 'alipay',
  185. 'system_built' => 1
  186. ];
  187. $ResultID = $this->pay_api_config_db->where($where)->update($SynData);
  188. // 返回结果
  189. if (!empty($ResultID)) {
  190. $this->success('保存成功');
  191. } else {
  192. $this->error('数据错误');
  193. }
  194. }
  195. /* END */
  196. }