AdminArticleController.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\portal\controller;
  12. use cmf\controller\AdminBaseController;
  13. use app\portal\model\PortalPostModel;
  14. use app\portal\service\PostService;
  15. use app\portal\model\PortalCategoryModel;
  16. use think\Db;
  17. use app\admin\model\ThemeModel;
  18. class AdminArticleController extends AdminBaseController
  19. {
  20. /**
  21. * 文章列表
  22. * @adminMenu(
  23. * 'name' => '文章管理',
  24. * 'parent' => 'portal/AdminIndex/default',
  25. * 'display'=> true,
  26. * 'hasView'=> true,
  27. * 'order' => 10000,
  28. * 'icon' => '',
  29. * 'remark' => '文章列表',
  30. * 'param' => ''
  31. * )
  32. * @return mixed
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. */
  37. public function index()
  38. {
  39. $content = hook_one('portal_admin_article_index_view');
  40. if (!empty($content)) {
  41. return $content;
  42. }
  43. $param = $this->request->param();
  44. $categoryId = $this->request->param('category', 0, 'intval');
  45. $postService = new PostService();
  46. $data = $postService->adminArticleList($param);
  47. $data->appends($param);
  48. $portalCategoryModel = new PortalCategoryModel();
  49. $categoryTree = $portalCategoryModel->adminCategoryTree($categoryId);
  50. $this->assign('start_time', isset($param['start_time']) ? $param['start_time'] : '');
  51. $this->assign('end_time', isset($param['end_time']) ? $param['end_time'] : '');
  52. $this->assign('keyword', isset($param['keyword']) ? $param['keyword'] : '');
  53. $this->assign('articles', $data->items());
  54. $this->assign('category_tree', $categoryTree);
  55. $this->assign('category', $categoryId);
  56. $this->assign('page', $data->render());
  57. return $this->fetch();
  58. }
  59. /**
  60. * 添加文章
  61. * @adminMenu(
  62. * 'name' => '添加文章',
  63. * 'parent' => 'index',
  64. * 'display'=> false,
  65. * 'hasView'=> true,
  66. * 'order' => 10000,
  67. * 'icon' => '',
  68. * 'remark' => '添加文章',
  69. * 'param' => ''
  70. * )
  71. * @return mixed
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\ModelNotFoundException
  74. * @throws \think\exception\DbException
  75. */
  76. public function add()
  77. {
  78. $content = hook_one('portal_admin_article_add_view');
  79. if (!empty($content)) {
  80. return $content;
  81. }
  82. $themeModel = new ThemeModel();
  83. $articleThemeFiles = $themeModel->getActionThemeFiles('portal/Article/index');
  84. $this->assign('article_theme_files', $articleThemeFiles);
  85. return $this->fetch();
  86. }
  87. /**
  88. * 添加文章提交
  89. * @adminMenu(
  90. * 'name' => '添加文章提交',
  91. * 'parent' => 'index',
  92. * 'display'=> false,
  93. * 'hasView'=> false,
  94. * 'order' => 10000,
  95. * 'icon' => '',
  96. * 'remark' => '添加文章提交',
  97. * 'param' => ''
  98. * )
  99. */
  100. public function addPost()
  101. {
  102. if ($this->request->isPost()) {
  103. $data = $this->request->param();
  104. //状态只能设置默认值。未发布、未置顶、未推荐
  105. $data['post']['post_status'] = 0;
  106. $data['post']['is_top'] = 0;
  107. $data['post']['recommended'] = 0;
  108. $post = $data['post'];
  109. $result = $this->validate($post, 'AdminArticle');
  110. if ($result !== true) {
  111. $this->error($result);
  112. }
  113. $portalPostModel = new PortalPostModel();
  114. if (!empty($data['photo_names']) && !empty($data['photo_urls'])) {
  115. $data['post']['more']['photos'] = [];
  116. foreach ($data['photo_urls'] as $key => $url) {
  117. $photoUrl = cmf_asset_relative_url($url);
  118. array_push($data['post']['more']['photos'], ["url" => $photoUrl, "name" => $data['photo_names'][$key]]);
  119. }
  120. }
  121. if (!empty($data['file_names']) && !empty($data['file_urls'])) {
  122. $data['post']['more']['files'] = [];
  123. foreach ($data['file_urls'] as $key => $url) {
  124. $fileUrl = cmf_asset_relative_url($url);
  125. array_push($data['post']['more']['files'], ["url" => $fileUrl, "name" => $data['file_names'][$key]]);
  126. }
  127. }
  128. $portalPostModel->adminAddArticle($data['post'], $data['post']['categories']);
  129. $data['post']['id'] = $portalPostModel->id;
  130. $hookParam = [
  131. 'is_add' => true,
  132. 'article' => $data['post']
  133. ];
  134. hook('portal_admin_after_save_article', $hookParam);
  135. $this->success('添加成功!', url('AdminArticle/edit', ['id' => $portalPostModel->id]));
  136. }
  137. }
  138. /**
  139. * 编辑文章
  140. * @adminMenu(
  141. * 'name' => '编辑文章',
  142. * 'parent' => 'index',
  143. * 'display'=> false,
  144. * 'hasView'=> true,
  145. * 'order' => 10000,
  146. * 'icon' => '',
  147. * 'remark' => '编辑文章',
  148. * 'param' => ''
  149. * )
  150. * @return mixed
  151. * @throws \think\db\exception\DataNotFoundException
  152. * @throws \think\db\exception\ModelNotFoundException
  153. * @throws \think\exception\DbException
  154. */
  155. public function edit()
  156. {
  157. $content = hook_one('portal_admin_article_edit_view');
  158. if (!empty($content)) {
  159. return $content;
  160. }
  161. $id = $this->request->param('id', 0, 'intval');
  162. $portalPostModel = new PortalPostModel();
  163. $post = $portalPostModel->where('id', $id)->find();
  164. $postCategories = $post->categories()->alias('a')->column('a.name', 'a.id');
  165. $postCategoryIds = implode(',', array_keys($postCategories));
  166. $themeModel = new ThemeModel();
  167. $articleThemeFiles = $themeModel->getActionThemeFiles('portal/Article/index');
  168. $this->assign('article_theme_files', $articleThemeFiles);
  169. $this->assign('post', $post);
  170. $this->assign('post_categories', $postCategories);
  171. $this->assign('post_category_ids', $postCategoryIds);
  172. return $this->fetch();
  173. }
  174. /**
  175. * 编辑文章提交
  176. * @adminMenu(
  177. * 'name' => '编辑文章提交',
  178. * 'parent' => 'index',
  179. * 'display'=> false,
  180. * 'hasView'=> false,
  181. * 'order' => 10000,
  182. * 'icon' => '',
  183. * 'remark' => '编辑文章提交',
  184. * 'param' => ''
  185. * )
  186. * @throws \think\Exception
  187. */
  188. public function editPost()
  189. {
  190. if ($this->request->isPost()) {
  191. $data = $this->request->param();
  192. //需要抹除发布、置顶、推荐的修改。
  193. unset($data['post']['post_status']);
  194. unset($data['post']['is_top']);
  195. unset($data['post']['recommended']);
  196. $post = $data['post'];
  197. $result = $this->validate($post, 'AdminArticle');
  198. if ($result !== true) {
  199. $this->error($result);
  200. }
  201. $portalPostModel = new PortalPostModel();
  202. if (!empty($data['photo_names']) && !empty($data['photo_urls'])) {
  203. $data['post']['more']['photos'] = [];
  204. foreach ($data['photo_urls'] as $key => $url) {
  205. $photoUrl = cmf_asset_relative_url($url);
  206. array_push($data['post']['more']['photos'], ["url" => $photoUrl, "name" => $data['photo_names'][$key]]);
  207. }
  208. }
  209. if (!empty($data['file_names']) && !empty($data['file_urls'])) {
  210. $data['post']['more']['files'] = [];
  211. foreach ($data['file_urls'] as $key => $url) {
  212. $fileUrl = cmf_asset_relative_url($url);
  213. array_push($data['post']['more']['files'], ["url" => $fileUrl, "name" => $data['file_names'][$key]]);
  214. }
  215. }
  216. $portalPostModel->adminEditArticle($data['post'], $data['post']['categories']);
  217. $hookParam = [
  218. 'is_add' => false,
  219. 'article' => $data['post']
  220. ];
  221. hook('portal_admin_after_save_article', $hookParam);
  222. $this->success('保存成功!');
  223. }
  224. }
  225. /**
  226. * 文章删除
  227. * @adminMenu(
  228. * 'name' => '文章删除',
  229. * 'parent' => 'index',
  230. * 'display'=> false,
  231. * 'hasView'=> false,
  232. * 'order' => 10000,
  233. * 'icon' => '',
  234. * 'remark' => '文章删除',
  235. * 'param' => ''
  236. * )
  237. * @throws \think\Exception
  238. * @throws \think\db\exception\DataNotFoundException
  239. * @throws \think\db\exception\ModelNotFoundException
  240. * @throws \think\exception\DbException
  241. * @throws \think\exception\PDOException
  242. */
  243. public function delete()
  244. {
  245. $param = $this->request->param();
  246. $portalPostModel = new PortalPostModel();
  247. if (isset($param['id'])) {
  248. $id = $this->request->param('id', 0, 'intval');
  249. $result = $portalPostModel->where('id', $id)->find();
  250. $data = [
  251. 'object_id' => $result['id'],
  252. 'create_time' => time(),
  253. 'table_name' => 'portal_post',
  254. 'name' => $result['post_title'],
  255. 'user_id' => cmf_get_current_admin_id()
  256. ];
  257. $resultPortal = $portalPostModel
  258. ->where('id', $id)
  259. ->update(['delete_time' => time()]);
  260. if ($resultPortal) {
  261. Db::name('portal_category_post')->where('post_id', $id)->update(['status' => 0]);
  262. Db::name('portal_tag_post')->where('post_id', $id)->update(['status' => 0]);
  263. Db::name('recycleBin')->insert($data);
  264. }
  265. $this->success("删除成功!", '');
  266. }
  267. if (isset($param['ids'])) {
  268. $ids = $this->request->param('ids/a');
  269. $recycle = $portalPostModel->where('id', 'in', $ids)->select();
  270. $result = $portalPostModel->where('id', 'in', $ids)->update(['delete_time' => time()]);
  271. if ($result) {
  272. Db::name('portal_category_post')->where('post_id', 'in', $ids)->update(['status' => 0]);
  273. Db::name('portal_tag_post')->where('post_id', 'in', $ids)->update(['status' => 0]);
  274. foreach ($recycle as $value) {
  275. $data = [
  276. 'object_id' => $value['id'],
  277. 'create_time' => time(),
  278. 'table_name' => 'portal_post',
  279. 'name' => $value['post_title'],
  280. 'user_id' => cmf_get_current_admin_id()
  281. ];
  282. Db::name('recycleBin')->insert($data);
  283. }
  284. $this->success("删除成功!", '');
  285. }
  286. }
  287. }
  288. /**
  289. * 文章发布
  290. * @adminMenu(
  291. * 'name' => '文章发布',
  292. * 'parent' => 'index',
  293. * 'display'=> false,
  294. * 'hasView'=> false,
  295. * 'order' => 10000,
  296. * 'icon' => '',
  297. * 'remark' => '文章发布',
  298. * 'param' => ''
  299. * )
  300. */
  301. public function publish()
  302. {
  303. $param = $this->request->param();
  304. $portalPostModel = new PortalPostModel();
  305. if (isset($param['ids']) && isset($param["yes"])) {
  306. $ids = $this->request->param('ids/a');
  307. $portalPostModel->where('id', 'in', $ids)->update(['post_status' => 1, 'published_time' => time()]);
  308. $this->success("发布成功!", '');
  309. }
  310. if (isset($param['ids']) && isset($param["no"])) {
  311. $ids = $this->request->param('ids/a');
  312. $portalPostModel->where('id', 'in', $ids)->update(['post_status' => 0]);
  313. $this->success("取消发布成功!", '');
  314. }
  315. }
  316. /**
  317. * 文章置顶
  318. * @adminMenu(
  319. * 'name' => '文章置顶',
  320. * 'parent' => 'index',
  321. * 'display'=> false,
  322. * 'hasView'=> false,
  323. * 'order' => 10000,
  324. * 'icon' => '',
  325. * 'remark' => '文章置顶',
  326. * 'param' => ''
  327. * )
  328. */
  329. public function top()
  330. {
  331. $param = $this->request->param();
  332. $portalPostModel = new PortalPostModel();
  333. if (isset($param['ids']) && isset($param["yes"])) {
  334. $ids = $this->request->param('ids/a');
  335. $portalPostModel->where('id', 'in', $ids)->update(['is_top' => 1]);
  336. $this->success("置顶成功!", '');
  337. }
  338. if (isset($_POST['ids']) && isset($param["no"])) {
  339. $ids = $this->request->param('ids/a');
  340. $portalPostModel->where('id', 'in', $ids)->update(['is_top' => 0]);
  341. $this->success("取消置顶成功!", '');
  342. }
  343. }
  344. /**
  345. * 文章推荐
  346. * @adminMenu(
  347. * 'name' => '文章推荐',
  348. * 'parent' => 'index',
  349. * 'display'=> false,
  350. * 'hasView'=> false,
  351. * 'order' => 10000,
  352. * 'icon' => '',
  353. * 'remark' => '文章推荐',
  354. * 'param' => ''
  355. * )
  356. */
  357. public function recommend()
  358. {
  359. $param = $this->request->param();
  360. $portalPostModel = new PortalPostModel();
  361. if (isset($param['ids']) && isset($param["yes"])) {
  362. $ids = $this->request->param('ids/a');
  363. $portalPostModel->where('id', 'in', $ids)->update(['recommended' => 1]);
  364. $this->success("推荐成功!", '');
  365. }
  366. if (isset($param['ids']) && isset($param["no"])) {
  367. $ids = $this->request->param('ids/a');
  368. $portalPostModel->where('id', 'in', $ids)->update(['recommended' => 0]);
  369. $this->success("取消推荐成功!", '');
  370. }
  371. }
  372. /**
  373. * 文章排序
  374. * @adminMenu(
  375. * 'name' => '文章排序',
  376. * 'parent' => 'index',
  377. * 'display'=> false,
  378. * 'hasView'=> false,
  379. * 'order' => 10000,
  380. * 'icon' => '',
  381. * 'remark' => '文章排序',
  382. * 'param' => ''
  383. * )
  384. */
  385. public function listOrder()
  386. {
  387. parent::listOrders(Db::name('portal_category_post'));
  388. $this->success("排序更新成功!", '');
  389. }
  390. }