init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
320
application/admin/controller/shopro/Config.php
Normal file
320
application/admin/controller/shopro/Config.php
Normal file
@@ -0,0 +1,320 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\controller\shopro;
|
||||
|
||||
use app\admin\model\shopro\Config as ShoproConfig;
|
||||
|
||||
class Config extends Common
|
||||
{
|
||||
protected $noNeedRight = ['index', 'platformStatus', 'getPlatformUrl'];
|
||||
|
||||
public function index()
|
||||
{
|
||||
$configList = [
|
||||
[
|
||||
'label' => '基本信息',
|
||||
'name' => 'shopro/config/basic',
|
||||
'status' => $this->auth->check('shopro/config/basic')
|
||||
],
|
||||
[
|
||||
'label' => '用户配置',
|
||||
'name' => 'shopro/config/user',
|
||||
'status' => $this->auth->check('shopro/config/user')
|
||||
],
|
||||
[
|
||||
'label' => '平台配置',
|
||||
'name' => 'shopro/config/platform',
|
||||
'status' => $this->auth->check('shopro/config/platform')
|
||||
],
|
||||
[
|
||||
'label' => '订单配置',
|
||||
'name' => 'shopro/config/order',
|
||||
'status' => $this->auth->check('shopro/config/order')
|
||||
],
|
||||
[
|
||||
'label' => '商品配置',
|
||||
'name' => 'shopro/config/goods',
|
||||
'status' => $this->auth->check('shopro/config/goods')
|
||||
],
|
||||
[
|
||||
'label' => '物流配置',
|
||||
'name' => 'shopro/config/dispatch',
|
||||
'status' => $this->auth->check('shopro/config/dispatch')
|
||||
],
|
||||
[
|
||||
'label' => '充值提现',
|
||||
'name' => 'shopro/config/rechargewithdraw',
|
||||
'status' => $this->auth->check('shopro/config/rechargewithdraw')
|
||||
],
|
||||
[
|
||||
'label' => '分销配置',
|
||||
'name' => 'shopro/config/commission',
|
||||
'status' => $this->auth->check('shopro/config/commission')
|
||||
],
|
||||
[
|
||||
'label' => '支付配置',
|
||||
'name' => 'shopro/pay_config',
|
||||
'status' => $this->auth->check('shopro/pay_config')
|
||||
],
|
||||
[
|
||||
'label' => '客服配置',
|
||||
'name' => 'shopro/config/chat',
|
||||
'status' => $this->auth->check('shopro/config/chat')
|
||||
],
|
||||
[
|
||||
'label' => 'Redis配置',
|
||||
'name' => 'shopro/config/redis',
|
||||
'status' => $this->auth->check('shopro/config/redis')
|
||||
]
|
||||
];
|
||||
$this->assignconfig("configList", $configList);
|
||||
return $this->view->fetch();
|
||||
}
|
||||
|
||||
/**
|
||||
* 基本配置
|
||||
*/
|
||||
public function basic()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.basic', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::setConfigs('shop.basic', $this->request->param());
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 用户默认配置
|
||||
*/
|
||||
public function user()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.user', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::setConfigs('shop.user', $this->request->param());
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 物流配置
|
||||
*/
|
||||
public function dispatch()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.dispatch', false);
|
||||
$configs['callback'] = $this->request->domain() . '/addons/shopro/order.express/push';
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::setConfigs('shop.dispatch', $this->request->param());
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 平台状态
|
||||
*/
|
||||
public function platformStatus()
|
||||
{
|
||||
$status = [
|
||||
'H5' => ShoproConfig::getConfigs('shop.platform.H5.status', false),
|
||||
'App' => ShoproConfig::getConfigs('shop.platform.App.status', false),
|
||||
'WechatMiniProgram' => ShoproConfig::getConfigs('shop.platform.WechatMiniProgram.status', false),
|
||||
'WechatOfficialAccount' => ShoproConfig::getConfigs('shop.platform.WechatOfficialAccount.status', false),
|
||||
];
|
||||
|
||||
$this->success('操作成功', null, $status);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 平台配置
|
||||
*/
|
||||
public function platform($platform)
|
||||
{
|
||||
if (!$this->request->isAjax()) {
|
||||
return $this->view->fetch();
|
||||
}
|
||||
|
||||
if (!in_array($platform, ['App', 'H5', 'WechatMiniProgram', 'WechatOfficialAccount'])) {
|
||||
$this->error('平台不支持');
|
||||
}
|
||||
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.platform.' . $platform, false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
$params = $this->request->param();
|
||||
if (!isset($params['share']['methods'])) {
|
||||
$params['share']['methods'] = [];
|
||||
}
|
||||
if (!isset($params['payment']['methods'])) {
|
||||
$params['payment']['methods'] = [];
|
||||
}
|
||||
$configs = ShoproConfig::setConfigs('shop.platform.' . $platform, $params);
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
public function commission()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.commission', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
check_env('commission');
|
||||
$params = $this->request->param();
|
||||
|
||||
$configs = ShoproConfig::setConfigs('shop.commission', $params);
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 订单配置
|
||||
*/
|
||||
public function order()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.order', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::setConfigs('shop.order', $this->request->param());
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 商品配置
|
||||
*/
|
||||
public function goods()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.goods', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::setConfigs('shop.goods', $this->request->param());
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 充值提现配置
|
||||
*/
|
||||
public function rechargeWithdraw()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('shop.recharge_withdraw', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
$params = $this->request->param();
|
||||
if (!isset($params['recharge']['methods'])) {
|
||||
$params['recharge']['methods'] = [];
|
||||
}
|
||||
if (!isset($params['recharge']['quick_amounts'])) {
|
||||
$params['recharge']['quick_amounts'] = [];
|
||||
}
|
||||
if (!isset($params['withdraw']['methods'])) {
|
||||
$params['withdraw']['methods'] = [];
|
||||
}
|
||||
$configs = ShoproConfig::setConfigs('shop.recharge_withdraw', $params);
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 客服配置
|
||||
*/
|
||||
public function chat()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('chat', false);
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
$configs = ShoproConfig::setConfigs('chat', $this->request->param());
|
||||
|
||||
// 存文件
|
||||
file_put_contents(
|
||||
ROOT_PATH . 'application' . DS . 'extra' . DS . 'chat.php',
|
||||
'<?php' . "\n\nreturn " . short_var_export($this->request->param(), true) . ";"
|
||||
);
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* redis 配置
|
||||
*/
|
||||
public function redis()
|
||||
{
|
||||
if ('GET' === $this->request->method()) {
|
||||
$default = [
|
||||
'host' => '127.0.0.1', // redis 主机地址
|
||||
'password' => '', // redis 密码
|
||||
'port' => 6379, // redis 端口
|
||||
'select' => 1, // redis 数据库
|
||||
'timeout' => 0, // redis 超时时间
|
||||
'persistent' => false, // redis 持续性,连接复用
|
||||
];
|
||||
$redis = \think\Config::get('redis');
|
||||
$redis['empty_password'] = 0;
|
||||
$redis['password'] = ''; // 隐藏密码
|
||||
$configs = $redis ? array_merge($default, $redis) : $default;
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
operate_filter();
|
||||
$configs = $this->request->param();
|
||||
$empty_password = (int)$configs['empty_password']; // 是否设置空密码
|
||||
unset($configs['empty_password']);
|
||||
|
||||
if (isset($configs['password']) && empty($configs['password'])) {
|
||||
$redis = \think\Config::get('redis');
|
||||
// 不修改密码,保持为原始值
|
||||
$configs['password'] = $redis['password'] ?? '';
|
||||
} elseif ($empty_password) {
|
||||
$configs['password'] = '';
|
||||
}
|
||||
|
||||
$configs['persistent'] = (isset($configs['persistent']) && ($configs['persistent'] === true || $configs['persistent'] == 'true')) ? true : false;
|
||||
|
||||
// 存文件
|
||||
file_put_contents(
|
||||
ROOT_PATH . 'application' . DS . 'extra' . DS . 'redis.php',
|
||||
'<?php' . "\n\nreturn " . short_var_export($configs, true) . ";"
|
||||
);
|
||||
}
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function getPlatformUrl()
|
||||
{
|
||||
$h5Url = ShoproConfig::getConfigField('shop.basic.domain');
|
||||
$wechatMpAppid = ShoproConfig::getConfigField('shop.platform.WechatMiniProgram.app_id');
|
||||
|
||||
$this->success('', null, [
|
||||
'url' => $h5Url,
|
||||
'appid' => $wechatMpAppid
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user