心理咨询网
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.

ContentSortController.php 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年12月26日
  7. * 内容栏目控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\ContentSortModel;
  12. class ContentSortController 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 ContentSortModel();
  21. }
  22. // 内容栏目列表
  23. public function index()
  24. {
  25. $this->assign('list', true);
  26. $tree = $this->model->getList();
  27. $sorts = $this->makeSortList($tree);
  28. $this->assign('sorts', $sorts);
  29. // 内容模型
  30. $models = model('admin.content.Model');
  31. $this->assign('allmodels', $models->getSelectAll());
  32. $this->assign('models', $models->getSelect());
  33. // 内容栏目下拉表
  34. $sort_tree = $this->model->getSelect();
  35. $sort_select = $this->makeSortSelect($sort_tree);
  36. $this->assign('sort_select', $sort_select);
  37. // 模板文件
  38. $htmldir = $this->config('tpl_html_dir') ? '/' . $this->config('tpl_html_dir') : '';
  39. $this->assign('tpls', file_list(ROOT_PATH . current($this->config('tpl_dir')) . '/' . $this->model->getTheme() . $htmldir));
  40. // 前端地址连接符判断
  41. $url_break_char = $this->config('url_break_char') ?: '_';
  42. $this->assign('url_break_char', $url_break_char);
  43. // 获取会员分组
  44. $this->assign('groups', model('admin.member.MemberGroup')->getSelect());
  45. $this->display('content/contentsort.html');
  46. }
  47. // 生成无限级内容栏目列表
  48. private function makeSortList($tree)
  49. {
  50. // 循环生成
  51. foreach ($tree as $value) {
  52. $this->count ++;
  53. $this->outData[$this->count] = new \stdClass();
  54. foreach ($value as $k => $v) {
  55. $this->outData[$this->count]->$k = $v;
  56. }
  57. if ($value->son) {
  58. $this->outData[$this->count]->son = true;
  59. } else {
  60. $this->outData[$this->count]->son = false;
  61. }
  62. // 子菜单处理
  63. if ($value->son) {
  64. $this->blank .= '  ';
  65. $this->makeSortList($value->son);
  66. }
  67. }
  68. // 循环完后回归缩进位置
  69. $this->blank = substr($this->blank, 6);
  70. return $this->outData;
  71. }
  72. // 内容栏目增加
  73. public function add()
  74. {
  75. if ($_POST) {
  76. if (! ! $multiplename = post('multiplename')) {
  77. $multiplename = str_replace(',', ',', $multiplename);
  78. $pcode = post('pcode', 'var');
  79. $type = post('type');
  80. $mcode = post('mcode');
  81. $listtpl = basename(post('listtpl'));
  82. $contenttpl = basename(post('contenttpl'));
  83. $status = post('status');
  84. $is_show = post('is_show');
  85. if (! $pcode) { // 父编码默认为0
  86. $pcode = 0;
  87. }
  88. if (! $mcode) {
  89. alert_back('栏目模型必须选择!');
  90. }
  91. if (! $type) {
  92. alert_back('栏目类型不能为空!');
  93. }
  94. $names = explode(',', $multiplename);
  95. $lastcode = $this->model->getLastCode();
  96. $scode = get_auto_code($lastcode);
  97. foreach ($names as $key => $value) {
  98. $data[] = array(
  99. 'acode' => session('acode'),
  100. 'pcode' => $pcode,
  101. 'scode' => $scode,
  102. 'name' => $value,
  103. 'mcode' => $mcode,
  104. 'listtpl' => $listtpl,
  105. 'contenttpl' => $contenttpl,
  106. 'status' => $status,
  107. 'gid' => 0,
  108. 'gtype' => 4,
  109. 'subname' => '',
  110. 'filename' => '',
  111. 'outlink' => '',
  112. 'ico' => '',
  113. 'pic' => '',
  114. 'title' => '',
  115. 'keywords' => '',
  116. 'description' => '',
  117. 'sorting' => 255,
  118. 'create_user' => session('username'),
  119. 'update_user' => session('username'),
  120. 'is_show' => $is_show
  121. );
  122. $scode = get_auto_code($scode);
  123. }
  124. } else {
  125. // 获取数据
  126. $scode = get_auto_code($this->model->getLastCode()); // 自动编码;
  127. $pcode = post('pcode', 'var');
  128. $name = post('name');
  129. $type = post('type');
  130. $mcode = post('mcode');
  131. $listtpl = basename(post('listtpl'));
  132. $contenttpl = basename(post('contenttpl'));
  133. $status = post('status');
  134. $subname = post('subname');
  135. $filename = trim(post('filename'), '/');
  136. $outlink = post('outlink');
  137. $ico = post('ico');
  138. $pic = post('pic');
  139. $title = post('title');
  140. $keywords = post('keywords');
  141. $description = post('description');
  142. $gid = post('gid', 'int') ?: 0;
  143. $gtype = post('gtype', 'int') ?: 4;
  144. $gnote = post('gnote');
  145. $def1 = post('def1');
  146. $def2 = post('def2');
  147. $def3 = post('def3');
  148. if (! $scode) {
  149. alert_back('编码不能为空!');
  150. }
  151. if (! $pcode) { // 父编码默认为0
  152. $pcode = 0;
  153. }
  154. if (! $name) {
  155. alert_back('栏目名不能为空!');
  156. }
  157. if (! $mcode) {
  158. alert_back('栏目模型必须选择!');
  159. }
  160. if (! $type) {
  161. alert_back('栏目类型不能为空!');
  162. }
  163. if ($filename && ! preg_match('/^[a-zA-Z0-9\-\/]+$/', $filename)) {
  164. alert_back('URL名称只允许字母、数字、横线、斜线组成!');
  165. }
  166. if ($filename && $this->model->checkUrlname($filename)) {
  167. alert_back('URL名称与模型URL名称冲突,请换一个名称!');
  168. }
  169. // 缩放缩略图
  170. if ($ico) {
  171. resize_img(ROOT_PATH . $ico, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  172. }
  173. // 检查编码
  174. if ($this->model->checkSort("scode='$scode'")) {
  175. alert_back('该内容栏目编号已经存在,不能再使用!');
  176. }
  177. // 检查自定义URL名称
  178. if ($filename) {
  179. while ($this->model->checkFilename($filename)) {
  180. $filename = $filename . '_' . mt_rand(1, 20);
  181. }
  182. }
  183. // 构建数据
  184. $data = array(
  185. 'acode' => session('acode'),
  186. 'pcode' => $pcode,
  187. 'scode' => $scode,
  188. 'name' => $name,
  189. 'mcode' => $mcode,
  190. 'listtpl' => $listtpl,
  191. 'contenttpl' => $contenttpl,
  192. 'status' => $status,
  193. 'gid' => $gid,
  194. 'gtype' => $gtype,
  195. 'gnote' => $gnote,
  196. 'subname' => $subname,
  197. 'def1' => $def1,
  198. 'def2' => $def2,
  199. 'def3' => $def3,
  200. 'filename' => $filename,
  201. 'outlink' => $outlink,
  202. 'ico' => $ico,
  203. 'pic' => $pic,
  204. 'title' => $title,
  205. 'keywords' => $keywords,
  206. 'description' => $description,
  207. 'sorting' => 255,
  208. 'create_user' => session('username'),
  209. 'update_user' => session('username')
  210. );
  211. }
  212. // 执行添加
  213. if ($this->model->addSort($data)) {
  214. if ($type == 1 && ! $outlink) { // 在填写了外链时不生成单页
  215. if ($multiplename) {
  216. foreach ($data as $key => $value) {
  217. $this->addSingle($value['scode'], $value['name']);
  218. }
  219. } else {
  220. $this->addSingle($scode, $name);
  221. }
  222. }
  223. $this->log('新增数据内容栏目' . $scode . '成功!');
  224. success('新增成功!', url('/admin/ContentSort/index'));
  225. } else {
  226. $this->log('新增数据内容栏目' . $scode . '失败!');
  227. error('新增失败!', - 1);
  228. }
  229. }
  230. }
  231. // 生成内容栏目下拉选择
  232. private function makeSortSelect($tree, $selectid = null)
  233. {
  234. $list_html = '';
  235. foreach ($tree as $value) {
  236. // 默认选择项
  237. if ($selectid == $value->scode) {
  238. $select = "selected='selected'";
  239. } else {
  240. $select = '';
  241. }
  242. if (get('scode') != $value->scode) { // 不显示本身,避免出现自身为自己的父节点
  243. $list_html .= "<option value='{$value->scode}' $select>{$this->blank}{$value->name}</option>";
  244. }
  245. // 子菜单处理
  246. if ($value->son) {
  247. $this->blank .= '  ';
  248. $list_html .= $this->makeSortSelect($value->son, $selectid);
  249. }
  250. }
  251. // 循环完后回归位置
  252. $this->blank = substr($this->blank, 0, - 6);
  253. return $list_html;
  254. }
  255. // 内容栏目删除
  256. public function del()
  257. {
  258. // 执行批量删除
  259. if ($_POST) {
  260. if (! ! $list = post('list')) {
  261. if ($this->model->delSortList($list)) {
  262. $this->log('批量删除栏目成功!');
  263. success('批量删除成功!', - 1);
  264. } else {
  265. $this->log('批量删除栏目失败!');
  266. error('批量删除失败!', - 1);
  267. }
  268. } else {
  269. alert_back('请选择要删除的栏目!');
  270. }
  271. }
  272. if (! $scode = get('scode', 'var')) {
  273. error('传递的参数值错误!', - 1);
  274. }
  275. if ($this->model->delSort($scode)) {
  276. $this->log('删除数据内容栏目' . $scode . '成功!');
  277. success('删除成功!', - 1);
  278. } else {
  279. $this->log('删除数据内容栏目' . $scode . '失败!');
  280. error('删除失败!', - 1);
  281. }
  282. }
  283. // 内容栏目修改
  284. public function mod()
  285. {
  286. if (! ! $submit = post('submit')) {
  287. switch ($submit) {
  288. case 'sorting': // 修改列表排序
  289. $listall = post('listall');
  290. if ($listall) {
  291. $sorting = post('sorting');
  292. foreach ($listall as $key => $value) {
  293. if ($sorting[$key] === '' || ! is_numeric($sorting[$key]))
  294. $sorting[$key] = 255;
  295. $this->model->modSortSorting($value, "sorting=" . $sorting[$key]);
  296. }
  297. $this->log('批量修改栏目排序成功!');
  298. success('修改成功!', - 1);
  299. } else {
  300. alert_back('排序失败,无任何内容!');
  301. }
  302. break;
  303. }
  304. }
  305. if (! $scode = get('scode', 'var')) {
  306. error('传递的参数值错误!', - 1);
  307. }
  308. // 单独修改状态
  309. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  310. if ($this->model->modSort($scode, "$field='$value',update_user='" . session('username') . "'")) {
  311. $this->log('修改数据内容栏目' . $scode . '状态' . $value . '成功!');
  312. location(- 1);
  313. } else {
  314. $this->log('修改数据内容栏目' . $scode . '状态' . $value . '失败!');
  315. alert_back('修改失败!');
  316. }
  317. }
  318. // 修改操作
  319. if ($_POST) {
  320. // 获取数据
  321. $pcode = post('pcode', 'var');
  322. $name = post('name');
  323. $mcode = post('mcode');
  324. $type = post('type');
  325. $listtpl = basename(post('listtpl'));
  326. $contenttpl = basename(post('contenttpl'));
  327. $status = post('status');
  328. $is_show = post('is_show');
  329. $subname = post('subname');
  330. $filename = trim(post('filename'), '/');
  331. $outlink = post('outlink');
  332. $ico = post('ico');
  333. $pic = post('pic');
  334. $title = post('title');
  335. $keywords = post('keywords');
  336. $description = post('description');
  337. $modsub = post('modsub', 'int');
  338. $gid = post('gid', 'int') ?: 0;
  339. $gtype = post('gtype', 'int') ?: 4;
  340. $gnote = post('gnote');
  341. $def1 = post('def1');
  342. $def2 = post('def2');
  343. $def3 = post('def3');
  344. if (! $pcode) { // 父编码默认为0
  345. $pcode = 0;
  346. }
  347. if (! $name) {
  348. alert_back('栏目名不能为空!');
  349. }
  350. if (! $mcode) {
  351. alert_back('栏目模型必须选择!');
  352. }
  353. if (! $type) {
  354. alert_back('栏目类型不能为空!');
  355. }
  356. if ($filename && ! preg_match('/^[a-zA-Z0-9\-\/]+$/', $filename)) {
  357. alert_back('URL名称只允许字母、数字、横线、斜线组成!');
  358. }
  359. if ($filename && $this->model->checkUrlname($filename)) {
  360. alert_back('URL名称与模型URL名称冲突,请换一个名称!');
  361. }
  362. // 缩放缩略图
  363. if ($ico) {
  364. resize_img(ROOT_PATH . $ico, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  365. }
  366. if ($filename) {
  367. while ($this->model->checkFilename($filename, "scode<>'$scode'")) {
  368. $filename = $filename . '-' . mt_rand(1, 20);
  369. }
  370. }
  371. // 构建数据
  372. $data = array(
  373. 'pcode' => $pcode,
  374. 'name' => $name,
  375. 'mcode' => $mcode,
  376. 'listtpl' => $listtpl,
  377. 'contenttpl' => $contenttpl,
  378. 'status' => $status,
  379. 'gid' => $gid,
  380. 'gtype' => $gtype,
  381. 'gnote' => $gnote,
  382. 'subname' => $subname,
  383. 'def1' => $def1,
  384. 'def2' => $def2,
  385. 'def3' => $def3,
  386. 'filename' => $filename,
  387. 'outlink' => $outlink,
  388. 'ico' => $ico,
  389. 'pic' => $pic,
  390. 'title' => $title,
  391. 'keywords' => $keywords,
  392. 'description' => $description,
  393. 'update_user' => session('username'),
  394. 'is_show' => $is_show
  395. );
  396. // 执行添加
  397. if ($this->model->modSort($scode, $data, $modsub)) {
  398. // 如果修改为单页并且跳转,则删除单页内容,否则判断是否存在内容,不存在则添加
  399. if ($type == 1 && $outlink) {
  400. $this->model->delContent($scode);
  401. } elseif ($type == 1 && ! $this->model->findContent($scode)) {
  402. $this->addSingle($scode, $name);
  403. }
  404. $this->log('修改数据内容栏目' . $scode . '成功!');
  405. success('修改成功!', url('/admin/ContentSort/index'));
  406. } else {
  407. location(- 1);
  408. }
  409. } else { // 调取修改内容
  410. $this->assign('mod', true);
  411. $sort = $this->model->getSort($scode);
  412. if (! $sort) {
  413. error('编辑的内容已经不存在!', - 1);
  414. }
  415. $this->assign('sort', $sort);
  416. // 父编码下拉选择
  417. $sort_tree = $this->model->getSelect();
  418. $sort_select = $this->makeSortSelect($sort_tree, $sort->pcode);
  419. $this->assign('sort_select', $sort_select);
  420. // 模板文件
  421. $htmldir = $this->config('tpl_html_dir') ? '/' . $this->config('tpl_html_dir') : '';
  422. $this->assign('tpls', file_list(ROOT_PATH . current($this->config('tpl_dir')) . '/' . $this->model->getTheme() . $htmldir));
  423. // 内容模型
  424. $models = model('admin.content.Model');
  425. $this->assign('models', $models->getSelect());
  426. // 获取会员分组
  427. $this->assign('groups', model('admin.member.MemberGroup')->getSelect());
  428. $this->display('content/contentsort.html');
  429. }
  430. }
  431. // 添加栏目时执行单页内容增加
  432. public function addSingle($scode, $title)
  433. {
  434. // 构建数据
  435. $data = array(
  436. 'acode' => session('acode'),
  437. 'scode' => $scode,
  438. 'subscode' => '',
  439. 'title' => $title,
  440. 'titlecolor' => '#333333',
  441. 'subtitle' => '',
  442. 'filename' => '',
  443. 'author' => session('realname'),
  444. 'source' => '本站',
  445. 'outlink' => '',
  446. 'date' => date('Y-m-d H:i:s'),
  447. 'ico' => '',
  448. 'pics' => '',
  449. 'content' => '',
  450. 'tags' => '',
  451. 'enclosure' => '',
  452. 'keywords' => '',
  453. 'description' => '',
  454. 'sorting' => 255,
  455. 'status' => 1,
  456. 'istop' => 0,
  457. 'isrecommend' => 0,
  458. 'isheadline' => 0,
  459. 'gid' => 0,
  460. 'gtype' => 4,
  461. 'gnote' => '',
  462. 'visits' => 0,
  463. 'likes' => 0,
  464. 'oppose' => 0,
  465. 'create_user' => session('username'),
  466. 'update_user' => session('username')
  467. );
  468. // 执行添加
  469. if ($this->model->addSingle($data)) {
  470. return true;
  471. } else {
  472. return false;
  473. }
  474. }
  475. }