截流自动化的商城平台
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.

Community.php 9.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\CommunityLogic;
  4. use app\api\validate\CommunityArticleValidate;
  5. use app\common\basics\Api;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 种草社区相关
  9. * Class CommunityArticle
  10. * @package app\api\controller
  11. */
  12. class Community extends Api
  13. {
  14. public $like_not_need_login = ['cate', 'articleLists', 'detail', 'relationGoods', 'relationShop', 'topicArticle'];
  15. /**
  16. * @notes 获取已购商品列表
  17. * @return \think\response\Json
  18. * @author 段誉
  19. * @date 2022/4/29 15:07
  20. */
  21. public function goods()
  22. {
  23. $get = $this->request->get();
  24. $result = CommunityLogic::getGoodsLists($this->user_id, $get, $this->page_no, $this->page_size);
  25. return JsonServer::success('', $result);
  26. }
  27. /**
  28. * @notes 获取已购店铺列表
  29. * @return \think\response\Json
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\DbException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @author 段誉
  34. * @date 2022/4/29 15:40
  35. */
  36. public function shop()
  37. {
  38. $get = $this->request->get();
  39. $result = CommunityLogic::getShopLists($this->user_id, $get, $this->page_no, $this->page_size);
  40. return JsonServer::success('', $result);
  41. }
  42. /**
  43. * @notes 获取推荐话题
  44. * @return \think\response\Json
  45. * @throws \think\db\exception\DataNotFoundException
  46. * @throws \think\db\exception\DbException
  47. * @throws \think\db\exception\ModelNotFoundException
  48. * @author 段誉
  49. * @date 2022/4/29 16:00
  50. */
  51. public function recommendTopic()
  52. {
  53. $result = CommunityLogic::getRecommendTopic();
  54. return JsonServer::success('', $result);
  55. }
  56. /**
  57. * @notes 获取话题列表
  58. * @return \think\response\Json
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\DbException
  61. * @throws \think\db\exception\ModelNotFoundException
  62. * @author 段誉
  63. * @date 2022/4/29 17:25
  64. */
  65. public function topicLists()
  66. {
  67. $get = $this->request->get();
  68. $result = CommunityLogic::getTopicLists($get);
  69. return JsonServer::success('', $result);
  70. }
  71. /**
  72. * @notes 获取分类
  73. * @return \think\response\Json
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\DbException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @author 段誉
  78. * @date 2022/4/29 17:50
  79. */
  80. public function cate()
  81. {
  82. $result = CommunityLogic::getCate();
  83. return JsonServer::success('', $result);
  84. }
  85. /**
  86. * @notes 获取发现页的文章列表
  87. * @return \think\response\Json
  88. * @throws \think\db\exception\DataNotFoundException
  89. * @throws \think\db\exception\DbException
  90. * @throws \think\db\exception\ModelNotFoundException
  91. * @author 段誉
  92. * @date 2022/4/29 18:09
  93. */
  94. public function articleLists()
  95. {
  96. $get = $this->request->get();
  97. $result = CommunityLogic::getArticleLists($get, $this->page_no, $this->page_size, $this->user_id);
  98. return JsonServer::success('', $result);
  99. }
  100. /**
  101. * @notes 发布文章
  102. * @return \think\response\Json
  103. * @author 段誉
  104. * @date 2022/4/29 10:48
  105. */
  106. public function addArticle()
  107. {
  108. $post = $this->request->post();
  109. (new CommunityArticleValidate)->gocheck('add');
  110. $result = CommunityLogic::addArticle($this->user_id, $post);
  111. if (false === $result) {
  112. $error = CommunityLogic::getError() ?: '发布失败';
  113. return JsonServer::error($error);
  114. }
  115. return JsonServer::success('发布成功,坐等点赞和关注吧~');
  116. }
  117. /**
  118. * @notes 编辑文章
  119. * @return \think\response\Json
  120. * @author 段誉
  121. * @date 2022/4/29 10:48
  122. */
  123. public function editArticle()
  124. {
  125. $post = $this->request->post();
  126. (new CommunityArticleValidate)->gocheck('edit');
  127. $result = CommunityLogic::editArticle($this->user_id, $post);
  128. if (false === $result) {
  129. $error = CommunityLogic::getError() ?: '编辑失败';
  130. return JsonServer::error($error);
  131. }
  132. return JsonServer::success('编辑成功');
  133. }
  134. /**
  135. * @notes 删除文章
  136. * @return \think\response\Json
  137. * @author 段誉
  138. * @date 2022/5/7 10:28
  139. */
  140. public function delArticle()
  141. {
  142. $post = $this->request->post();
  143. (new CommunityArticleValidate)->gocheck('del');
  144. $result = CommunityLogic::delArticle($this->user_id, $post);
  145. if (false === $result) {
  146. return JsonServer::error(CommunityLogic::getError() ?: '删除失败');
  147. }
  148. return JsonServer::success('删除成功');
  149. }
  150. /**
  151. * @notes 关注用户
  152. * @return \think\response\Json
  153. * @author 段誉
  154. * @date 2022/5/5 15:45
  155. */
  156. public function follow()
  157. {
  158. $post = $this->request->post();
  159. $result = CommunityLogic::followRelation($this->user_id, $post);
  160. if (false === $result) {
  161. return JsonServer::error(CommunityLogic::getError() ?: '操作失败');
  162. }
  163. return JsonServer::success('操作成功');
  164. }
  165. /**
  166. * @notes 点赞/取消点赞文章
  167. * @return \think\response\Json
  168. * @author 段誉
  169. * @date 2022/5/5 16:12
  170. */
  171. public function giveLike()
  172. {
  173. $post = $this->request->post();
  174. $result = CommunityLogic::giveLike($this->user_id, $post);
  175. if (true !== $result) {
  176. return JsonServer::error(CommunityLogic::getError() ?: '操作失败');
  177. }
  178. return JsonServer::success('操作成功');
  179. }
  180. /**
  181. * @notes 关注页的文章列表
  182. * @return \think\response\Json
  183. * @throws \think\db\exception\DataNotFoundException
  184. * @throws \think\db\exception\DbException
  185. * @throws \think\db\exception\ModelNotFoundException
  186. * @author 段誉
  187. * @date 2022/5/6 9:52
  188. */
  189. public function followArticle()
  190. {
  191. $result = CommunityLogic::getFollowArticle($this->user_id, $this->page_no, $this->page_size);
  192. return JsonServer::success('', $result);
  193. }
  194. /**
  195. * @notes 获取文章中关联商品列表
  196. * @return \think\response\Json
  197. * @throws \think\db\exception\DataNotFoundException
  198. * @throws \think\db\exception\DbException
  199. * @throws \think\db\exception\ModelNotFoundException
  200. * @author 段誉
  201. * @date 2022/5/6 14:57
  202. */
  203. public function relationGoods()
  204. {
  205. $get = $this->request->get();
  206. $result = CommunityLogic::getRelationGoodsOrShop($get, 'goods');
  207. return JsonServer::success('', $result);
  208. }
  209. /**
  210. * @notes 获取文章中关联店铺列表
  211. * @return \think\response\Json
  212. * @throws \think\db\exception\DataNotFoundException
  213. * @throws \think\db\exception\DbException
  214. * @throws \think\db\exception\ModelNotFoundException
  215. * @author 段誉
  216. * @date 2022/5/10 17:06
  217. */
  218. public function relationShop()
  219. {
  220. $get = $this->request->get();
  221. $result = CommunityLogic::getRelationGoodsOrShop($get, 'shop');
  222. return JsonServer::success('', $result);
  223. }
  224. /**
  225. * @notes 作品列表
  226. * @return \think\response\Json
  227. * @throws \think\db\exception\DataNotFoundException
  228. * @throws \think\db\exception\DbException
  229. * @throws \think\db\exception\ModelNotFoundException
  230. * @author 段誉
  231. * @date 2022/5/6 10:46
  232. */
  233. public function worksLists()
  234. {
  235. $get = $this->request->get();
  236. $result = CommunityLogic::getWorksLists($this->user_id, $get, $this->page_no, $this->page_size);
  237. return JsonServer::success('', $result);
  238. }
  239. /**
  240. * @notes 点赞的列表
  241. * @return \think\response\Json
  242. * @throws \think\db\exception\DataNotFoundException
  243. * @throws \think\db\exception\DbException
  244. * @throws \think\db\exception\ModelNotFoundException
  245. * @author 段誉
  246. * @date 2022/5/6 14:22
  247. */
  248. public function likeLists()
  249. {
  250. $get = $this->request->get();
  251. $result = CommunityLogic::getLikeLists($this->user_id, $get, $this->page_no, $this->page_size);
  252. return JsonServer::success('', $result);
  253. }
  254. /**
  255. * @notes 话题关联文章
  256. * @return \think\response\Json
  257. * @throws \think\db\exception\DataNotFoundException
  258. * @throws \think\db\exception\DbException
  259. * @throws \think\db\exception\ModelNotFoundException
  260. * @author 段誉
  261. * @date 2022/5/6 16:22
  262. */
  263. public function topicArticle()
  264. {
  265. $get = $this->request->get();
  266. $result = CommunityLogic::getTopicArticle($get, $this->page_no, $this->page_size);
  267. if (false === $result) {
  268. return JsonServer::error(CommunityLogic::getError() ?: '获取失败');
  269. }
  270. return JsonServer::success('', $result);
  271. }
  272. /**
  273. * @notes 获取文章详情
  274. * @return \think\response\Json
  275. * @author 段誉
  276. * @date 2022/5/6 18:08
  277. */
  278. public function detail()
  279. {
  280. $result = CommunityLogic::detail($this->user_id, input('id/d'));
  281. return JsonServer::success('', $result);
  282. }
  283. }