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

ContentController.php 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年12月15日
  7. * 文章控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\ContentModel;
  12. class ContentController extends Controller
  13. {
  14. private $model;
  15. private $blank;
  16. public function __construct()
  17. {
  18. $this->model = new ContentModel();
  19. }
  20. // 文章列表
  21. public function index()
  22. {
  23. if ((! ! $id = get('id', 'int')) && $result = $this->model->getContent($id)) {
  24. $this->assign('more', true);
  25. $this->assign('content', $result);
  26. } else {
  27. $this->assign('list', true);
  28. if (! $mcode = get('mcode', 'var')) {
  29. error('传递的模型编码参数有误,请核对后重试!');
  30. }
  31. if (isset($_GET['keyword'])) {
  32. if (! ! $scode = get('scode', 'var')) {
  33. $result = $this->model->findContent($mcode, $scode, get('keyword', 'vars'));
  34. } else {
  35. $result = $this->model->findContentAll($mcode, get('keyword', 'vars'));
  36. }
  37. } elseif (! ! $scode = get('scode', 'int')) {
  38. $result = $this->model->findContent($mcode, $scode, '');
  39. } else {
  40. $result = $this->model->getList($mcode);
  41. }
  42. $this->assign('contents', $result);
  43. // 文章分类下拉列表
  44. $sort_model = model('admin.content.ContentSort');
  45. $sort_select = $sort_model->getListSelect($mcode);
  46. $this->assign('search_select', $this->makeSortSelect($sort_select, get('scode')));
  47. $this->assign('sort_select', $this->makeSortSelect($sort_select, session('addscode')));
  48. $this->assign('subsort_select', $this->makeSortSelect($sort_select));
  49. // 模型名称
  50. $this->assign('model_name', model('admin.content.Model')->getName($mcode));
  51. // 扩展字段
  52. $this->assign('extfield', model('admin.content.ExtField')->getModelField($mcode));
  53. $this->assign('baidu_zz_token', $this->config('baidu_zz_token'));
  54. $this->assign('baidu_ks_token', $this->config('baidu_ks_token'));
  55. // 前端地址连接符判断
  56. $url_break_char = $this->config('url_break_char') ?: '_';
  57. $this->assign('url_break_char', $url_break_char);
  58. // 获取会员分组
  59. $this->assign('groups', model('admin.member.MemberGroup')->getSelect());
  60. }
  61. $this->display('content/content.html');
  62. }
  63. // 文章增加
  64. public function add()
  65. {
  66. if ($_POST) {
  67. // 获取数据
  68. $scode = post('scode');
  69. $subscode = post('subscode');
  70. $title = post('title');
  71. $titlecolor = post('titlecolor');
  72. $subtitle = post('subtitle');
  73. $filename = trim(post('filename'), '/');
  74. $author = post('author');
  75. $source = post('source');
  76. $outlink = post('outlink');
  77. $date = post('date');
  78. $ico = post('ico');
  79. $pics = post('pics');
  80. // 获取多图标题
  81. $picstitle = post('picstitle');
  82. if ($picstitle) {
  83. $picstitle = implode(',', $picstitle);
  84. }
  85. $content = post('content');
  86. $tags = str_replace(',', ',', post('tags'));
  87. $enclosure = post('enclosure');
  88. $keywords = post('keywords');
  89. $description = post('description');
  90. $status = post('status', 'int');
  91. $istop = post('istop', 'int', '', '', 0);
  92. $isrecommend = post('isrecommend', 'int', '', '', 0);
  93. $isheadline = post('isheadline', 'int', '', '', 0);
  94. $gid = post('gid', 'int') ?: 0;
  95. $gtype = post('gtype', 'int') ?: 4;
  96. $gnote = post('gnote');
  97. if (! $scode) {
  98. alert_back('内容分类不能为空!');
  99. }
  100. if (! $title) {
  101. alert_back('文章标题不能为空!');
  102. }
  103. if ($filename && ! preg_match('/^[a-zA-Z0-9\-_\/]+$/', $filename)) {
  104. alert_back('内容URL名称只允许字母、数字、横线、下划线组成!');
  105. }
  106. // 自动提起前一百个字符为描述
  107. if (! $description && isset($_POST['content'])) {
  108. $description = escape_string(clear_html_blank(substr_both(strip_tags($_POST['content']), 0, 150)));
  109. }
  110. // 无缩略图时,自动提取文章第一张图为缩略图
  111. if (! $ico && preg_match('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {
  112. $ico = $srcs[1];
  113. }
  114. // 缩放缩略图
  115. if ($ico) {
  116. resize_img(ROOT_PATH . $ico, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  117. }
  118. // 检查自定义URL名称
  119. if ($filename) {
  120. while ($this->model->checkFilename($filename)) {
  121. $filename = $filename . '-' . mt_rand(1, 20);
  122. }
  123. }
  124. // 记住新增栏目
  125. session('addscode', $scode);
  126. // 构建数据
  127. $data = array(
  128. 'acode' => session('acode'),
  129. 'scode' => $scode,
  130. 'subscode' => $subscode,
  131. 'title' => $title,
  132. 'titlecolor' => $titlecolor,
  133. 'subtitle' => $subtitle,
  134. 'filename' => $filename,
  135. 'author' => $author,
  136. 'source' => $source,
  137. 'outlink' => $outlink,
  138. 'date' => $date,
  139. 'ico' => $ico,
  140. 'pics' => $pics,
  141. 'picstitle' => $picstitle,
  142. 'content' => $content,
  143. 'tags' => $tags,
  144. 'enclosure' => $enclosure,
  145. 'keywords' => $keywords,
  146. 'description' => clear_html_blank($description),
  147. 'sorting' => 255,
  148. 'status' => $status,
  149. 'istop' => $istop,
  150. 'isrecommend' => $isrecommend,
  151. 'isheadline' => $isheadline,
  152. 'gid' => $gid,
  153. 'gtype' => $gtype,
  154. 'gnote' => $gnote,
  155. 'visits' => 0,
  156. 'likes' => 0,
  157. 'oppose' => 0,
  158. 'create_user' => session('username'),
  159. 'update_user' => session('username')
  160. );
  161. // 执行添加
  162. if (! ! $id = $this->model->addContent($data)) {
  163. // 扩展内容添加
  164. foreach ($_POST as $key => $value) {
  165. if (preg_match('/^ext_[\w\-]+$/', $key)) {
  166. if (! isset($data2['contentid'])) {
  167. $data2['contentid'] = $id;
  168. }
  169. $temp = post($key);
  170. if (is_array($temp)) {
  171. $data2[$key] = implode(',', $temp);
  172. } else {
  173. $data2[$key] = str_replace("\r\n", '<br>', $temp);
  174. }
  175. }
  176. }
  177. if (isset($data2)) {
  178. if (! $this->model->addContentExt($data2)) {
  179. $this->model->delContent($id);
  180. $this->log('新增文章失败!');
  181. error('新增失败!', - 1);
  182. }
  183. }
  184. $this->log('新增文章成功!');
  185. if (! ! $backurl = get('backurl')) {
  186. success('新增成功!', base64_decode($backurl));
  187. } else {
  188. success('新增成功!', url('/admin/Content/index/mcode/' . get('mcode')));
  189. }
  190. } else {
  191. $this->log('新增文章失败!');
  192. error('新增失败!', - 1);
  193. }
  194. }
  195. }
  196. // 生成分类选择
  197. private function makeSortSelect($tree, $selectid = null)
  198. {
  199. $list_html = '';
  200. foreach ($tree as $value) {
  201. // 默认选择项
  202. if ($selectid == $value->scode) {
  203. $select = "selected='selected'";
  204. } else {
  205. $select = '';
  206. }
  207. $list_html .= "<option value='{$value->scode}' $select>{$this->blank}{$value->name}";
  208. // 子菜单处理
  209. if ($value->son) {
  210. $this->blank .= '  ';
  211. $list_html .= $this->makeSortSelect($value->son, $selectid);
  212. }
  213. }
  214. // 循环完后回归位置
  215. $this->blank = substr($this->blank, 0, - 6);
  216. return $list_html;
  217. }
  218. // 文章删除
  219. public function del()
  220. {
  221. // 执行批量删除
  222. if ($_POST) {
  223. if (! ! $list = post('list')) {
  224. if ($this->model->delContentList($list)) {
  225. $this->model->delContentExtList($list);
  226. $this->log('批量删除文章成功!');
  227. success('批量删除成功!', - 1);
  228. } else {
  229. $this->log('批量删除文章失败!');
  230. error('批量删除失败!', - 1);
  231. }
  232. } else {
  233. alert_back('请选择要删除的内容!');
  234. }
  235. }
  236. if (! $id = get('id', 'int')) {
  237. error('传递的参数值错误!', - 1);
  238. }
  239. if ($this->model->delContent($id)) {
  240. $this->model->delContentExt($id);
  241. $this->log('删除文章' . $id . '成功!');
  242. success('删除成功!', - 1);
  243. } else {
  244. $this->log('删除文章' . $id . '失败!');
  245. error('删除失败!', - 1);
  246. }
  247. }
  248. // 文章修改
  249. public function mod()
  250. {
  251. if (! ! $submit = post('submit')) {
  252. switch ($submit) {
  253. case 'sorting': // 修改列表排序
  254. $listall = post('listall');
  255. if ($listall) {
  256. $sorting = post('sorting');
  257. foreach ($listall as $key => $value) {
  258. if ($sorting[$key] === '' || ! is_numeric($sorting[$key]))
  259. $sorting[$key] = 255;
  260. $this->model->modContent($value, "sorting=" . $sorting[$key]);
  261. }
  262. $this->log('修改内容排序成功!');
  263. success('修改成功!', - 1);
  264. } else {
  265. alert_back('排序失败,无任何内容!');
  266. }
  267. break;
  268. case 'copy':
  269. $list = post('list');
  270. $scode = post('scode');
  271. if (! $list) {
  272. alert_back('请选择要复制的内容!');
  273. }
  274. if (! $scode) {
  275. alert_back('请选择目标栏目!');
  276. }
  277. if ($this->model->copyContent($list, $scode)) {
  278. $this->log('复制内容成功!');
  279. success('复制内容成功!', - 1);
  280. } else {
  281. alert_back('复制内容失败!');
  282. }
  283. break;
  284. case 'move':
  285. $list = post('list');
  286. $scode = post('scode');
  287. if (! $list) {
  288. alert_back('请选择要移动的内容!');
  289. }
  290. if (! $scode) {
  291. alert_back('请选择目标栏目!');
  292. }
  293. if ($this->model->modContent($list, "scode='" . $scode . "'")) {
  294. $this->log('移动内容成功!');
  295. success('移动内容成功!', - 1);
  296. } else {
  297. alert_back('移动内容失败!');
  298. }
  299. break;
  300. case 'baiduzz':
  301. $list = post('list');
  302. $urls = post('urls');
  303. if (! $list) {
  304. alert_back('请选择要推送的内容!');
  305. }
  306. // 依次推送
  307. $domain = get_http_url();
  308. if (! $token = $this->config('baidu_zz_token')) {
  309. alert_back('请先到系统配置中填写百度普通收录推送token值!');
  310. }
  311. $api = "http://data.zz.baidu.com/urls?site=$domain&token=$token";
  312. foreach ($list as $key => $value) {
  313. $url = $domain . $urls[$value];
  314. $this->log('百度普通收录推送:' . $url);
  315. $post_urls[] = $url;
  316. }
  317. $result = post_baidu($api, $post_urls);
  318. if (isset($result->error)) {
  319. alert_back('百度普通收录推送发生错误:' . $result->message);
  320. } elseif (isset($result->success)) {
  321. alert_back('成功推送' . $result->success . '条,今天剩余可推送' . $result->remain . '条数!');
  322. } else {
  323. alert_back('发生未知错误!');
  324. }
  325. case 'baiduks':
  326. $list = post('list');
  327. $urls = post('urls');
  328. if (! $list) {
  329. alert_back('请选择要推送的内容!');
  330. }
  331. // 依次推送
  332. $domain = get_http_url();
  333. if (! $token = $this->config('baidu_ks_token')) {
  334. alert_back('请先到系统配置中填写百度快速收录推送token值!');
  335. }
  336. $api = "http://data.zz.baidu.com/urls?site=$domain&token=$token&type=daily";
  337. foreach ($list as $key => $value) {
  338. $url = $domain . $urls[$value];
  339. //替换 .html 后缀
  340. $url = str_replace(".html","",$url);
  341. $this->log('百度快速收录推送:' . $url);
  342. $post_urls[] = $url;
  343. }
  344. $result = post_baidu($api, $post_urls);
  345. if (isset($result->error)) {
  346. alert_back('百度快速收录推送发生错误:' . $result->message);
  347. } elseif (isset($result->success_daily)) {
  348. alert_back('成功推送' . $result->success_daily . '条,今天剩余可推送' . $result->remain_daily . '条数!');
  349. } else {
  350. alert_back('发生未知错误!');
  351. }
  352. }
  353. }
  354. if (! $id = get('id', 'int')) {
  355. error('传递的参数值错误!', - 1);
  356. }
  357. // 单独修改状态
  358. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  359. if ($this->model->modContent($id, "$field='$value',update_user='" . session('username') . "'")) {
  360. location(- 1);
  361. } else {
  362. alert_back('修改失败!');
  363. }
  364. }
  365. // 修改操作
  366. if ($_POST) {
  367. // 获取数据
  368. $scode = post('scode');
  369. $subscode = post('subscode');
  370. $title = post('title');
  371. $titlecolor = post('titlecolor');
  372. $subtitle = post('subtitle');
  373. $filename = trim(post('filename'), '/');
  374. $author = post('author');
  375. $source = post('source');
  376. $outlink = post('outlink');
  377. $date = post('date');
  378. $ico = post('ico');
  379. $pics = post('pics');
  380. // 获取多图标题
  381. $picstitle = post('picstitle');
  382. if ($picstitle) {
  383. $picstitle = implode(',', $picstitle);
  384. }
  385. $content = post('content');
  386. $tags = str_replace(',', ',', post('tags'));
  387. $enclosure = post('enclosure');
  388. $keywords = post('keywords');
  389. $description = post('description');
  390. $status = post('status', 'int');
  391. $istop = post('istop', 'int', '', '', 0);
  392. $isrecommend = post('isrecommend', 'int', '', '', 0);
  393. $isheadline = post('isheadline', 'int', '', '', 0);
  394. $gid = post('gid', 'int') ?: 0;
  395. $gtype = post('gtype', 'int') ?: 4;
  396. $gnote = post('gnote');
  397. if (! $scode) {
  398. alert_back('内容分类不能为空!');
  399. }
  400. if (! $title) {
  401. alert_back('文章标题不能为空!');
  402. }
  403. if ($filename && ! preg_match('/^[a-zA-Z0-9\-_\/]+$/', $filename)) {
  404. alert_back('内容URL名称只允许字母、数字、横线、下划线组成!');
  405. }
  406. // 自动提起前一百个字符为描述
  407. if (! $description && isset($_POST['content'])) {
  408. $description = escape_string(clear_html_blank(substr_both(strip_tags($_POST['content']), 0, 150)));
  409. }
  410. // 无缩略图时,自动提取文章第一张图为缩略图
  411. if (! $ico && preg_match('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {
  412. $ico = $srcs[1];
  413. }
  414. // 缩放缩略图
  415. if ($ico) {
  416. resize_img(ROOT_PATH . $ico, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  417. }
  418. if ($filename) {
  419. while ($this->model->checkFilename($filename, "id<>$id")) {
  420. $filename = $filename . '-' . mt_rand(1, 20);
  421. }
  422. }
  423. // 构建数据
  424. $data = array(
  425. 'scode' => $scode,
  426. 'subscode' => $subscode,
  427. 'title' => $title,
  428. 'titlecolor' => $titlecolor,
  429. 'subtitle' => $subtitle,
  430. 'filename' => $filename,
  431. 'author' => $author,
  432. 'source' => $source,
  433. 'outlink' => $outlink,
  434. 'date' => $date,
  435. 'ico' => $ico,
  436. 'pics' => $pics,
  437. 'picstitle' => $picstitle,
  438. 'content' => $content,
  439. 'tags' => $tags,
  440. 'enclosure' => $enclosure,
  441. 'keywords' => $keywords,
  442. 'description' => clear_html_blank($description),
  443. 'status' => $status,
  444. 'istop' => $istop,
  445. 'isrecommend' => $isrecommend,
  446. 'isheadline' => $isheadline,
  447. 'gid' => $gid,
  448. 'gtype' => $gtype,
  449. 'gnote' => $gnote,
  450. 'update_user' => session('username')
  451. );
  452. // 执行添加
  453. if ($this->model->modContent($id, $data)) {
  454. // 扩展内容修改
  455. foreach ($_POST as $key => $value) {
  456. if (preg_match('/^ext_[\w\-]+$/', $key)) {
  457. $temp = post($key);
  458. if (is_array($temp)) {
  459. $data2[$key] = implode(',', $temp);
  460. } else {
  461. $data2[$key] = str_replace("\r\n", '<br>', $temp);
  462. }
  463. }
  464. }
  465. if (isset($data2)) {
  466. if ($this->model->findContentExt($id)) {
  467. $this->model->modContentExt($id, $data2);
  468. } else {
  469. $data2['contentid'] = $id;
  470. $this->model->addContentExt($data2);
  471. }
  472. }
  473. $this->log('修改文章' . $id . '成功!');
  474. if (! ! $backurl = get('backurl')) {
  475. success('修改成功!', base64_decode($backurl));
  476. } else {
  477. success('修改成功!', url('/admin/Content/index/mcode/2'));
  478. }
  479. } else {
  480. location(- 1);
  481. }
  482. } else {
  483. // 调取修改内容
  484. $this->assign('mod', true);
  485. if (! $result = $this->model->getContent($id)) {
  486. error('编辑的内容已经不存在!', - 1);
  487. }
  488. $this->assign('content', $result);
  489. if (! $mcode = get('mcode', 'var')) {
  490. error('传递的模型编码参数有误,请核对后重试!');
  491. }
  492. // 文章分类
  493. $sort_model = model('admin.content.ContentSort');
  494. $sort_select = $sort_model->getListSelect($mcode);
  495. $this->assign('sort_select', $this->makeSortSelect($sort_select, $result->scode));
  496. $this->assign('subsort_select', $this->makeSortSelect($sort_select, $result->subscode));
  497. // 模型名称
  498. $this->assign('model_name', model('admin.content.Model')->getName($mcode));
  499. // 扩展字段
  500. $this->assign('extfield', model('admin.content.ExtField')->getModelField($mcode));
  501. // 获取会员分组
  502. $this->assign('groups', model('admin.member.MemberGroup')->getSelect());
  503. $this->display('content/content.html');
  504. }
  505. }
  506. }