截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ConfigServer.php 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use app\common\model\Config as configModel;
  21. use think\facade\Cache;
  22. use think\facade\Config;
  23. /**
  24. * 配置 服务类
  25. * Class ConfigServer
  26. * @Author FZR
  27. * @package app\common\server
  28. */
  29. class ConfigServer
  30. {
  31. /**
  32. * @notes
  33. * @param string $type
  34. * @param string $name
  35. * @param mixed $value
  36. * @param int $shop_id
  37. * @return mixed
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\DbException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @author 令狐冲
  42. * @date 2022/10/20 18:21
  43. */
  44. public static function set($type, $name = null, $value = '', $shop_id = 0)
  45. {
  46. $cacheKey = 'config' . '-' . $type . '-' . $name . '-' . $shop_id;
  47. $cacheKey2 = 'config' . '-' . $type . '-' . null . '-' . $shop_id;
  48. Cache::delete($cacheKey);
  49. // 把$type组的也删掉
  50. Cache::delete($cacheKey2);
  51. $original = $value;
  52. $update_time = time();
  53. if (is_array($value)) {
  54. $value = json_encode($value, true);
  55. }
  56. $data = configModel::where(['type' => $type, 'name' => $name, 'shop_id' => $shop_id])->find();
  57. if (empty($data)) {
  58. configModel::create([
  59. 'type' => $type,
  60. 'name' => $name,
  61. 'value' => $value,
  62. 'shop_id' => $shop_id
  63. ]);
  64. } else {
  65. configModel::update([
  66. 'value' => $value,
  67. 'update_time' => $update_time
  68. ], ['type' => $type, 'name' => $name, 'shop_id' => $shop_id]);
  69. }
  70. return $original;
  71. }
  72. /**
  73. * @notes
  74. * @param string $type
  75. * @param string $name
  76. * @param null $defaultValue
  77. * @param int $shop_id
  78. * @return array|mixed|null
  79. * @author 令狐冲
  80. * @date 2022/10/20 18:35
  81. */
  82. public static function get($type, $name = null, $defaultValue = null, $shop_id = 0)
  83. {
  84. //有缓存取缓存
  85. $cacheKey = 'config' . '-' . $type . '-' . $name . '-' . $shop_id;
  86. $result = Cache::get($cacheKey);
  87. $value = $result['config_server'] ?? null;
  88. if ($value !== null) {
  89. return $value;
  90. }
  91. //单项配置
  92. if ($name) {
  93. $result = configModel::where([
  94. 'type' => $type,
  95. 'name' => $name,
  96. 'shop_id' => $shop_id
  97. ])->value('value');
  98. //数组配置需要自动转换
  99. $json = json_decode($result, true);
  100. if (json_last_error() === JSON_ERROR_NONE) {
  101. $result = $json;
  102. }
  103. //获取调用默认配置
  104. if ($result === NULL) {
  105. $result = $defaultValue;
  106. }
  107. //获取系统配置文件的配置
  108. if ($result === NULL) {
  109. $result = Config::get('default.' . $type . '.' . $name);
  110. }
  111. Cache::set($cacheKey, ['config_server' => $result]);
  112. return $result;
  113. }
  114. //多项配置
  115. $data = configModel::where([
  116. 'type' => $type,
  117. 'shop_id' => $shop_id
  118. ])->column('value', 'name');
  119. if (is_array($data)) {
  120. foreach ($data as $k => $v) {
  121. $json = json_decode($v, true);
  122. if (json_last_error() === JSON_ERROR_NONE) {
  123. $data[$k] = $json;
  124. }
  125. }
  126. }
  127. if ($data === []) {
  128. $data = $defaultValue;
  129. }
  130. if ($data === NULL) {
  131. $data = Config::get('default.' . $type . '.' . $name);
  132. }
  133. Cache::set($cacheKey, ['config_server' => $data]);
  134. return $data;
  135. }
  136. }