Config.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.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 library\Controller;
  17. use library\File;
  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\Exception
  30. * @throws \think\exception\PDOException
  31. */
  32. public function options()
  33. {
  34. $this->applyCsrfToken();
  35. $this->thrNotify = url('@wechat/api.push', '', false, true);
  36. if ($this->request->isGet()) {
  37. $this->title = '微信授权绑定';
  38. if (!($this->geoip = cache('mygeoip'))) {
  39. cache('mygeoip', $this->geoip = gethostbyname($this->request->host()), 360);
  40. }
  41. $code = encode(url('@admin', '', true, true) . '#' . $this->request->url());
  42. $this->authurl = config('wechat.service_url') . "/service/api.push/auth/{$code}";
  43. if (input('?appid') && input('?appkey')) {
  44. sysconf('wechat_type', 'thr');
  45. sysconf('wechat_thr_appid', input('appid'));
  46. sysconf('wechat_thr_appkey', input('appkey'));
  47. WechatService::wechat()->setApiNotifyUri($this->thrNotify);
  48. }
  49. try {
  50. $this->wechat = WechatService::wechat()->getConfig();
  51. } catch (\Exception $e) {
  52. $this->wechat = [];
  53. }
  54. $this->fetch();
  55. } else {
  56. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  57. if ($this->request->post('wechat_type') === 'thr') {
  58. WechatService::wechat()->setApiNotifyUri($this->thrNotify);
  59. }
  60. sysoplog('微信管理', '修改微信授权配置成功');
  61. $uri = url('wechat/config/options');
  62. $this->success('微信参数修改成功!', url('@admin') . "#{$uri}");
  63. }
  64. }
  65. /**
  66. * 微信支付配置
  67. * @auth true
  68. * @menu true
  69. * @throws \think\Exception
  70. * @throws \think\exception\PDOException
  71. */
  72. public function payment()
  73. {
  74. $this->applyCsrfToken();
  75. if ($this->request->isGet()) {
  76. $this->title = '微信支付配置';
  77. $file = File::instance('local');
  78. $this->wechat_mch_ssl_cer = sysconf('wechat_mch_ssl_cer');
  79. $this->wechat_mch_ssl_key = sysconf('wechat_mch_ssl_key');
  80. $this->wechat_mch_ssl_p12 = sysconf('wechat_mch_ssl_p12');
  81. if (!$file->has($this->wechat_mch_ssl_cer, true)) $this->wechat_mch_ssl_cer = '';
  82. if (!$file->has($this->wechat_mch_ssl_key, true)) $this->wechat_mch_ssl_key = '';
  83. if (!$file->has($this->wechat_mch_ssl_p12, true)) $this->wechat_mch_ssl_p12 = '';
  84. $this->fetch();
  85. } else {
  86. if ($this->request->post('wechat_mch_ssl_type') === 'p12') {
  87. if (!($sslp12 = $this->request->post('wechat_mch_ssl_p12'))) {
  88. $mchid = $this->request->post('wechat_mch_id');
  89. $content = File::instance('local')->get($sslp12, true);
  90. if (!openssl_pkcs12_read($content, $certs, $mchid)) {
  91. $this->error('商户MCH_ID与支付P12证书不匹配!');
  92. }
  93. }
  94. }
  95. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  96. sysoplog('微信管理', '修改微信支付配置成功');
  97. $this->success('微信支付配置成功!');
  98. }
  99. }
  100. }