PostService.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 小夏 < 449134904@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\portal\service;
  12. use app\portal\model\PortalPostModel;
  13. use think\db\Query;
  14. class PostService
  15. {
  16. /**
  17. * 文章查询
  18. * @param $filter
  19. * @return \think\Paginator
  20. * @throws \think\exception\DbException
  21. */
  22. public function adminArticleList($filter)
  23. {
  24. return $this->adminPostList($filter);
  25. }
  26. /**
  27. * 页面文章列表
  28. * @param $filter
  29. * @return \think\Paginator
  30. * @throws \think\exception\DbException
  31. */
  32. public function adminPageList($filter)
  33. {
  34. return $this->adminPostList($filter, true);
  35. }
  36. /**
  37. * 文章查询
  38. * @param $filter
  39. * @param bool $isPage
  40. * @return \think\Paginator
  41. * @throws \think\exception\DbException
  42. */
  43. public function adminPostList($filter, $isPage = false)
  44. {
  45. $join = [
  46. ['__USER__ u', 'a.user_id = u.id']
  47. ];
  48. $field = 'a.*,u.user_login,u.user_nicename,u.user_email';
  49. $category = empty($filter['category']) ? 0 : intval($filter['category']);
  50. if (!empty($category)) {
  51. array_push($join, [
  52. '__PORTAL_CATEGORY_POST__ b', 'a.id = b.post_id'
  53. ]);
  54. $field = 'a.*,b.id AS post_category_id,b.list_order,b.category_id,u.user_login,u.user_nicename,u.user_email';
  55. }
  56. $portalPostModel = new PortalPostModel();
  57. $articles = $portalPostModel->alias('a')->field($field)
  58. ->join($join)
  59. ->where('a.create_time', '>=', 0)
  60. ->where('a.delete_time', 0)
  61. ->where(function (Query $query) use ($filter, $isPage) {
  62. $category = empty($filter['category']) ? 0 : intval($filter['category']);
  63. if (!empty($category)) {
  64. $query->where('b.category_id', $category);
  65. }
  66. $startTime = empty($filter['start_time']) ? 0 : strtotime($filter['start_time']);
  67. $endTime = empty($filter['end_time']) ? 0 : strtotime($filter['end_time']);
  68. if (!empty($startTime)) {
  69. $query->where('a.published_time', '>=', $startTime);
  70. }
  71. if (!empty($endTime)) {
  72. $query->where('a.published_time', '<=', $endTime);
  73. }
  74. $keyword = empty($filter['keyword']) ? '' : $filter['keyword'];
  75. if (!empty($keyword)) {
  76. $query->where('a.post_title', 'like', "%$keyword%");
  77. }
  78. if ($isPage) {
  79. $query->where('a.post_type', 2);
  80. } else {
  81. $query->where('a.post_type', 1);
  82. }
  83. })
  84. ->order('id', 'DESC')
  85. ->paginate(10);
  86. return $articles;
  87. }
  88. /**
  89. * 已发布文章查询
  90. * @param int $postId 文章id
  91. * @param int $categoryId 分类id
  92. * @return array|string|\think\Model|null
  93. * @throws \think\db\exception\DataNotFoundException
  94. * @throws \think\db\exception\ModelNotFoundException
  95. * @throws \think\exception\DbException
  96. */
  97. public function publishedArticle($postId, $categoryId = 0)
  98. {
  99. $portalPostModel = new PortalPostModel();
  100. if (empty($categoryId)) {
  101. $where = [
  102. 'post.post_type' => 1,
  103. 'post.post_status' => 1,
  104. 'post.delete_time' => 0,
  105. 'post.id' => $postId
  106. ];
  107. $article = $portalPostModel->alias('post')->field('post.*')
  108. ->where($where)
  109. ->where('post.published_time', ['< time', time()], ['> time', 0], 'and')
  110. ->find();
  111. } else {
  112. $where = [
  113. 'post.post_type' => 1,
  114. 'post.post_status' => 1,
  115. 'post.delete_time' => 0,
  116. 'relation.category_id' => $categoryId,
  117. 'relation.post_id' => $postId
  118. ];
  119. $join = [
  120. ['__PORTAL_CATEGORY_POST__ relation', 'post.id = relation.post_id']
  121. ];
  122. $article = $portalPostModel->alias('post')->field('post.*')
  123. ->join($join)
  124. ->where($where)
  125. ->where('post.published_time', ['< time', time()], ['> time', 0], 'and')
  126. ->find();
  127. }
  128. return $article;
  129. }
  130. /**
  131. * 上一篇文章
  132. * @param int $postId 文章id
  133. * @param int $categoryId 分类id
  134. * @return array|string|\think\Model|null
  135. * @throws \think\db\exception\DataNotFoundException
  136. * @throws \think\db\exception\ModelNotFoundException
  137. * @throws \think\exception\DbException
  138. */
  139. public function publishedPrevArticle($postId, $categoryId = 0)
  140. {
  141. $portalPostModel = new PortalPostModel();
  142. if (empty($categoryId)) {
  143. $where = [
  144. 'post.post_type' => 1,
  145. 'post.post_status' => 1,
  146. 'post.delete_time' => 0,
  147. 'post.id ' => ['<', $postId]
  148. ];
  149. $article = $portalPostModel
  150. ->alias('post')
  151. ->field('post.*')
  152. ->where($where)
  153. ->where('post.published_time', ['< time', time()], ['> time', 0], 'and')
  154. ->order('id', 'DESC')
  155. ->find();
  156. } else {
  157. $where = [
  158. 'post.post_type' => 1,
  159. 'post.post_status' => 1,
  160. 'post.delete_time' => 0,
  161. 'relation.category_id' => $categoryId,
  162. 'relation.post_id' => ['<', $postId]
  163. ];
  164. $join = [
  165. ['__PORTAL_CATEGORY_POST__ relation', 'post.id = relation.post_id']
  166. ];
  167. $article = $portalPostModel
  168. ->alias('post')
  169. ->field('post.*')
  170. ->join($join)
  171. ->where($where)
  172. ->where('post.published_time', ['< time', time()], ['> time', 0], 'and')
  173. ->order('id', 'DESC')
  174. ->find();
  175. }
  176. return $article;
  177. }
  178. /**
  179. * 下一篇文章
  180. * @param int $postId 文章id
  181. * @param int $categoryId 分类id
  182. * @return array|string|\think\Model|null
  183. * @throws \think\db\exception\DataNotFoundException
  184. * @throws \think\db\exception\ModelNotFoundException
  185. * @throws \think\exception\DbException
  186. */
  187. public function publishedNextArticle($postId, $categoryId = 0)
  188. {
  189. $portalPostModel = new PortalPostModel();
  190. if (empty($categoryId)) {
  191. $where = [
  192. 'post.post_type' => 1,
  193. 'post.post_status' => 1,
  194. 'post.delete_time' => 0,
  195. 'post.id' => ['>', $postId]
  196. ];
  197. $article = $portalPostModel->alias('post')->field('post.*')
  198. ->where($where)
  199. ->where('post.published_time', ['< time', time()], ['> time', 0], 'and')
  200. ->order('id', 'ASC')
  201. ->find();
  202. } else {
  203. $where = [
  204. 'post.post_type' => 1,
  205. 'post.post_status' => 1,
  206. 'post.delete_time' => 0,
  207. 'relation.category_id' => $categoryId,
  208. 'relation.post_id' => ['>', $postId]
  209. ];
  210. $join = [
  211. ['__PORTAL_CATEGORY_POST__ relation', 'post.id = relation.post_id']
  212. ];
  213. $article = $portalPostModel->alias('post')->field('post.*')
  214. ->join($join)
  215. ->where($where)
  216. ->where('post.published_time', ['< time', time()], ['> time', 0], 'and')
  217. ->order('id', 'ASC')
  218. ->find();
  219. }
  220. return $article;
  221. }
  222. /**
  223. * 页面管理查询
  224. * @param int $pageId 文章id
  225. * @return array|string|\think\Model|null
  226. * @throws \think\db\exception\DataNotFoundException
  227. * @throws \think\db\exception\ModelNotFoundException
  228. * @throws \think\exception\DbException
  229. */
  230. public function publishedPage($pageId)
  231. {
  232. $where = [
  233. 'post_type' => 2,
  234. 'post_status' => 1,
  235. 'delete_time' => 0,
  236. 'id' => $pageId
  237. ];
  238. $portalPostModel = new PortalPostModel();
  239. $page = $portalPostModel
  240. ->where($where)
  241. ->where('published_time', ['< time', time()], ['> time', 0], 'and')
  242. ->find();
  243. return $page;
  244. }
  245. }