Commit cbc8b72f by xmy

feat:配置转移

主题发送日志修改
parent 6068f312
...@@ -68,7 +68,7 @@ class CfgCenter ...@@ -68,7 +68,7 @@ class CfgCenter
return [trim($rkey,':'), $valObj]; return [trim($rkey,':'), $valObj];
} }
protected static function dbConnect() public static function dbConnect()
{ {
if(\env('ENVIRONMENT', '') == '') { if(\env('ENVIRONMENT', '') == '') {
// 返回线上数据库连接 // 返回线上数据库连接
......
<?php <?php
return [ namespace Hdll\Services\Common\Config;
'qCloud' => [
'Bucket' => 'hdll-1257143824', use Swoft\Redis\Redis;
'APPID' => '1257143824', use Swoft\App;
'SecretId' => 'AKIDseHj18kua0KTSJ4g9SadbVEnEUZVjvPj',
'SecretKey' => 'IPL5g5PaaSAzd6NSO8gEmLxcN4pTzJSQ', const CACHE_PREFIX = 'CONFIG_CACHE';
'Region' => 'ap-shanghai' $redis = App::getBen(Redis::class);
], $data = $redis->get(CACHE_PREFIX . 'all');
'alisms' => [
'accessKeyId' => 'EjBn9zQxyEkKHyAA', if (!empty($data)) {
'accessKeySecret' => 'AN276rwCcqCkFUVt1GLCbAy8jnj52t', $db = CfgCenter::dbConnect();
], $data = $db->select('config', ['name', 'value']);
'cls' => [ $redis->set(CACHE_PREFIX . 'all', $data);
'appid' => '1257143824 ', }
'secretId' => 'AKIDseHj18kua0KTSJ4g9SadbVEnEUZVjvPj', return $data;
'secretKey' => 'IPL5g5PaaSAzd6NSO8gEmLxcN4pTzJSQ', \ No newline at end of file
],
'cmq' => [
'intranet_host' => 'http://cmq-topic-bj.api.tencentyun.com',//内网
'internet_host' => 'https://cmq-topic-bj.api.qcloud.com',//外网
'secretId' => 'AKIDYRW1cG2iVIg8dAoCe86vhNuA7A5oNknk',
'secretKey' => 'z0ymS7xfLrP6Sk2EKHWaXN6d0EIxX0IQ',
],
'cryptKey' => 'ebf032f01aa2093be3ee2ee2c137hdll',
];
\ No newline at end of file
<?php <?php
namespace Hdll\Services\Common\Lib; namespace Hdll\Services\Common\Lib;
use Hdll\Services\Common\Config\CfgCenter;
use Swoft\App; use Swoft\App;
use Swoft\Redis\Redis; use Swoft\Redis\Redis;
...@@ -41,8 +42,9 @@ class Xcrypt ...@@ -41,8 +42,9 @@ class Xcrypt
} }
private static function getKey(){ private static function getKey(){
$redis = App::getBean(Redis::class); // $redis = App::getBean(Redis::class);
$key = $redis->get(self::CRYPT); // $key = $redis->get(self::CRYPT);
$key = CfgCenter::get(self::CRYPT);
if (empty($key)){ if (empty($key)){
throw new \Exception('加密密钥获取失败!'); throw new \Exception('加密密钥获取失败!');
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment