mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-03 20:39:59 +08:00
353 lines
11 KiB
PHP
Executable File
353 lines
11 KiB
PHP
Executable File
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Devil
|
||
// +----------------------------------------------------------------------
|
||
namespace app\service;
|
||
|
||
use think\Db;
|
||
use think\facade\Hook;
|
||
use app\service\ResourcesService;
|
||
|
||
/**
|
||
* 配置服务层
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 0.0.1
|
||
* @datetime 2016-12-01T21:51:08+0800
|
||
*/
|
||
class ConfigService
|
||
{
|
||
// 富文本,不实例化的字段
|
||
public static $rich_text_list = [
|
||
'home_footer_info',
|
||
'common_email_currency_template',
|
||
'home_email_user_reg',
|
||
'home_email_user_forget_pwd',
|
||
'home_email_user_email_binding',
|
||
'home_site_close_reason',
|
||
'common_agreement_userregister',
|
||
'common_self_extraction_address',
|
||
];
|
||
|
||
// 附件字段列表
|
||
public static $attachment_field_list = [
|
||
'home_site_logo',
|
||
'home_site_logo_wap',
|
||
'home_site_desktop_icon',
|
||
'common_customer_store_qrcode',
|
||
'home_site_user_register_bg_images',
|
||
'home_site_user_login_ad1_images',
|
||
'home_site_user_login_ad2_images',
|
||
'home_site_user_login_ad3_images',
|
||
'home_site_user_forgetpwd_ad1_images',
|
||
'home_site_user_forgetpwd_ad2_images',
|
||
'home_site_user_forgetpwd_ad3_images',
|
||
];
|
||
|
||
// 字符串转数组字段列表, 默认使用英文逗号处理 [ , ]
|
||
public static $string_to_array_field_list = [
|
||
'home_user_reg_state',
|
||
'common_images_verify_rules',
|
||
];
|
||
|
||
/**
|
||
* 配置列表,唯一标记作为key
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2018-12-07
|
||
* @desc description
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function ConfigList($params = [])
|
||
{
|
||
$field = isset($params['field']) ? $params['field'] : 'only_tag,name,describe,value,error_tips';
|
||
return Db::name('Config')->column($field);
|
||
}
|
||
|
||
/**
|
||
* 配置数据保存
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 0.0.1
|
||
* @datetime 2017-01-02T23:08:19+0800
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function ConfigSave($params = [])
|
||
{
|
||
// 参数校验
|
||
if(empty($params))
|
||
{
|
||
return DataReturn('参数不能为空', -1);
|
||
}
|
||
|
||
// 当前参数中不存在则移除
|
||
$data_fields = self::$attachment_field_list;
|
||
foreach($data_fields as $key=>$field)
|
||
{
|
||
if(!isset($params[$field]))
|
||
{
|
||
unset($data_fields[$key]);
|
||
}
|
||
}
|
||
|
||
// 获取附件
|
||
$attachment = ResourcesService::AttachmentParams($params, $data_fields);
|
||
foreach($attachment['data'] as $k=>$v)
|
||
{
|
||
$params[$k] = $v;
|
||
}
|
||
|
||
// 循环保存数据
|
||
$success = 0;
|
||
|
||
// 开始更新数据
|
||
foreach($params as $k=>$v)
|
||
{
|
||
if(in_array($k, self::$rich_text_list))
|
||
{
|
||
$v = ResourcesService::ContentStaticReplace($v, 'add');
|
||
} else {
|
||
$v = htmlentities($v);
|
||
}
|
||
if(Db::name('Config')->where(['only_tag'=>$k])->update(['value'=>$v, 'upd_time'=>time()]))
|
||
{
|
||
$success++;
|
||
|
||
// 单条配置缓存删除
|
||
cache(config('shopxo.cache_config_row_key').$k, null);
|
||
}
|
||
}
|
||
if($success > 0)
|
||
{
|
||
// 配置信息更新
|
||
self::ConfigInit(1);
|
||
|
||
// 是否需要更新路由规则
|
||
$ret = self::RouteSeparatorHandle($params);
|
||
if($ret['code'] != 0)
|
||
{
|
||
return $ret;
|
||
}
|
||
|
||
return DataReturn('编辑成功'.'['.$success.']');
|
||
}
|
||
return DataReturn('编辑失败', -100);
|
||
}
|
||
|
||
/**
|
||
* 系统配置信息初始化
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 0.0.1
|
||
* @datetime 2017-01-03T21:36:55+0800
|
||
* @param [int] $status [是否更新数据,0否,1是]
|
||
*/
|
||
public static function ConfigInit($status = 0)
|
||
{
|
||
$key = config('shopxo.cache_common_my_config_key');
|
||
$data = cache($key);
|
||
if($status == 1 || empty($data))
|
||
{
|
||
// 所有配置
|
||
$data = Db::name('Config')->column('value', 'only_tag');
|
||
|
||
// 数据处理
|
||
// 开启用户注册列表
|
||
foreach(self::$string_to_array_field_list as $field)
|
||
{
|
||
if(isset($data[$field]))
|
||
{
|
||
$data[$field] = empty($data[$field]) ? [] : explode(',', $data[$field]);
|
||
}
|
||
}
|
||
|
||
// 富文本字段处理
|
||
foreach($data as $k=>$v)
|
||
{
|
||
if(in_array($k, self::$rich_text_list))
|
||
{
|
||
$data[$k] = ResourcesService::ContentStaticReplace($v, 'get');
|
||
}
|
||
}
|
||
|
||
cache($key, $data);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 路由规则处理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 0.0.1
|
||
* @datetime 2017-01-02T23:08:19+0800
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function RouteSeparatorHandle($params = [])
|
||
{
|
||
if(isset($params['home_seo_url_model']))
|
||
{
|
||
$route_file = ROOT.'route'.DS.'route.config';
|
||
$route_file_php = ROOT.'route'.DS.'route.php';
|
||
|
||
// 文件目录
|
||
if(!is_writable(ROOT.'route'))
|
||
{
|
||
return DataReturn('路由目录没有操作权限'.'[./route]', -11);
|
||
}
|
||
|
||
// 路配置文件权限
|
||
if(file_exists($route_file_php) && !is_writable($route_file_php))
|
||
{
|
||
return DataReturn('路由配置文件没有操作权限'.'[./route/route.php]', -11);
|
||
}
|
||
|
||
// pathinfo+短地址模式
|
||
if($params['home_seo_url_model'] == 2)
|
||
{
|
||
|
||
if(!file_exists($route_file))
|
||
{
|
||
return DataReturn('路由规则文件不存在'.'[./route/route.config]', -14);
|
||
}
|
||
|
||
// 开始生成规则文件
|
||
if(file_put_contents($route_file_php, file_get_contents($route_file)) === false)
|
||
{
|
||
return DataReturn('路由规则文件生成失败', -10);
|
||
}
|
||
|
||
// 兼容模式+pathinfo模式
|
||
} else {
|
||
if(file_exists($route_file_php) && @unlink($route_file_php) === false)
|
||
{
|
||
return DataReturn('路由规则处理失败', -10);
|
||
}
|
||
}
|
||
return DataReturn('处理成功', 0);
|
||
}
|
||
return DataReturn('无需处理', 0);
|
||
}
|
||
|
||
/**
|
||
* 根据唯一标记获取条配置内容
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2019-05-16
|
||
* @desc description
|
||
* @param [string] $only_tag [唯一标记]
|
||
*/
|
||
public static function ConfigContentRow($only_tag)
|
||
{
|
||
// 缓存key
|
||
$key = config('shopxo.cache_config_row_key').$only_tag;
|
||
$data = cache($key);
|
||
|
||
// 获取内容
|
||
if(empty($data))
|
||
{
|
||
$data = Db::name('Config')->where(['only_tag'=>$only_tag])->field('name,value,type,upd_time')->find();
|
||
if(!empty($data))
|
||
{
|
||
// 富文本处理
|
||
if(in_array($only_tag, self::$rich_text_list))
|
||
{
|
||
$data['value'] = ResourcesService::ContentStaticReplace($data['value'], 'get');
|
||
}
|
||
$data['upd_time_time'] = empty($data['upd_time']) ? null : date('Y-m-d H:i:s', $data['upd_time']);
|
||
}
|
||
cache($key, $data);
|
||
}
|
||
|
||
return DataReturn('操作成功', 0, $data);
|
||
}
|
||
|
||
/**
|
||
* 站点自提模式 - 自提地址列表
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2019-11-13
|
||
* @desc description
|
||
* @param [string] $value [自提的配置数据]
|
||
*/
|
||
public static function SiteTypeExtractionAddressList($value = null)
|
||
{
|
||
// 未指定内容则从缓存读取
|
||
if(empty($value))
|
||
{
|
||
$value = MyC('common_self_extraction_address');
|
||
}
|
||
|
||
// 数据处理
|
||
$data = [];
|
||
if(!empty($value) && is_string($value))
|
||
{
|
||
$temp_data = json_decode($value, true);
|
||
if(!empty($temp_data) && is_array($temp_data))
|
||
{
|
||
$data = $temp_data;
|
||
}
|
||
}
|
||
|
||
// 自提点地址列表数据钩子
|
||
$hook_name = 'plugins_service_site_extraction_address_list';
|
||
Hook::listen($hook_name, [
|
||
'hook_name' => $hook_name,
|
||
'is_backend' => true,
|
||
'data' => &$data,
|
||
]);
|
||
|
||
// 坐标处理
|
||
if(!empty($data) && is_array($data) && in_array(APPLICATION_CLIENT_TYPE, ['weixin', 'alipay', 'baidu']))
|
||
{
|
||
foreach($data as &$v)
|
||
{
|
||
// 坐标转换 百度转火星(高德,谷歌,腾讯坐标)
|
||
if(isset($v['lng']) && isset($v['lat']) && $v['lng'] > 0 && $v['lat'] > 0)
|
||
{
|
||
$map = \base\GeoTransUtil::BdToGcj($v['lng'], $v['lat']);
|
||
if(isset($map['lng']) && isset($map['lat']))
|
||
{
|
||
$v['lng'] = $map['lng'];
|
||
$v['lat'] = $map['lat'];
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
return DataReturn('操作成功', 0, $data);
|
||
}
|
||
|
||
/**
|
||
* 站点虚拟模式 - 虚拟销售信息
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2019-11-19
|
||
* @desc description
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public static function SiteFictitiousConfig($params = [])
|
||
{
|
||
// 标题
|
||
$title = MyC('common_site_fictitious_return_title', '密钥信息', true);
|
||
|
||
// 提示信息
|
||
$tips = MyC('common_site_fictitious_return_tips', null, true);
|
||
|
||
$result = [
|
||
'title' => $title,
|
||
'tips' => str_replace("\n", '<br />', $tips),
|
||
];
|
||
return DataReturn('操作成功', 0, $result);
|
||
}
|
||
}
|
||
?>
|