2019-12-14 17:16:08 +08:00

112 lines
4.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://demo.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\wechat\controller;
use app\wechat\service\WechatService;
use think\admin\Controller;
use think\admin\Storage;
/**
* 微信授权绑定
* Class Config
* @package app\wechat\controller
*/
class Config extends Controller
{
/**
* 微信授权绑定
* @auth true
* @menu true
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function options()
{
$this->_applyFormToken();
$this->thrNotify = url('@wechat/api.push', [], false, true)->build();
if ($this->request->isGet()) {
try {
$source = enbase64url(url('@admin', [], false, true) . '#' . $this->request->url());
$this->authurl = "http://open.cuci.cc/service/api.push/auth?source={$source}";
if (input('?appid') && input('?appkey')) {
sysconf('wechat.type', 'thr');
sysconf('wechat.thr_appid', input('appid'));
sysconf('wechat.thr_appkey', input('appkey'));
WechatService::ThinkAdminConfig()->setApiNotifyUri($this->thrNotify);
}
$this->wechat = WechatService::ThinkAdminConfig()->getConfig();
} catch (\Exception $e) {
$this->message = $e->getMessage();
$this->wechat = [];
}
$this->geoip = $this->app->cache->get('mygeoip', '');
if (empty($this->geoip)) {
$this->geoip = gethostbyname($this->request->host());
$this->app->cache->set('mygeoip', $this->geoip, 360);
}
$this->title = '微信授权绑定';
$this->fetch();
} else {
foreach ($this->request->post() as $k => $v) sysconf($k, $v);
if ($this->request->post('wechat.type') === 'thr') {
WechatService::ThinkAdminConfig()->setApiNotifyUri($this->thrNotify);
}
sysoplog('微信管理', '修改微信授权配置成功');
$this->success('微信参数修改成功!');
}
}
/**
* 微信支付配置
* @auth true
* @menu true
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function payment()
{
$this->_applyFormToken();
if ($this->request->isGet()) {
$this->title = '微信支付配置';
$file = Storage::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 = Storage::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('微信支付配置成功!');
}
}
}