applyCsrfToken(); $this->thrNotify = url('@wechat/api.push', '', false, true); if ($this->request->isGet()) { $this->title = '微信授权绑定'; if (!($this->geoip = cache('mygeoip'))) { cache('mygeoip', $this->geoip = gethostbyname($this->request->host()), 360); } $code = encode(url('@admin', '', true, true) . '#' . $this->request->url()); $this->authurl = config('wechat.service_url') . "/service/api.push/auth/{$code}"; if (input('?appid') && input('?appkey')) { sysconf('wechat_type', 'thr'); sysconf('wechat_thr_appid', input('appid')); sysconf('wechat_thr_appkey', input('appkey')); WechatService::wechat()->setApiNotifyUri($this->thrNotify); } try { $this->wechat = WechatService::wechat()->getConfig(); } catch (\Exception $e) { $this->wechat = []; } $this->fetch(); } else { foreach ($this->request->post() as $k => $v) sysconf($k, $v); if ($this->request->post('wechat_type') === 'thr') { WechatService::wechat()->setApiNotifyUri($this->thrNotify); } sysoplog('微信管理', '修改微信授权配置成功'); $uri = url('wechat/config/options'); $this->success('微信参数修改成功!', url('@admin') . "#{$uri}"); } } /** * 微信支付配置 * @auth true * @menu true * @throws \think\Exception * @throws \think\exception\PDOException */ public function payment() { $this->applyCsrfToken(); if ($this->request->isGet()) { $this->title = '微信支付配置'; $file = File::instance('local'); $this->wechat_mch_ssl_cer = sysconf('wechat_mch_ssl_cer'); $this->wechat_mch_ssl_key = sysconf('wechat_mch_ssl_key'); $this->wechat_mch_ssl_p12 = sysconf('wechat_mch_ssl_p12'); if (!$file->has($this->wechat_mch_ssl_cer, true)) $this->wechat_mch_ssl_cer = ''; if (!$file->has($this->wechat_mch_ssl_key, true)) $this->wechat_mch_ssl_key = ''; if (!$file->has($this->wechat_mch_ssl_p12, true)) $this->wechat_mch_ssl_p12 = ''; $this->fetch(); } else { if ($this->request->post('wechat_mch_ssl_type') === 'p12') { if (!($sslp12 = $this->request->post('wechat_mch_ssl_p12'))) { $mchid = $this->request->post('wechat_mch_id'); $content = File::instance('local')->get($sslp12, true); if (!openssl_pkcs12_read($content, $certs, $mchid)) { $this->error('商户MCH_ID与支付P12证书不匹配!'); } } } foreach ($this->request->post() as $k => $v) sysconf($k, $v); sysoplog('微信管理', '修改微信支付配置成功'); $this->success('微信支付配置成功!'); } } }