mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]完善系统通用函数
This commit is contained in:
parent
5f461f6f04
commit
062856e47a
@ -16,7 +16,7 @@
|
|||||||
use service\DataService;
|
use service\DataService;
|
||||||
use service\FileService;
|
use service\FileService;
|
||||||
use service\NodeService;
|
use service\NodeService;
|
||||||
use Wechat\Loader;
|
use service\SoapService;
|
||||||
use think\Db;
|
use think\Db;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -33,29 +33,32 @@ function p($data, $replace = false, $pathname = null)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取微信操作对象
|
* 获取mongoDB连接
|
||||||
* @param string $type
|
* @param string $col 数据库集合
|
||||||
* @return \Wechat\WechatReceive|\Wechat\WechatUser|\Wechat\WechatPay|\Wechat\WechatScript|\Wechat\WechatOauth|\Wechat\WechatMenu|\Wechat\WechatMedia
|
* @param bool $force 是否强制连接
|
||||||
|
* @return \think\db\Query|\think\mongo\Query
|
||||||
*/
|
*/
|
||||||
function & load_wechat($type = '')
|
function mongo($col, $force = false)
|
||||||
{
|
{
|
||||||
static $wechat = [];
|
return Db::connect(config('mongo'), $force)->name($col);
|
||||||
$index = md5(strtolower($type));
|
}
|
||||||
if (!isset($wechat[$index])) {
|
|
||||||
$config = [
|
/**
|
||||||
'token' => sysconf('wechat_token'),
|
* 获取微信操作对象
|
||||||
'appid' => sysconf('wechat_appid'),
|
* @param string $name
|
||||||
'appsecret' => sysconf('wechat_appsecret'),
|
* @return \Wechat\WechatMedia|\Wechat\WechatMenu|\Wechat\WechatOauth|\Wechat\WechatPay|\Wechat\WechatReceive|\Wechat\WechatScript|\Wechat\WechatUser|\Wechat\WechatExtends|\Wechat\WechatMessage
|
||||||
'encodingaeskey' => sysconf('wechat_encodingaeskey'),
|
* @throws Exception
|
||||||
'mch_id' => sysconf('wechat_mch_id'),
|
*/
|
||||||
'partnerkey' => sysconf('wechat_partnerkey'),
|
function load_wechat($name = '')
|
||||||
'ssl_cer' => sysconf('wechat_cert_cert'),
|
{
|
||||||
'ssl_key' => sysconf('wechat_cert_key'),
|
static $cache = [];
|
||||||
'cachepath' => CACHE_PATH . 'wxpay' . DS,
|
if (empty($cache[$name])) {
|
||||||
];
|
list($appid, $appkey) = [sysconf('wechat_appid'), sysconf('wechat_appkey')];
|
||||||
$wechat[$index] = Loader::get($type, $config);
|
$token = strtolower("{$name}-{$appid}-{$appkey}");
|
||||||
|
$location = "http://api.cuci.cc/wechat/instance/{$token}.html";
|
||||||
|
$cache[$name] = new SoapService(null, ['uri' => strtolower($name), 'location' => $location]);
|
||||||
}
|
}
|
||||||
return $wechat[$index];
|
return $cache[$name];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -87,7 +90,7 @@ function decode($string)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 本地化网络图片
|
* 网络图片本地化
|
||||||
* @param string $url
|
* @param string $url
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
@ -99,16 +102,27 @@ function local_image($url)
|
|||||||
return $url;
|
return $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期格式化
|
||||||
|
* @param string $date 标准日期格式
|
||||||
|
* @param string $format 输出格式化date
|
||||||
|
* @return false|string
|
||||||
|
*/
|
||||||
|
function format_datetime($date, $format = 'Y年m月d日 H:i:s')
|
||||||
|
{
|
||||||
|
return empty($date) ? '' : date($format, strtotime($date));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设备或配置系统参数
|
* 设备或配置系统参数
|
||||||
* @param string $name 参数名称
|
* @param string $name 参数名称
|
||||||
* @param bool $value 默认是false为获取值,否则为更新
|
* @param bool $value 默认是null为获取值,否则为更新
|
||||||
* @return string|bool
|
* @return string|bool
|
||||||
*/
|
*/
|
||||||
function sysconf($name, $value = false)
|
function sysconf($name, $value = null)
|
||||||
{
|
{
|
||||||
static $config = [];
|
static $config = [];
|
||||||
if ($value !== false) {
|
if ($value !== null) {
|
||||||
list($config, $data) = [[], ['name' => $name, 'value' => $value]];
|
list($config, $data) = [[], ['name' => $name, 'value' => $value]];
|
||||||
return DataService::save('SystemConfig', $data, 'name');
|
return DataService::save('SystemConfig', $data, 'name');
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user