123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <?php
-
-
- namespace app\api\controller;
-
-
- use app\api\logic\CommunityLogic;
- use app\api\validate\CommunityArticleValidate;
- use app\common\basics\Api;
- use app\common\server\JsonServer;
-
- /**
- * 种草社区相关
- * Class CommunityArticle
- * @package app\api\controller
- */
- class Community extends Api
- {
-
- public $like_not_need_login = ['cate', 'articleLists', 'detail', 'relationGoods', 'relationShop', 'topicArticle'];
-
- /**
- * @notes 获取已购商品列表
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/4/29 15:07
- */
- public function goods()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getGoodsLists($this->user_id, $get, $this->page_no, $this->page_size);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取已购店铺列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/29 15:40
- */
- public function shop()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getShopLists($this->user_id, $get, $this->page_no, $this->page_size);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取推荐话题
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/29 16:00
- */
- public function recommendTopic()
- {
- $result = CommunityLogic::getRecommendTopic();
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取话题列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/29 17:25
- */
- public function topicLists()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getTopicLists($get);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取分类
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/29 17:50
- */
- public function cate()
- {
- $result = CommunityLogic::getCate();
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取发现页的文章列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/29 18:09
- */
- public function articleLists()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getArticleLists($get, $this->page_no, $this->page_size, $this->user_id);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 发布文章
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/4/29 10:48
- */
- public function addArticle()
- {
- $post = $this->request->post();
- (new CommunityArticleValidate)->gocheck('add');
- $result = CommunityLogic::addArticle($this->user_id, $post);
- if (false === $result) {
- $error = CommunityLogic::getError() ?: '发布失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('发布成功,坐等点赞和关注吧~');
- }
-
- /**
- * @notes 编辑文章
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/4/29 10:48
- */
- public function editArticle()
- {
- $post = $this->request->post();
- (new CommunityArticleValidate)->gocheck('edit');
- $result = CommunityLogic::editArticle($this->user_id, $post);
- if (false === $result) {
- $error = CommunityLogic::getError() ?: '编辑失败';
- return JsonServer::error($error);
- }
- return JsonServer::success('编辑成功');
- }
-
-
- /**
- * @notes 删除文章
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/5/7 10:28
- */
- public function delArticle()
- {
- $post = $this->request->post();
- (new CommunityArticleValidate)->gocheck('del');
- $result = CommunityLogic::delArticle($this->user_id, $post);
- if (false === $result) {
- return JsonServer::error(CommunityLogic::getError() ?: '删除失败');
- }
- return JsonServer::success('删除成功');
- }
-
-
- /**
- * @notes 关注用户
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/5/5 15:45
- */
- public function follow()
- {
- $post = $this->request->post();
- $result = CommunityLogic::followRelation($this->user_id, $post);
- if (false === $result) {
- return JsonServer::error(CommunityLogic::getError() ?: '操作失败');
- }
- return JsonServer::success('操作成功');
- }
-
-
- /**
- * @notes 点赞/取消点赞文章
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/5/5 16:12
- */
- public function giveLike()
- {
- $post = $this->request->post();
- $result = CommunityLogic::giveLike($this->user_id, $post);
- if (true !== $result) {
- return JsonServer::error(CommunityLogic::getError() ?: '操作失败');
- }
- return JsonServer::success('操作成功');
- }
-
-
- /**
- * @notes 关注页的文章列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/5/6 9:52
- */
- public function followArticle()
- {
- $result = CommunityLogic::getFollowArticle($this->user_id, $this->page_no, $this->page_size);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取文章中关联商品列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/5/6 14:57
- */
- public function relationGoods()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getRelationGoodsOrShop($get, 'goods');
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取文章中关联店铺列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/5/10 17:06
- */
- public function relationShop()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getRelationGoodsOrShop($get, 'shop');
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 作品列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/5/6 10:46
- */
- public function worksLists()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getWorksLists($this->user_id, $get, $this->page_no, $this->page_size);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 点赞的列表
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/5/6 14:22
- */
- public function likeLists()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getLikeLists($this->user_id, $get, $this->page_no, $this->page_size);
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 话题关联文章
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/5/6 16:22
- */
- public function topicArticle()
- {
- $get = $this->request->get();
- $result = CommunityLogic::getTopicArticle($get, $this->page_no, $this->page_size);
- if (false === $result) {
- return JsonServer::error(CommunityLogic::getError() ?: '获取失败');
- }
- return JsonServer::success('', $result);
- }
-
-
- /**
- * @notes 获取文章详情
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/5/6 18:08
- */
- public function detail()
- {
- $result = CommunityLogic::detail($this->user_id, input('id/d'));
- return JsonServer::success('', $result);
- }
-
- }
|