Config.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. use app\common\library\Email;
  5. use app\admin\model\shopro\Config as ConfigModel;
  6. use think\Exception;
  7. use think\Validate;
  8. /**
  9. * Shopro配置
  10. *
  11. * @icon fa fa-cogs
  12. * @remark 可以在此增改商城的变量和分组,也可以自定义分组和变量,如果需要删除请从数据库中删除
  13. */
  14. class Config extends Backend
  15. {
  16. /**
  17. * @var \app\admin\model\shopro\Config
  18. */
  19. protected $model = null;
  20. protected $noNeedRight = ['check', 'rulelist'];
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = model('app\admin\model\shopro\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. $this->success();
  83. } else {
  84. $this->error($this->model->getError());
  85. }
  86. } catch (Exception $e) {
  87. $this->error($e->getMessage());
  88. }
  89. }
  90. $this->error(__('Parameter %s can not be empty', ''));
  91. }
  92. return $this->view->fetch();
  93. }
  94. /**
  95. * 编辑
  96. * @param null $ids
  97. */
  98. public function edit($ids = null)
  99. {
  100. if ($this->request->isPost()) {
  101. $this->token();
  102. $row = $this->request->post("row/a", [], 'trim');
  103. if ($row) {
  104. $configList = [];
  105. foreach ($this->model->all() as $v) {
  106. if (isset($row[$v['name']])) {
  107. $value = $row[$v['name']];
  108. if (is_array($value) && isset($value['field'])) {
  109. $value = json_encode(ConfigModel::getArrayData($value), JSON_UNESCAPED_UNICODE);
  110. } else {
  111. $value = is_array($value) ? implode(',', $value) : $value;
  112. }
  113. $v['value'] = $value;
  114. $configList[] = $v->toArray();
  115. }
  116. }
  117. $this->model->allowField(true)->saveAll($configList);
  118. try {
  119. } catch (Exception $e) {
  120. $this->error($e->getMessage());
  121. }
  122. $this->success();
  123. }
  124. $this->error(__('Parameter %s can not be empty', ''));
  125. }
  126. }
  127. public function platform($type)
  128. {
  129. if ($this->request->isPost()) {
  130. $data = $this->request->post("data");
  131. if ($data) {
  132. try {
  133. $config = $this->model->get(['name' => $type]);
  134. if(!$config) {
  135. $this->model->allowField(true)->save([
  136. 'name' => $type,
  137. 'title' => $this->request->post("title"),
  138. 'group' => $this->request->post("group"),
  139. 'type' => 'array',
  140. 'value' => $data,
  141. ]);
  142. }else {
  143. $config->value = $data;
  144. $config->save();
  145. }
  146. if ($type == 'chat') {
  147. // 存为文件
  148. file_put_contents(
  149. ROOT_PATH . 'addons' . DS . 'shopro' . DS . 'library' . DS . 'chat' . DS . 'config.php',
  150. '<?php' . "\n\nreturn " . var_export(json_decode($data, true), true) . ";"
  151. );
  152. }
  153. } catch (Exception $e) {
  154. $this->error($e->getMessage());
  155. }
  156. $this->success();
  157. }
  158. $this->error(__('Parameter %s can not be empty', ''));
  159. }
  160. $config = $this->model->where(['name' => $type])->value('value');
  161. $config = json_decode($config, true);
  162. if ($type === 'wxOfficialAccount') {
  163. //动态解析微信公众号服务端Api Url地址域名
  164. $config['url'] = request()->domain() . '/addons/shopro/wechat';
  165. }
  166. if($type === 'user') {
  167. $this->assignconfig('groupList', \app\admin\model\UserGroup::field('id,name,status')->select());
  168. }
  169. $this->assignconfig('row', $config);
  170. return $this->view->fetch();
  171. }
  172. /**
  173. * 删除
  174. * @param string $ids
  175. */
  176. public function del($ids = "")
  177. {
  178. $name = $this->request->post('name');
  179. $config = ConfigModel::getByName($name);
  180. if ($name && $config) {
  181. try {
  182. $config->delete();
  183. $this->refreshFile();
  184. } catch (Exception $e) {
  185. $this->error($e->getMessage());
  186. }
  187. $this->success();
  188. } else {
  189. $this->error(__('Invalid parameters'));
  190. }
  191. }
  192. /**
  193. * 刷新配置文件
  194. */
  195. protected function refreshFile()
  196. {
  197. $config = [];
  198. foreach ($this->model->all() as $k => $v) {
  199. $value = $v->toArray();
  200. if (in_array($value['type'], ['selects', 'checkbox', 'images', 'files'])) {
  201. $value['value'] = explode(',', $value['value']);
  202. }
  203. if ($value['type'] == 'array') {
  204. $value['value'] = (array)json_decode($value['value'], true);
  205. }
  206. $config[$value['name']] = $value['value'];
  207. }
  208. file_put_contents(
  209. APP_PATH . 'extra' . DS . 'site.php',
  210. '<?php' . "\n\nreturn " . var_export($config, true) . ";"
  211. );
  212. }
  213. /**
  214. * 检测配置项是否存在
  215. * @internal
  216. */
  217. public function check()
  218. {
  219. $params = $this->request->post("row/a");
  220. if ($params) {
  221. $config = $this->model->get($params);
  222. if (!$config) {
  223. return $this->success();
  224. } else {
  225. return $this->error(__('Name already exist'));
  226. }
  227. } else {
  228. return $this->error(__('Invalid parameters'));
  229. }
  230. }
  231. /**
  232. * 规则列表
  233. * @internal
  234. */
  235. public function rulelist()
  236. {
  237. //主键
  238. $primarykey = $this->request->request("keyField");
  239. //主键值
  240. $keyValue = $this->request->request("keyValue", "");
  241. $keyValueArr = array_filter(explode(',', $keyValue));
  242. $regexList = \app\common\model\Config::getRegexList();
  243. $list = [];
  244. foreach ($regexList as $k => $v) {
  245. if ($keyValueArr) {
  246. if (in_array($k, $keyValueArr)) {
  247. $list[] = ['id' => $k, 'name' => $v];
  248. }
  249. } else {
  250. $list[] = ['id' => $k, 'name' => $v];
  251. }
  252. }
  253. return json(['list' => $list]);
  254. }
  255. /**
  256. * 发送测试邮件
  257. * @internal
  258. */
  259. public function emailtest()
  260. {
  261. $row = $this->request->post('row/a');
  262. $receiver = $this->request->post("receiver");
  263. if ($receiver) {
  264. if (!Validate::is($receiver, "email")) {
  265. $this->error(__('Please input correct email'));
  266. }
  267. \think\Config::set('site', array_merge(\think\Config::get('site'), $row));
  268. $email = new Email;
  269. $result = $email
  270. ->to($receiver)
  271. ->subject(__("This is a test mail"))
  272. ->message('<div style="min-height:550px; padding: 100px 55px 200px;">' . __('This is a test mail content') . '</div>')
  273. ->send();
  274. if ($result) {
  275. $this->success();
  276. } else {
  277. $this->error($email->getError());
  278. }
  279. } else {
  280. return $this->error(__('Invalid parameters'));
  281. }
  282. }
  283. }