Config.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\wechat\controller;
  15. use app\wechat\service\WechatService;
  16. use think\admin\Controller;
  17. use think\admin\storage\LocalStorage;
  18. /**
  19. * 微信授权绑定
  20. * Class Config
  21. * @package app\wechat\controller
  22. */
  23. class Config extends Controller
  24. {
  25. /**
  26. * 微信授权配置
  27. * @auth true
  28. * @menu true
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\DbException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public function options()
  34. {
  35. $this->_applyFormToken();
  36. $this->thrNotify = sysuri('wechat/api.push/index', [], false, true);
  37. if ($this->request->isGet()) {
  38. try {
  39. $source = enbase64url(sysuri('admin/index/index', [], false, true) . '#' . $this->request->url());
  40. $this->authurl = "https://open.cuci.cc/service/api.push/auth?source={$source}";
  41. if (input('?appid') && input('?appkey')) {
  42. sysconf('wechat.type', 'thr');
  43. sysconf('wechat.thr_appid', input('appid'));
  44. sysconf('wechat.thr_appkey', input('appkey'));
  45. WechatService::ThinkServiceConfig()->setApiNotifyUri($this->thrNotify);
  46. }
  47. $this->wechat = WechatService::ThinkServiceConfig()->getConfig();
  48. } catch (\Exception $exception) {
  49. $this->wechat = [];
  50. $this->message = $exception->getMessage();
  51. }
  52. $this->geoip = $this->app->cache->get('mygeoip', '');
  53. if (empty($this->geoip)) {
  54. $this->geoip = gethostbyname($this->request->host());
  55. $this->app->cache->set('mygeoip', $this->geoip, 360);
  56. }
  57. $this->title = '微信授权配置';
  58. $this->fetch();
  59. } else {
  60. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  61. if ($this->request->post('wechat.type') === 'thr') {
  62. try {
  63. WechatService::ThinkServiceConfig()->setApiNotifyUri($this->thrNotify);
  64. } catch (\Exception $exception) {
  65. $this->error($exception->getMessage());
  66. }
  67. }
  68. sysoplog('微信授权配置', '修改微信授权配置成功');
  69. $location = url('wechat/config/options')->build() . '?uniqid=' . uniqid();
  70. $this->success('微信参数修改成功!', sysuri('admin/index/index') . "#{$location}");
  71. }
  72. }
  73. /**
  74. * 接口功能测试
  75. * @auth true
  76. */
  77. public function testapi()
  78. {
  79. $this->fetch();
  80. }
  81. /**
  82. * 配置微信支付
  83. * @auth true
  84. * @menu true
  85. * @throws \think\admin\Exception
  86. * @throws \think\db\exception\DataNotFoundException
  87. * @throws \think\db\exception\DbException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. */
  90. public function payment()
  91. {
  92. if ($this->request->isGet()) {
  93. $this->title = '微信支付配置';
  94. $local = LocalStorage::instance();
  95. $this->mch_ssl_cer = sysconf('wechat.mch_ssl_cer');
  96. $this->mch_ssl_key = sysconf('wechat.mch_ssl_key');
  97. $this->mch_ssl_p12 = sysconf('wechat.mch_ssl_p12');
  98. if (!$local->has($this->mch_ssl_cer, true)) $this->mch_ssl_cer = '';
  99. if (!$local->has($this->mch_ssl_key, true)) $this->mch_ssl_key = '';
  100. if (!$local->has($this->mch_ssl_p12, true)) $this->mch_ssl_p12 = '';
  101. $this->fetch();
  102. } else {
  103. $this->error('抱歉,数据提交地址错误!');
  104. }
  105. }
  106. /**
  107. * 修改微信支付
  108. * @auth true
  109. * @throws \think\admin\Exception
  110. * @throws \think\db\exception\DataNotFoundException
  111. * @throws \think\db\exception\DbException
  112. * @throws \think\db\exception\ModelNotFoundException
  113. */
  114. public function paymentsave()
  115. {
  116. if ($this->request->isPost()) {
  117. if ($this->request->post('wechat.mch_ssl_type') === 'p12') {
  118. if (!LocalStorage::instance()->has(input('wechat.mch_ssl_p12', '-'), true)) {
  119. $this->error('商户证书 P12 证书不能为空!');
  120. }
  121. $content = LocalStorage::instance()->get(input('wechat.mch_ssl_p12', '-'), true);
  122. if (!openssl_pkcs12_read($content, $certs, input('wechat.mch_id'))) {
  123. $this->error('商户账号与 P12 证书不匹配!');
  124. }
  125. } elseif ($this->request->post('wechat.mch_ssl_type') === 'pem') {
  126. if (!LocalStorage::instance()->has(input('wechat.mch_ssl_key', '-'), true)) {
  127. $this->error('商户证书 KEY 不能为空!');
  128. }
  129. if (!LocalStorage::instance()->has(input('wechat.mch_ssl_cer', '-'), true)) {
  130. $this->error('商户证书 CERT 不能为空!');
  131. }
  132. }
  133. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  134. sysoplog('微信授权配置', '修改微信支付配置成功');
  135. $this->success('微信支付配置成功!');
  136. } else {
  137. $this->error('抱歉,访问方式错误!');
  138. }
  139. }
  140. }