Config.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <?php
  2. namespace app\admin\controller\general;
  3. use app\common\controller\Backend;
  4. use app\common\library\Email;
  5. use app\common\model\Config as ConfigModel;
  6. use think\Exception;
  7. use think\Validate;
  8. /**
  9. * 系统配置
  10. *
  11. * @icon fa fa-cogs
  12. * @remark 可以在此增改系统的变量和分组,也可以自定义分组和变量,如果需要删除请从数据库中删除
  13. */
  14. class Config extends Backend
  15. {
  16. /**
  17. * @var \app\common\model\Config
  18. */
  19. protected $model = null;
  20. protected $noNeedRight = ['check', 'rulelist'];
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = model('Config');
  25. }
  26. /**
  27. * 查看
  28. */
  29. public function index()
  30. {
  31. $siteList = [];
  32. $groupList = ConfigModel::getGroupList();
  33. foreach ($groupList as $k => $v) {
  34. $siteList[$k]['name'] = $k;
  35. $siteList[$k]['title'] = $v;
  36. $siteList[$k]['list'] = [];
  37. }
  38. foreach ($this->model->all() as $k => $v) {
  39. if (!isset($siteList[$v['group']])) {
  40. continue;
  41. }
  42. $value = $v->toArray();
  43. $value['title'] = __($value['title']);
  44. if (in_array($value['type'], ['select', 'selects', 'checkbox', 'radio'])) {
  45. $value['value'] = explode(',', $value['value']);
  46. }
  47. $value['content'] = json_decode($value['content'], true);
  48. $value['tip'] = htmlspecialchars($value['tip']);
  49. $siteList[$v['group']]['list'][] = $value;
  50. }
  51. $index = 0;
  52. foreach ($siteList as $k => &$v) {
  53. $v['active'] = !$index ? true : false;
  54. $index++;
  55. }
  56. $this->view->assign('siteList', $siteList);
  57. $this->view->assign('typeList', ConfigModel::getTypeList());
  58. $this->view->assign('ruleList', ConfigModel::getRegexList());
  59. $this->view->assign('groupList', ConfigModel::getGroupList());
  60. return $this->view->fetch();
  61. }
  62. /**
  63. * 添加
  64. */
  65. public function add()
  66. {
  67. if ($this->request->isPost()) {
  68. $this->token();
  69. $params = $this->request->post("row/a", [], 'trim');
  70. if ($params) {
  71. foreach ($params as $k => &$v) {
  72. $v = is_array($v) ? implode(',', $v) : $v;
  73. }
  74. try {
  75. if (in_array($params['type'], ['select', 'selects', 'checkbox', 'radio', 'array'])) {
  76. $params['content'] = json_encode(ConfigModel::decode($params['content']), JSON_UNESCAPED_UNICODE);
  77. } else {
  78. $params['content'] = '';
  79. }
  80. $result = $this->model->create($params);
  81. if ($result !== false) {
  82. try {
  83. $this->refreshFile();
  84. } catch (Exception $e) {
  85. $this->error($e->getMessage());
  86. }
  87. $this->success();
  88. } else {
  89. $this->error($this->model->getError());
  90. }
  91. } catch (Exception $e) {
  92. $this->error($e->getMessage());
  93. }
  94. }
  95. $this->error(__('Parameter %s can not be empty', ''));
  96. }
  97. return $this->view->fetch();
  98. }
  99. /**
  100. * 编辑
  101. * @param null $ids
  102. */
  103. public function edit($ids = null)
  104. {
  105. if ($this->request->isPost()) {
  106. $this->token();
  107. $row = $this->request->post("row/a", [], 'trim');
  108. if ($row) {
  109. $configList = [];
  110. foreach ($this->model->all() as $v) {
  111. if (isset($row[$v['name']])) {
  112. $value = $row[$v['name']];
  113. if (is_array($value) && isset($value['field'])) {
  114. $value = json_encode(ConfigModel::getArrayData($value), JSON_UNESCAPED_UNICODE);
  115. } else {
  116. $value = is_array($value) ? implode(',', $value) : $value;
  117. }
  118. $v['value'] = $value;
  119. $configList[] = $v->toArray();
  120. }
  121. }
  122. $this->model->allowField(true)->saveAll($configList);
  123. try {
  124. $this->refreshFile();
  125. } catch (Exception $e) {
  126. $this->error($e->getMessage());
  127. }
  128. $this->success();
  129. }
  130. $this->error(__('Parameter %s can not be empty', ''));
  131. }
  132. }
  133. /**
  134. * 删除
  135. * @param string $ids
  136. */
  137. public function del($ids = "")
  138. {
  139. $name = $this->request->post('name');
  140. $config = ConfigModel::getByName($name);
  141. if ($name && $config) {
  142. try {
  143. $config->delete();
  144. $this->refreshFile();
  145. } catch (Exception $e) {
  146. $this->error($e->getMessage());
  147. }
  148. $this->success();
  149. } else {
  150. $this->error(__('Invalid parameters'));
  151. }
  152. }
  153. /**
  154. * 刷新配置文件
  155. */
  156. protected function refreshFile()
  157. {
  158. $config = [];
  159. foreach ($this->model->all() as $k => $v) {
  160. $value = $v->toArray();
  161. if (in_array($value['type'], ['selects', 'checkbox', 'images', 'files'])) {
  162. $value['value'] = explode(',', $value['value']);
  163. }
  164. if ($value['type'] == 'array') {
  165. $value['value'] = (array)json_decode($value['value'], true);
  166. }
  167. $config[$value['name']] = $value['value'];
  168. }
  169. file_put_contents(
  170. APP_PATH . 'extra' . DS . 'site.php',
  171. '<?php' . "\n\nreturn " . var_export($config, true) . ";"
  172. );
  173. }
  174. /**
  175. * 检测配置项是否存在
  176. * @internal
  177. */
  178. public function check()
  179. {
  180. $params = $this->request->post("row/a");
  181. if ($params) {
  182. $config = $this->model->get($params);
  183. if (!$config) {
  184. return $this->success();
  185. } else {
  186. return $this->error(__('Name already exist'));
  187. }
  188. } else {
  189. return $this->error(__('Invalid parameters'));
  190. }
  191. }
  192. /**
  193. * 规则列表
  194. * @internal
  195. */
  196. public function rulelist()
  197. {
  198. //主键
  199. $primarykey = $this->request->request("keyField");
  200. //主键值
  201. $keyValue = $this->request->request("keyValue", "");
  202. $keyValueArr = array_filter(explode(',', $keyValue));
  203. $regexList = \app\common\model\Config::getRegexList();
  204. $list = [];
  205. foreach ($regexList as $k => $v) {
  206. if ($keyValueArr) {
  207. if (in_array($k, $keyValueArr)) {
  208. $list[] = ['id' => $k, 'name' => $v];
  209. }
  210. } else {
  211. $list[] = ['id' => $k, 'name' => $v];
  212. }
  213. }
  214. return json(['list' => $list]);
  215. }
  216. /**
  217. * 发送测试邮件
  218. * @internal
  219. */
  220. public function emailtest()
  221. {
  222. $row = $this->request->post('row/a');
  223. $receiver = $this->request->post("receiver");
  224. if ($receiver) {
  225. if (!Validate::is($receiver, "email")) {
  226. $this->error(__('Please input correct email'));
  227. }
  228. \think\Config::set('site', array_merge(\think\Config::get('site'), $row));
  229. $email = new Email;
  230. $result = $email
  231. ->to($receiver)
  232. ->subject(__("This is a test mail"))
  233. ->message('<div style="min-height:550px; padding: 100px 55px 200px;">' . __('This is a test mail content') . '</div>')
  234. ->send();
  235. if ($result) {
  236. $this->success();
  237. } else {
  238. $this->error($email->getError());
  239. }
  240. } else {
  241. return $this->error(__('Invalid parameters'));
  242. }
  243. }
  244. }