Config.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catcher\base\CatchModel;
  4. use catcher\exceptions\FailedException;
  5. use thans\jwt\exception\UserNotDefinedException;
  6. use think\Model;
  7. class Config extends CatchModel
  8. {
  9. protected $name = 'config';
  10. protected $pk = 'id';
  11. protected $field = [
  12. 'id', //
  13. 'name', // 配置名称
  14. 'pid', // 父级配置
  15. 'key', // 配置键名
  16. 'value', // 配置键值
  17. 'component', // 组件
  18. 'status', // 1 启用 2 禁用
  19. 'creator_id', // 创建人
  20. 'created_at', // 创建时间
  21. 'updated_at', // 更新时间
  22. 'deleted_at', // 删除时间
  23. ];
  24. /**
  25. *
  26. * @time 2020年04月17日
  27. * @return \think\Collection
  28. *@throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\db\exception\DataNotFoundException
  31. */
  32. public function getParentConfig()
  33. {
  34. return $this->where('pid', 0)
  35. ->field(['id', 'name', 'component'])->select();
  36. }
  37. /**
  38. * 存储配置
  39. *
  40. * @time 2020年04月20日
  41. * @param array $data
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\DbException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. * @return bool
  46. */
  47. public function storeBy(array $data)
  48. {
  49. if (empty($data)) {
  50. return true;
  51. }
  52. $parent = $data['parent'] ?? false;
  53. if (!$parent) {
  54. throw new FailedException('父配置丢失');
  55. }
  56. unset($data['parent']);
  57. $parentConfig = $this->where('key', $parent)->find();
  58. $config = [];
  59. foreach ($data as $key => $item) {
  60. foreach ($item as $k => $value) {
  61. if ($value) {
  62. $config[$key . '.' .$k] = [
  63. 'pid' => $parentConfig['id'],
  64. 'key' => $key . '.' . $k,
  65. 'value' => $value,
  66. 'created_at' => time(),
  67. 'updated_at' => time(),
  68. ];
  69. }
  70. }
  71. }
  72. $this->where('pid', $parentConfig->id)
  73. ->select()
  74. ->each(function ($item) use (&$config){
  75. if (isset($config[$item['key']])) {
  76. if ($config[$item['key']]['value'] != $item->value) {
  77. $item['value'] = $config[$item['key']]['value'];
  78. $item->save();
  79. }
  80. unset($config[$item['key']]);
  81. }
  82. });
  83. if (count($config)) {
  84. return $this->insertAll($config);
  85. }
  86. return true;
  87. }
  88. /**
  89. * 配置是否存在
  90. *
  91. * @time 2020年04月19日
  92. * @param $key
  93. * @param int $pid
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\DbException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. * @return array|Model|null
  98. */
  99. public function isExistConfig($key, $pid = 0)
  100. {
  101. return $this->where('pid', $pid)
  102. ->where('key', $key)
  103. ->find();
  104. }
  105. /**
  106. * 获取子配置
  107. *
  108. * @time 2020年04月19日
  109. * @param int $pid
  110. * @param array $field
  111. * @throws \think\db\exception\DataNotFoundException
  112. * @throws \think\db\exception\DbException
  113. * @throws \think\db\exception\ModelNotFoundException
  114. * @return \think\Collection
  115. */
  116. public function subConfig($pid = 0, array $field = ['*'])
  117. {
  118. return $this->where('pid', $pid)
  119. ->field($field)
  120. ->select();
  121. }
  122. /**
  123. * 获取配置
  124. *
  125. * @time 2020年04月20日
  126. * @param string $component
  127. * @throws \think\db\exception\DataNotFoundException
  128. * @throws \think\db\exception\DbException
  129. * @throws \think\db\exception\ModelNotFoundException
  130. * @return array|mixed
  131. */
  132. public function getConfig(string $component)
  133. {
  134. $data = [];
  135. $configs = $this->where('pid', $this->where('component', $component)->value('id'))
  136. ->field('id,`key` as k,value,pid')
  137. ->select();
  138. foreach ($configs as $config) {
  139. if (strpos($config['k'], '.') !== false) {
  140. list($object, $key) = explode('.', $config['k']);
  141. $data[$object][$key] = $config['value'];
  142. }
  143. }
  144. return $data;
  145. }
  146. }