Config.php 6.1 KB

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