SysConfig.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. namespace catchAdmin\permissions\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\permissions\model\SysConfig as Model;
  7. class SysConfig extends CatchController
  8. {
  9. protected $model;
  10. public function __construct(Model $model)
  11. {
  12. $this->model = $model;
  13. }
  14. /**
  15. * 列表
  16. * @time 2020年12月19日 10:31
  17. * @param Request $request
  18. */
  19. public function index(Request $request) : \think\Response
  20. {
  21. return CatchResponse::paginate($this->model->getList());
  22. }
  23. /**
  24. * 保存信息
  25. * @time 2020年12月19日 10:31
  26. * @param Request $request
  27. */
  28. public function save(Request $request): \think\response
  29. {
  30. return CatchResponse::success($this->model->storeBy($request->post()));
  31. }
  32. /**
  33. * 读取
  34. * @time 2020年12月19日 10:31
  35. * @param $id
  36. */
  37. public function read($id) : \think\Response
  38. {
  39. return CatchResponse::success($this->model->findBy($id));
  40. }
  41. /**
  42. * 更新
  43. * @time 2020年12月19日 10:31
  44. * @param Request $request
  45. * @param $id
  46. */
  47. public function update(Request $request, $id) : \think\Response
  48. {
  49. return CatchResponse::success($this->model->updateBy($id, $request->post()));
  50. }
  51. /**
  52. * 删除
  53. * @time 2020年12月19日 10:31
  54. * @param $id
  55. */
  56. public function delete($id) : \think\Response
  57. {
  58. return CatchResponse::success($this->model->deleteBy($id));
  59. }
  60. /**
  61. *
  62. */
  63. public function saveAll(Request $request) : \think\Response
  64. {
  65. $post = $request->post();
  66. //$department_id = $request->user()->department_id;
  67. $this->model->startTrans();
  68. foreach ($post as $type => $type_data) {
  69. if ($type == 'creator_id') {
  70. continue;
  71. }
  72. // 分别保存每条配置,没有的添加,已存在的修改
  73. foreach($type_data as $field => $fieldValue){
  74. $save_data = [
  75. 'type' => $type,
  76. 'field' => $field,
  77. 'fieldValue' => $fieldValue,
  78. ];
  79. $where = [
  80. 'type' => $type,
  81. 'field' => $field,
  82. //'department_id' => $department_id,
  83. ];
  84. // 判断是否存在
  85. $id = $this->model->where($where)->value('id');
  86. if ($id) {
  87. // 修改
  88. $res = $this->model->updateBy($id, $save_data);
  89. }else{
  90. // 添加
  91. //$save_data['department_id'] = $department_id;
  92. $save_data['creator_id'] = $post['creator_id'];
  93. $res = $this->model->createBy($save_data);
  94. }
  95. if (!$res) {
  96. $this->model->rollback();
  97. return CatchResponse::fail('保存失败');
  98. }
  99. }
  100. }
  101. $this->model->commit();
  102. return CatchResponse::success([],'保存成功');
  103. }
  104. /**
  105. * 获取按类型分类的配置
  106. */
  107. public function getListGroupByType() : \think\Response
  108. {
  109. return CatchResponse::success($this->model->getListGroupByType());
  110. }
  111. /**
  112. * 根据类型和字段获取配置值
  113. */
  114. public function getConfigValueBy(Request $request): \think\Response
  115. {
  116. return CatchResponse::success($this->model->getConfigValueBy($request->post('field'),$request->post('type')));
  117. }
  118. }