Config.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/framework
  12. // +----------------------------------------------------------------------
  13. namespace app\wechat\controller;
  14. use app\wechat\service\WechatService;
  15. use library\Controller;
  16. use library\File;
  17. /**
  18. * 微信授权绑定
  19. * Class Config
  20. * @package app\wechat\controller
  21. */
  22. class Config extends Controller
  23. {
  24. /**
  25. * 微信授权绑定
  26. * @auth true
  27. * @menu true
  28. * @throws \think\Exception
  29. * @throws \think\exception\PDOException
  30. */
  31. public function options()
  32. {
  33. $this->applyCsrfToken();
  34. $this->thrNotify = url('@wechat/api.push', '', false, true);
  35. if ($this->request->isGet()) {
  36. $this->title = '微信授权绑定';
  37. if (!($this->geoip = cache('mygeoip'))) {
  38. cache('mygeoip', $this->geoip = gethostbyname($this->request->host()), 360);
  39. }
  40. $code = encode(url('@admin', '', true, true) . '#' . $this->request->url());
  41. $this->authurl = config('wechat.service_url') . "/service/api.push/auth/{$code}";
  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::wechat()->setApiNotifyUri($this->thrNotify);
  47. }
  48. try {
  49. $this->wechat = WechatService::wechat()->getConfig();
  50. } catch (\Exception $e) {
  51. $this->wechat = [];
  52. }
  53. $this->fetch();
  54. } else {
  55. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  56. if ($this->request->post('wechat_type') === 'thr') {
  57. WechatService::wechat()->setApiNotifyUri($this->thrNotify);
  58. }
  59. sysoplog('微信管理', '修改微信授权配置成功');
  60. $uri = url('wechat/config/options');
  61. $this->success('微信参数修改成功!', url('@admin') . "#{$uri}");
  62. }
  63. }
  64. /**
  65. * 微信支付配置
  66. * @auth true
  67. * @menu true
  68. * @throws \think\Exception
  69. * @throws \think\exception\PDOException
  70. */
  71. public function payment()
  72. {
  73. $this->applyCsrfToken();
  74. if ($this->request->isGet()) {
  75. $this->title = '微信支付配置';
  76. $file = File::instance('local');
  77. $this->wechat_mch_ssl_cer = sysconf('wechat_mch_ssl_cer');
  78. $this->wechat_mch_ssl_key = sysconf('wechat_mch_ssl_key');
  79. $this->wechat_mch_ssl_p12 = sysconf('wechat_mch_ssl_p12');
  80. if (!$file->has($this->wechat_mch_ssl_cer, true)) $this->wechat_mch_ssl_cer = '';
  81. if (!$file->has($this->wechat_mch_ssl_key, true)) $this->wechat_mch_ssl_key = '';
  82. if (!$file->has($this->wechat_mch_ssl_p12, true)) $this->wechat_mch_ssl_p12 = '';
  83. $this->fetch();
  84. } else {
  85. if ($this->request->post('wechat_mch_ssl_type') === 'p12') {
  86. if (!($sslp12 = $this->request->post('wechat_mch_ssl_p12'))) {
  87. $mchid = $this->request->post('wechat_mch_id');
  88. $content = File::instance('local')->get($sslp12, true);
  89. if (!openssl_pkcs12_read($content, $certs, $mchid)) {
  90. $this->error('商户MCH_ID与支付P12证书不匹配!');
  91. }
  92. }
  93. }
  94. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  95. sysoplog('微信管理', '修改微信支付配置成功');
  96. $this->success('微信支付配置成功!');
  97. }
  98. }
  99. }