ApiService.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  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: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\portal\service;
  12. use app\portal\model\PortalPostModel;
  13. use app\portal\model\PortalCategoryModel;
  14. use think\Db;
  15. use think\db\Query;
  16. class ApiService
  17. {
  18. /**
  19. * 功能:查询文章列表,支持分页;<br>
  20. * 注:此方法查询时关联两个表portal_category_post(category_post),portal_post(post);在指定排序(order),指定查询条件(where)最好指定一下表别名
  21. * @param array $param 查询参数<pre>
  22. * array(
  23. * 'category_ids'=>'',
  24. * 'where'=>'',
  25. * 'limit'=>'',
  26. * 'order'=>'',
  27. * 'page'=>'',
  28. * 'relation'=>''
  29. * )
  30. * 字段说明:
  31. * category_ids:文章所在分类,可指定一个或多个分类id,以英文逗号分隔,如1或1,2,3 默认值为全部
  32. * field:调用指定的字段@todo
  33. * 如只调用posts表里的id和post_title字段可以是post.id,post.post_title; 默认全部,
  34. * 此方法查询时关联两个表portal_category_post(category_post),portal_post(post);
  35. * 所以最好指定一下表名,以防字段冲突
  36. * limit:数据条数,默认值为10,可以指定从第几条开始,如3,8(表示共调用8条,从第3条开始)
  37. * order:排序方式,如按posts表里的published_time字段倒序排列:post.published_time desc
  38. * where:查询条件,字符串形式,和sql语句一样,请在事先做好安全过滤,最好使用第二个参数$where的数组形式进行过滤,此方法查询时关联多个表,所以最好指定一下表名,以防字段冲突,查询条件(只支持数组),格式和thinkPHP的where方法一样,此方法查询时关联多个表,所以最好指定一下表名,以防字段冲突;
  39. * </pre>
  40. * @return array 包括分页的文章列表<pre>
  41. * 格式:
  42. * array(
  43. * "articles"=>array(),//文章列表,array
  44. * "page"=>"",//生成的分页html,不分页则没有此项
  45. * "total"=>100, //符合条件的文章总数,不分页则没有此项
  46. * "total_pages"=>5 // 总页数,不分页则没有此项
  47. * )</pre>
  48. */
  49. public static function articles($param)
  50. {
  51. $portalPostModel = new PortalPostModel();
  52. $where = [
  53. 'post.post_status' => 1,
  54. 'post.post_type' => 1,
  55. 'post.delete_time' => 0
  56. ];
  57. $paramWhere = empty($param['where']) ? '' : $param['where'];
  58. $limit = empty($param['limit']) ? 10 : $param['limit'];
  59. $order = empty($param['order']) ? '' : $param['order'];
  60. $page = isset($param['page']) ? $param['page'] : false;
  61. $relation = empty($param['relation']) ? '' : $param['relation'];
  62. $categoryIds = empty($param['category_ids']) ? '' : $param['category_ids'];
  63. $join = [
  64. //['__USER__ user', 'post.user_id = user.id'],
  65. ];
  66. $whereCategoryId = null;
  67. if (!empty($categoryIds)) {
  68. $field = !empty($param['field']) ? $param['field'] : 'post.*,min(category_post.category_id) as category_id';
  69. array_push($join, ['__PORTAL_CATEGORY_POST__ category_post', 'post.id = category_post.post_id']);
  70. if (!is_array($categoryIds)) {
  71. $categoryIds = explode(',', $categoryIds);
  72. }
  73. if (count($categoryIds) == 1) {
  74. $whereCategoryId = function (Query $query) use ($categoryIds) {
  75. $query->where('category_post.category_id', $categoryIds[0]);
  76. };
  77. } else {
  78. $whereCategoryId = function (Query $query) use ($categoryIds) {
  79. $query->where('category_post.category_id', 'in', $categoryIds);
  80. };
  81. }
  82. } else {
  83. $field = !empty($param['field']) ? $param['field'] : 'post.*,min(category_post.category_id) as category_id';
  84. array_push($join, ['__PORTAL_CATEGORY_POST__ category_post', 'post.id = category_post.post_id']);
  85. }
  86. $articles = $portalPostModel->alias('post')->field($field)
  87. ->join($join)
  88. ->where($where)
  89. ->where($paramWhere)
  90. ->where($whereCategoryId)
  91. ->where('post.published_time', ['> time', 0], ['<', time()], 'and')
  92. ->order($order)
  93. ->group('post.id');
  94. $return = [];
  95. if (empty($page)) {
  96. $articles = $articles->limit($limit)->select();
  97. if (!empty($relation) && !empty($articles['items'])) {
  98. $articles->load($relation);
  99. }
  100. $return['articles'] = $articles;
  101. } else {
  102. if (is_array($page)) {
  103. if (empty($page['list_rows'])) {
  104. $page['list_rows'] = 10;
  105. }
  106. $articles = $articles->paginate($page);
  107. } else {
  108. $articles = $articles->paginate(intval($page));
  109. }
  110. if (!empty($relation) && !empty($articles['items'])) {
  111. $articles->load($relation);
  112. }
  113. $articles->appends(request()->get());
  114. $articles->appends(request()->post());
  115. $return['articles'] = $articles->items();
  116. $return['page'] = $articles->render();
  117. $return['total'] = $articles->total();
  118. $return['total_pages'] = $articles->lastPage();
  119. }
  120. return $return;
  121. }
  122. /**
  123. * 功能:查询标签文章列表,支持分页;<br>
  124. * 注:此方法查询时关联两个表portal_tag_post(tag_post),portal_post(post);在指定排序(order),指定查询条件(where)最好指定一下表别名
  125. * @param array $param 查询参数<pre>
  126. * array(
  127. * 'tag_id'=>'',
  128. * 'where'=>'',
  129. * 'limit'=>'',
  130. * 'order'=>'',
  131. * 'page'=>'',
  132. * 'relation'=>''
  133. * )
  134. * 字段说明:
  135. * field:调用指定的字段@todo
  136. * 如只调用posts表里的id和post_title字段可以是post.id,post.post_title; 默认全部,
  137. * 此方法查询时关联两个表portal_tag_post(category_post),portal_post(post);
  138. * 所以最好指定一下表名,以防字段冲突
  139. * limit:数据条数,默认值为10,可以指定从第几条开始,如3,8(表示共调用8条,从第3条开始)
  140. * order:排序方式,如按posts表里的published_time字段倒序排列:post.published_time desc
  141. * where:查询条件,字符串形式,和sql语句一样,请在事先做好安全过滤,最好使用第二个参数$where的数组形式进行过滤,此方法查询时关联多个表,所以最好指定一下表名,以防字段冲突,查询条件(只支持数组),格式和thinkPHP的where方法一样,此方法查询时关联多个表,所以最好指定一下表名,以防字段冲突;
  142. * </pre>
  143. * @return array 包括分页的文章列表<pre>
  144. * 格式:
  145. * array(
  146. * "articles"=>array(),//文章列表,array
  147. * "page"=>"",//生成的分页html,不分页则没有此项
  148. * "total"=>100, //符合条件的文章总数,不分页则没有此项
  149. * "total_pages"=>5 // 总页数,不分页则没有此项
  150. * )</pre>
  151. */
  152. public static function tagArticles($param)
  153. {
  154. $portalPostModel = new PortalPostModel();
  155. $where = [
  156. 'post.post_status' => 1,
  157. 'post.post_type' => 1,
  158. 'post.delete_time' => 0
  159. ];
  160. $paramWhere = empty($param['where']) ? '' : $param['where'];
  161. $limit = empty($param['limit']) ? 10 : $param['limit'];
  162. $order = empty($param['order']) ? '' : $param['order'];
  163. $page = isset($param['page']) ? $param['page'] : false;
  164. $relation = empty($param['relation']) ? '' : $param['relation'];
  165. $tagId = empty($param['tag_id']) ? '' : $param['tag_id'];
  166. $join = [
  167. //['__USER__ user', 'post.user_id = user.id'],
  168. ];
  169. if (empty($tagId)) {
  170. return null;
  171. } else {
  172. $field = !empty($param['field']) ? $param['field'] : 'post.*';
  173. array_push($join, ['__PORTAL_TAG_POST__ tag_post', 'post.id = tag_post.post_id']);
  174. $where['tag_post.tag_id'] = $tagId;
  175. }
  176. $articles = $portalPostModel->alias('post')->field($field)
  177. ->join($join)
  178. ->where($where)
  179. ->where($paramWhere)
  180. ->where('post.published_time', ['> time', 0], ['<', time()], 'and')
  181. ->order($order);
  182. $return = [];
  183. if (empty($page)) {
  184. $articles = $articles->limit($limit)->select();
  185. if (!empty($relation) && !empty($articles['items'])) {
  186. $articles->load($relation);
  187. }
  188. $return['articles'] = $articles;
  189. } else {
  190. if (is_array($page)) {
  191. if (empty($page['list_rows'])) {
  192. $page['list_rows'] = 10;
  193. }
  194. $articles = $articles->paginate($page);
  195. } else {
  196. $articles = $articles->paginate(intval($page));
  197. }
  198. if (!empty($relation) && !empty($articles['items'])) {
  199. $articles->load($relation);
  200. }
  201. $articles->appends(request()->get());
  202. $articles->appends(request()->post());
  203. $return['articles'] = $articles->items();
  204. $return['page'] = $articles->render();
  205. $return['total'] = $articles->total();
  206. $return['total_pages'] = $articles->lastPage();
  207. }
  208. return $return;
  209. }
  210. /**
  211. * 获取指定id的文章
  212. * @param int $id
  213. * @return array|false|\PDOStatement|string|\think\Model
  214. */
  215. public static function article($id)
  216. {
  217. $portalPostModel = new PortalPostModel();
  218. $where = [
  219. 'post_status' => 1,
  220. 'post_type' => 1,
  221. 'id' => $id,
  222. 'delete_time' => 0
  223. ];
  224. return $portalPostModel->where($where)
  225. ->where('published_time', ['> time', 0], ['<', time()], 'and')
  226. ->find();
  227. }
  228. /**
  229. * 获取指定条件的页面列表
  230. * @param array $param 查询参数<pre>
  231. * array(
  232. * 'where'=>'',
  233. * 'order'=>'',
  234. * )</pre>
  235. * @return false|\PDOStatement|string|\think\Collection
  236. */
  237. public static function pages($param)
  238. {
  239. $paramWhere = empty($param['where']) ? '' : $param['where'];
  240. $order = empty($param['order']) ? '' : $param['order'];
  241. $portalPostModel = new PortalPostModel();
  242. $where = [
  243. 'post_status' => 1,
  244. 'post_type' => 2, //页面
  245. 'delete_time' => 0
  246. ];
  247. return $portalPostModel
  248. ->where($where)
  249. ->where($paramWhere)
  250. ->where('published_time', [['> time', 0], ['<', time()]], 'and')
  251. ->order($order)
  252. ->select();
  253. }
  254. /**
  255. * 获取指定id的页面
  256. * @param int $id 页面的id
  257. * @return array|false|\PDOStatement|string|\think\Model 返回符合条件的页面
  258. */
  259. public static function page($id)
  260. {
  261. $portalPostModel = new PortalPostModel();
  262. $where = [
  263. 'post_status' => 1,
  264. 'post_type' => 2,
  265. 'id' => $id,
  266. 'delete_time' => 0
  267. ];
  268. return $portalPostModel->where($where)
  269. ->where('published_time', ['> time', 0], ['<', time()], 'and')
  270. ->find();
  271. }
  272. /**
  273. * 返回指定分类
  274. * @param int $id 分类id
  275. * @return array 返回符合条件的分类
  276. */
  277. public static function category($id)
  278. {
  279. $portalCategoryModel = new PortalCategoryModel();
  280. $where = [
  281. 'status' => 1,
  282. 'delete_time' => 0,
  283. 'id' => $id
  284. ];
  285. return $portalCategoryModel->where($where)->find();
  286. }
  287. /**
  288. * 返回指定分类下的子分类
  289. * @param int $categoryId 分类id
  290. * @param $field string 指定查询字段
  291. * @throws \think\db\exception\DataNotFoundException
  292. * @throws \think\db\exception\ModelNotFoundException
  293. * @throws \think\exception\DbException
  294. * @return false|\PDOStatement|string|\think\Collection 返回指定分类下的子分类
  295. */
  296. public static function subCategories($categoryId, $field = '*')
  297. {
  298. $portalCategoryModel = new PortalCategoryModel();
  299. $where = [
  300. 'status' => 1,
  301. 'delete_time' => 0,
  302. 'parent_id' => $categoryId
  303. ];
  304. return $portalCategoryModel->field($field)->where($where)->order('list_order ASC')->select();
  305. }
  306. /**
  307. * 返回指定分类下的所有子分类
  308. * @param int $categoryId 分类id
  309. * @return array 返回指定分类下的所有子分类
  310. */
  311. public static function allSubCategories($categoryId)
  312. {
  313. $portalCategoryModel = new PortalCategoryModel();
  314. $categoryId = intval($categoryId);
  315. if ($categoryId !== 0) {
  316. $category = $portalCategoryModel->field('path')->where('id', $categoryId)->find();
  317. if (empty($category)) {
  318. return [];
  319. }
  320. $categoryPath = $category['path'];
  321. } else {
  322. $categoryPath = 0;
  323. }
  324. $where = [
  325. 'status' => 1,
  326. 'delete_time' => 0,
  327. 'path' => ['like', "$categoryPath-%"]
  328. ];
  329. return $portalCategoryModel->where($where)->select();
  330. }
  331. /**
  332. * 返回符合条件的所有分类
  333. * @param array $param 查询参数<pre>
  334. * array(
  335. * 'where'=>'',
  336. * 'order'=>'',
  337. * )</pre>
  338. * @return false|\PDOStatement|string|\think\Collection
  339. */
  340. public static function categories($param)
  341. {
  342. $paramWhere = empty($param['where']) ? '' : $param['where'];
  343. $order = empty($param['order']) ? '' : $param['order'];
  344. $portalCategoryModel = new PortalCategoryModel();
  345. $where = [
  346. 'status' => 1,
  347. 'delete_time' => 0,
  348. ];
  349. return $portalCategoryModel
  350. ->where($where)
  351. ->where($paramWhere)
  352. ->order($order)
  353. ->select();
  354. }
  355. /**
  356. * 获取面包屑数据
  357. * @param int $categoryId 当前文章所在分类,或者当前分类的id
  358. * @param boolean $withCurrent 是否获取当前分类
  359. * @return array 面包屑数据
  360. */
  361. public static function breadcrumb($categoryId, $withCurrent = false)
  362. {
  363. $data = [];
  364. $portalCategoryModel = new PortalCategoryModel();
  365. $path = $portalCategoryModel->where(['id' => $categoryId])->value('path');
  366. if (!empty($path)) {
  367. $parents = explode('-', $path);
  368. if (!$withCurrent) {
  369. array_pop($parents);
  370. }
  371. if (!empty($parents)) {
  372. $data = $portalCategoryModel->where('id', 'in', $parents)->order('path ASC')->select();
  373. }
  374. }
  375. return $data;
  376. }
  377. }