mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
178 lines
7.3 KiB
PHP
178 lines
7.3 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Wechat Plugin for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2023 Anyon <zoujingli@qq.com>
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat
|
||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\wechat\controller;
|
||
|
||
use app\wechat\service\WechatService;
|
||
use think\admin\Builder;
|
||
use think\admin\Controller;
|
||
use think\admin\storage\LocalStorage;
|
||
|
||
/**
|
||
* 微信授权绑定
|
||
* @class Config
|
||
* @package app\wechat\controller
|
||
*/
|
||
class Config extends Controller
|
||
{
|
||
/**
|
||
* 微信授权配置
|
||
* @auth true
|
||
* @menu true
|
||
* @throws \think\admin\Exception
|
||
*/
|
||
public function options()
|
||
{
|
||
$this->_applyFormToken();
|
||
$this->thrNotify = sysuri('wechat/api.push/index', [], false, true);
|
||
if ($this->request->isGet()) {
|
||
try {
|
||
// 生成微信授权链接
|
||
$source = enbase64url(sysuri('admin/index/index', [], false, true) . '#' . $this->request->url());
|
||
$authurl = sysconf('wechat.service_authurl|raw') ?: "https://open.cuci.cc/service/api.push/auth?source=SOURCE";
|
||
$this->authurl = str_replace('source=SOURCE', "source={$source}", $authurl);
|
||
// 授权成功后的参数保存
|
||
if (input('?appid') && input('?appkey')) {
|
||
sysconf('wechat.type', 'thr');
|
||
sysconf('wechat.thr_appid', input('appid'));
|
||
sysconf('wechat.thr_appkey', input('appkey'));
|
||
WechatService::ThinkServiceConfig()->setApiNotifyUri($this->thrNotify);
|
||
}
|
||
// 读取授权的微信参数
|
||
$this->wechat = WechatService::ThinkServiceConfig()->getConfig();
|
||
} catch (\Exception $exception) {
|
||
$this->wechat = [];
|
||
$this->message = $exception->getMessage();
|
||
}
|
||
$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') try {
|
||
WechatService::ThinkServiceConfig()->setApiNotifyUri($this->thrNotify);
|
||
} catch (\Exception $exception) {
|
||
$this->error($exception->getMessage());
|
||
}
|
||
sysoplog('微信授权配置', '修改微信授权配置成功');
|
||
$this->success('微信授权修改成功!', admuri('', ['uniqid' => uniqid()]));
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 微信授权测试
|
||
* @auth true
|
||
*/
|
||
public function options_test()
|
||
{
|
||
$this->fetch();
|
||
}
|
||
|
||
/**
|
||
* 微信第三方平台接口配置
|
||
* @auth true
|
||
* @throws \think\admin\Exception
|
||
*/
|
||
public function options_jsonrpc()
|
||
{
|
||
if ($this->request->isGet()) {
|
||
$auth = sysconf('wechat.service_authurl|raw') ?: "https://open.cuci.cc/service/api.push/auth?source=SOURCE";
|
||
$jsonRpc = sysconf('wechat.service_jsonrpc|raw') ?: 'https://open.cuci.cc/service/api.client/jsonrpc?token=TOKEN¬_init_session=1';
|
||
Builder::mk()
|
||
->addTextInput('auth_url', '公众号授权跳转入口', 'Getway', true, '进行微信授权时会跳转到这个页面,由微信管理员扫二维码进行授权。', '^https?://.*?auth.*?(\?|\&)source=SOURCE')
|
||
->addTextInput('json_rpc', '第三方服务平台接口', 'JsonRpc', true, '由应用插件 ThinkPlugsWechatService 提供的第三方服务平台 JSON-RPC 接口地址。', '^https?://.*?jsonrpc.*?(\?|\&)token=TOKEN')
|
||
->addSubmitButton('保存参数')->addCancelButton()
|
||
->fetch(['vo' => ['auth_url' => $auth, 'json_rpc' => $jsonRpc]]);
|
||
} else {
|
||
$data = $this->_vali([
|
||
'auth_url.require' => '授权跳转不能为空!',
|
||
'json_rpc.require' => '接口地址不能为空!'
|
||
]);
|
||
sysconf('wechat.service_authurl', $data['auth_url']);
|
||
sysconf('wechat.service_jsonrpc', $data['json_rpc']);
|
||
$this->success('接口地址保存成功!');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 微信支付配置
|
||
* @auth true
|
||
* @menu true
|
||
* @throws \think\admin\Exception
|
||
*/
|
||
public function payment()
|
||
{
|
||
if ($this->request->isGet()) {
|
||
$this->title = '微信支付配置';
|
||
$local = LocalStorage::instance();
|
||
$this->mch_ssl_cer = sysconf('wechat.mch_ssl_cer');
|
||
$this->mch_ssl_key = sysconf('wechat.mch_ssl_key');
|
||
$this->mch_ssl_p12 = sysconf('wechat.mch_ssl_p12');
|
||
if (!$local->has($this->mch_ssl_cer, true)) $this->mch_ssl_cer = '';
|
||
if (!$local->has($this->mch_ssl_key, true)) $this->mch_ssl_key = '';
|
||
if (!$local->has($this->mch_ssl_p12, true)) $this->mch_ssl_p12 = '';
|
||
$this->fetch();
|
||
} else {
|
||
$this->error('抱歉,数据提交地址错误!');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 微信支付测试
|
||
* @auth true
|
||
*/
|
||
public function payment_test()
|
||
{
|
||
$this->fetch();
|
||
}
|
||
|
||
/**
|
||
* 微信支付修改
|
||
* @auth true
|
||
* @throws \think\admin\Exception
|
||
*/
|
||
public function payment_save()
|
||
{
|
||
if ($this->request->isPost()) {
|
||
if ($this->request->post('wechat.mch_ssl_type') === 'p12') {
|
||
if (!LocalStorage::instance()->has(input('wechat.mch_ssl_p12', '-'), true)) {
|
||
$this->error('商户证书 P12 证书不能为空!');
|
||
}
|
||
$content = LocalStorage::instance()->get(input('wechat.mch_ssl_p12', '-'), true);
|
||
if (!openssl_pkcs12_read($content, $certs, input('wechat.mch_id'))) {
|
||
$this->error('商户账号与 P12 证书不匹配!');
|
||
}
|
||
} elseif ($this->request->post('wechat.mch_ssl_type') === 'pem') {
|
||
if (!LocalStorage::instance()->has(input('wechat.mch_ssl_key', '-'), true)) {
|
||
$this->error('商户证书 KEY 不能为空!');
|
||
}
|
||
if (!LocalStorage::instance()->has(input('wechat.mch_ssl_cer', '-'), true)) {
|
||
$this->error('商户证书 CERT 不能为空!');
|
||
}
|
||
}
|
||
foreach ($this->request->post() as $k => $v) sysconf($k, $v);
|
||
sysoplog('微信授权配置', '修改微信支付配置成功');
|
||
$this->success('微信支付配置成功!');
|
||
} else {
|
||
$this->error('抱歉,访问方式错误!');
|
||
}
|
||
}
|
||
}
|