Config.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. namespace app\controller\admin\system\config;
  3. use ln\basic\BaseController;
  4. use app\common\repositories\system\config\ConfigClassifyRepository;
  5. use app\common\repositories\system\config\ConfigRepository;
  6. use app\validate\admin\ConfigValidate;
  7. use ln\services\UploadService;
  8. use FormBuilder\Exception\FormBuilderException;
  9. use think\App;
  10. use think\db\exception\DataNotFoundException;
  11. use think\db\exception\DbException;
  12. use think\db\exception\ModelNotFoundException;
  13. /**
  14. * Class Config
  15. * @package app\controller\admin\system\config
  16. * @author zfy
  17. * @day 2020-03-27
  18. */
  19. class Config extends BaseController
  20. {
  21. /**
  22. * @var ConfigRepository
  23. */
  24. protected $repository;
  25. /**
  26. * Config constructor.
  27. * @param App $app
  28. * @param ConfigRepository $repository
  29. */
  30. public function __construct(App $app, ConfigRepository $repository)
  31. {
  32. parent::__construct($app);
  33. $this->repository = $repository;
  34. }
  35. /**
  36. * @return mixed
  37. * @throws DataNotFoundException
  38. * @throws DbException
  39. * @throws ModelNotFoundException
  40. * @author zfy
  41. * @day 2020-03-31
  42. */
  43. public function lst()
  44. {
  45. $where = $this->request->params(['keyword']);
  46. [$page, $limit] = $this->getPage();
  47. $lst = $this->repository->lst($where, $page, $limit);
  48. return app('json')->success($lst);
  49. }
  50. /**
  51. * @return mixed
  52. * @throws FormBuilderException
  53. * @author zfy
  54. * @day 2020-03-31
  55. */
  56. public function createTable()
  57. {
  58. $form = $this->repository->form();
  59. return app('json')->success(formToData($form));
  60. }
  61. /**
  62. * @param int $id
  63. * @return mixed
  64. * @throws DataNotFoundException
  65. * @throws DbException
  66. * @throws ModelNotFoundException
  67. * @throws FormBuilderException
  68. * @author zfy
  69. * @day 2020-03-31
  70. */
  71. public function updateTable($id)
  72. {
  73. if (!$this->repository->exists($id)) app('json')->fail('数据不存在');
  74. $form = $this->repository->updateForm($id);
  75. return app('json')->success(formToData($form));
  76. }
  77. /**
  78. * @param int $id
  79. * @return mixed
  80. * @throws DbException
  81. * @author zfy
  82. * @day 2020-03-31
  83. */
  84. public function switchStatus($id)
  85. {
  86. $status = $this->request->param('status', 0);
  87. if (!$this->repository->exists($id))
  88. return app('json')->fail('分类不存在');
  89. $this->repository->switchStatus($id, $status == 1 ? 1 : 0);
  90. return app('json')->success('修改成功');
  91. }
  92. /**
  93. * @param int $id
  94. * @return mixed
  95. * @throws DataNotFoundException
  96. * @throws DbException
  97. * @throws ModelNotFoundException
  98. * @author zfy
  99. * @day 2020-03-27
  100. */
  101. public function get($id)
  102. {
  103. $data = $this->repository->get($id);
  104. if (!$data)
  105. return app('json')->fail('配置不存在');
  106. else
  107. return app('json')->success($data->hidden(['mer_id', 'value']));
  108. }
  109. /**
  110. * @param ConfigValidate $validate
  111. * @param ConfigClassifyRepository $configClassifyRepository
  112. * @return mixed
  113. * @author zfy
  114. * @day 2020-03-27
  115. */
  116. public function create(ConfigValidate $validate, ConfigClassifyRepository $configClassifyRepository)
  117. {
  118. $data = $this->request->params(['user_type', 'config_classify_id', 'config_name', 'config_key', 'config_type', 'config_rule', 'required', 'info', 'sort', 'status']);
  119. $validate->check($data);
  120. if (!$configClassifyRepository->exists($data['config_classify_id']))
  121. return app('json')->fail('配置分类不已存在');
  122. if ($this->repository->keyExists($data['config_key']))
  123. return app('json')->fail('配置key已存在');
  124. $this->repository->create($data);
  125. return app('json')->success('添加成功');
  126. }
  127. /**
  128. * @param int $id
  129. * @param ConfigValidate $validate
  130. * @param ConfigClassifyRepository $configClassifyRepository
  131. * @return mixed
  132. * @throws DbException
  133. * @author zfy
  134. * @day 2020-03-27
  135. */
  136. public function update($id, ConfigValidate $validate, ConfigClassifyRepository $configClassifyRepository)
  137. {
  138. $data = $this->request->params(['user_type', 'config_classify_id', 'config_name', 'config_key', 'config_type', 'config_rule', 'required', 'info', 'sort', 'status']);
  139. $validate->check($data);
  140. if (!$this->repository->exists($id))
  141. return app('json')->fail('分类不存在');
  142. if (!$configClassifyRepository->exists($data['config_classify_id']))
  143. return app('json')->fail('配置分类不已存在');
  144. if ($this->repository->keyExists($data['config_key'], $id))
  145. return app('json')->fail('配置key已存在');
  146. $this->repository->update($id, $data);
  147. return app('json')->success('修改成功');
  148. }
  149. /**
  150. * @param int $id
  151. * @return mixed
  152. * @throws DbException
  153. * @author zfy
  154. * @day 2020-03-27
  155. */
  156. public function delete($id)
  157. {
  158. $this->repository->delete($id);
  159. return app('json')->success('删除成功');
  160. }
  161. /**
  162. * @param string $key
  163. * @param ConfigClassifyRepository $configClassifyRepository
  164. * @return mixed
  165. * @throws DataNotFoundException
  166. * @throws DbException
  167. * @throws FormBuilderException
  168. * @throws ModelNotFoundException
  169. * @author zfy
  170. * @day 2020-04-22
  171. */
  172. public function form($key, ConfigClassifyRepository $configClassifyRepository)
  173. {
  174. if (!$configClassifyRepository->keyExists($key) || !($configClassfiy = $configClassifyRepository->keyByData($key)))
  175. return app('json')->fail('配置分类不存在');
  176. $form = $this->repository->cidByFormRule($configClassfiy, $this->request->merId());
  177. return app('json')->success(formToData($form));
  178. }
  179. public function upload($field)
  180. {
  181. $file = $this->request->file($field);
  182. if (!$file)
  183. return app('json')->fail('请上传附件');
  184. $upload = UploadService::create(1);
  185. $data = $upload->to('attach')->validate()->move($field);
  186. if ($data === false) {
  187. return app('json')->fail($upload->getError());
  188. }
  189. return app('json')->success(['src' => path_to_url($upload->getFileInfo()->filePath)]);
  190. }
  191. }