心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AreaController.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年4月3日
  7. * 区域控制器
  8. */
  9. namespace app\admin\controller\system;
  10. use core\basic\Controller;
  11. use app\admin\model\system\AreaModel;
  12. class AreaController extends Controller
  13. {
  14. private $count;
  15. private $blank;
  16. private $outData = array();
  17. private $model;
  18. public function __construct()
  19. {
  20. $this->model = new AreaModel();
  21. }
  22. // 区域列表
  23. public function index()
  24. {
  25. $this->assign('list', true);
  26. $area_tree = $this->model->getList();
  27. $areas = $this->makeAreaList($area_tree);
  28. $this->assign('areas', $areas);
  29. // 区域下拉表
  30. $area_tree = $this->model->getSelect();
  31. $area_select = $this->makeAreaSelect($area_tree);
  32. $this->assign('area_select', $area_select);
  33. $this->display('system/area.html');
  34. }
  35. // 生成无限级区域列表
  36. private function makeAreaList($tree)
  37. {
  38. // 循环生成
  39. foreach ($tree as $value) {
  40. $this->count ++;
  41. $this->outData[$this->count] = new \stdClass();
  42. $this->outData[$this->count]->id = $value->id;
  43. $this->outData[$this->count]->blank = $this->blank;
  44. $this->outData[$this->count]->name = $value->name;
  45. $this->outData[$this->count]->domain = $value->domain;
  46. $this->outData[$this->count]->acode = $value->acode;
  47. $this->outData[$this->count]->pcode = $value->pcode;
  48. $this->outData[$this->count]->is_default = $value->is_default;
  49. $this->outData[$this->count]->create_user = $value->create_user;
  50. $this->outData[$this->count]->update_user = $value->update_user;
  51. $this->outData[$this->count]->create_time = $value->create_time;
  52. $this->outData[$this->count]->update_time = $value->update_time;
  53. if ($value->son) {
  54. $this->outData[$this->count]->son = true;
  55. } else {
  56. $this->outData[$this->count]->son = false;
  57. }
  58. // 子菜单处理
  59. if ($value->son) {
  60. $this->blank .= '  ';
  61. $this->makeAreaList($value->son);
  62. }
  63. }
  64. // 循环完后回归缩进位置
  65. $this->blank = substr($this->blank, 6);
  66. return $this->outData;
  67. }
  68. // 区域增加
  69. public function add()
  70. {
  71. if ($_POST) {
  72. // 获取数据
  73. $acode = post('acode', 'var');
  74. $pcode = post('pcode', 'var');
  75. $name = post('name');
  76. $domain = post('domain');
  77. $is_default = post('is_default');
  78. if (! $acode) {
  79. alert_back('编码不能为空!');
  80. }
  81. if (! $pcode) { // 父编码默认为0
  82. $pcode = 0;
  83. }
  84. if (! $name) {
  85. alert_back('区域名称不能为空!');
  86. }
  87. if ($domain) {
  88. $reg = '{^(https://|http://)?([\w\-.]+)([\/]+)?$}';
  89. if (preg_match($reg, $domain)) {
  90. $domain = preg_replace($reg, '$2', $domain);
  91. } else {
  92. alert_back('要绑定的域名输入有错!');
  93. }
  94. // 检查绑定
  95. if ($this->model->checkArea("domain='$domain'")) {
  96. alert_back('该域名已经绑定其他区域,不能再使用!');
  97. }
  98. }
  99. // 检查编码
  100. if ($this->model->checkArea("acode='$acode'")) {
  101. alert_back('该区域编号已经存在,不能再使用!');
  102. }
  103. // 构建数据
  104. $data = array(
  105. 'acode' => $acode,
  106. 'pcode' => $pcode,
  107. 'name' => $name,
  108. 'domain' => $domain,
  109. 'is_default' => $is_default,
  110. 'create_user' => session('username'),
  111. 'update_user' => session('username')
  112. );
  113. // 执行添加
  114. if ($this->model->addArea($data)) {
  115. if (session('ucode') == '10001') {
  116. $acodes = session('acodes');
  117. $acodes[] = $acode;
  118. session('acodes', $acodes); // 更新管理员管理区域
  119. $model = model('Index');
  120. $areas = $model->getAreas();
  121. session('area_map', get_mapping($areas, 'name', 'acode')); // 更新区域代码名称映射表
  122. session('area_tree', $model->getUserAreaTree($areas, 0, 'acode', 'pcode', 'son', $acodes)); // 更新当前用户的区域树
  123. }
  124. $this->log('新增数据区域' . $acode . '成功!');
  125. path_delete(RUN_PATH . '/config'); // 清理缓存的配置文件
  126. if (! ! $backurl = get('backurl')) {
  127. success('新增成功!', base64_decode($backurl));
  128. } else {
  129. success('新增成功!', url('/admin/Area/index'));
  130. }
  131. } else {
  132. $this->log('新增数据区域' . $acode . '失败!');
  133. error('新增失败!', - 1);
  134. }
  135. }
  136. }
  137. // 生成区域选择
  138. private function makeAreaSelect($tree, $selectid = null)
  139. {
  140. $list_html = '';
  141. foreach ($tree as $value) {
  142. // 默认选择项
  143. if ($selectid == $value->acode) {
  144. $select = "selected='selected'";
  145. } else {
  146. $select = '';
  147. }
  148. if (get('acode') != $value->acode) { // 不显示本身,避免出现自身为自己的父节点
  149. $list_html .= "<option value='{$value->acode}' $select>{$this->blank}{$value->acode} {$value->name}</option>";
  150. }
  151. // 子菜单处理
  152. if ($value->son) {
  153. $this->blank .= '  ';
  154. $list_html .= $this->makeAreaSelect($value->son, $selectid);
  155. }
  156. }
  157. // 循环完后回归位置
  158. $this->blank = substr($this->blank, 0, - 6);
  159. return $list_html;
  160. }
  161. // 区域删除
  162. public function del()
  163. {
  164. if (! $acode = get('acode', 'var')) {
  165. error('传递的参数值错误!', - 1);
  166. }
  167. if ($acode == 'cn') {
  168. error('系统内置区域不允许删除!', - 1);
  169. }
  170. if ($this->model->delArea($acode)) {
  171. path_delete(RUN_PATH . '/config'); // 清理缓存的配置文件
  172. $this->log('删除数据区域' . $acode . '成功!');
  173. session_unset();
  174. success('删除成功,请重新登录', url('/admin/Index/index'));
  175. } else {
  176. $this->log('删除数据区域' . $acode . '失败!');
  177. error('删除失败,请核对是否为默认区域!', - 1);
  178. }
  179. }
  180. // 区域修改
  181. public function mod()
  182. {
  183. if (! $acode = get('acode', 'var')) {
  184. error('传递的参数值错误!', - 1);
  185. }
  186. // 修改操作
  187. if ($_POST) {
  188. // 获取数据
  189. $acode_new = post('acode', 'var');
  190. $pcode = post('pcode', 'var');
  191. $name = post('name');
  192. $domain = post('domain');
  193. $is_default = post('is_default');
  194. if (! $acode_new) {
  195. alert_back('编码不能为空!');
  196. }
  197. if (! $pcode) { // 父编码默认为0
  198. $pcode = 0;
  199. }
  200. if (! $name) {
  201. alert_back('区域名称不能为空!');
  202. }
  203. if ($domain) {
  204. $reg = '{^(https://|http://)?([\w\-.]+)([\/]+)?$}';
  205. if (preg_match($reg, $domain)) {
  206. $domain = preg_replace($reg, '$2', $domain);
  207. } else {
  208. alert_back('要绑定的域名输入有错!');
  209. }
  210. // 检查绑定
  211. if ($this->model->checkArea("domain='$domain' AND acode<>'$acode'")) {
  212. alert_back('该域名已经绑定其他区域,不能再使用!');
  213. }
  214. }
  215. // 检查编码
  216. if ($this->model->checkArea("acode='$acode_new' AND acode<>'$acode'")) {
  217. alert_back('该区域编号已经存在,不能再使用!');
  218. }
  219. // 构建数据
  220. $data = array(
  221. 'acode' => $acode_new,
  222. 'pcode' => $pcode,
  223. 'name' => $name,
  224. 'domain' => $domain,
  225. 'is_default' => $is_default,
  226. 'update_user' => session('username')
  227. );
  228. // 执行添加
  229. if ($this->model->modArea($acode, $data)) {
  230. if (session('ucode') == '10001') {
  231. $acodes = session('acodes');
  232. $acodes[] = $acode_new;
  233. session('acodes', $acodes); // 更新管理员管理区域
  234. $model = model('Index');
  235. $areas = $model->getAreas();
  236. session('area_map', get_mapping($areas, 'name', 'acode')); // 更新区域代码名称映射表
  237. session('area_tree', $model->getUserAreaTree($areas, 0, 'acode', 'pcode', 'son', $acodes)); // 更新当前用户的区域树
  238. }
  239. $this->log('修改数据区域' . $acode . '成功!');
  240. path_delete(RUN_PATH . '/config'); // 清理缓存的配置文件
  241. if (! ! $backurl = get('backurl')) {
  242. success('修改成功!', base64_decode($backurl));
  243. } else {
  244. success('修改成功!', url('/admin/Area/index'));
  245. }
  246. } else {
  247. location(- 1);
  248. }
  249. } else { // 调取修改内容
  250. $this->assign('mod', true);
  251. $area = $this->model->getArea($acode);
  252. if (! $area) {
  253. error('编辑的内容已经不存在!', - 1);
  254. }
  255. $this->assign('area', $area);
  256. // 父编码下拉选择
  257. $area_tree = $this->model->getSelect();
  258. $area_select = $this->makeAreaSelect($area_tree, $area->pcode);
  259. $this->assign('area_select', $area_select);
  260. $this->display('system/area.html');
  261. }
  262. }
  263. }