截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

CommunityLogic.php 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\logic\CommunityArticleLogic;
  5. use app\common\enum\{
  6. CommunityCommentEnum,
  7. GoodsEnum,
  8. OrderEnum,
  9. ShopEnum,
  10. CommunityArticleEnum,
  11. CommunityLikeEnum
  12. };
  13. use app\common\model\{
  14. goods\Goods,
  15. order\Order,
  16. order\OrderGoods,
  17. shop\Shop,
  18. user\User,
  19. community\CommunityArticle,
  20. community\CommunityArticleImage,
  21. community\CommunityCategory,
  22. community\CommunityComment,
  23. community\CommunityFollow,
  24. community\CommunityLike,
  25. community\CommunityTopic
  26. };
  27. use app\common\server\{
  28. ConfigServer,
  29. UrlServer
  30. };
  31. use think\facade\Db;
  32. /**
  33. * 社区相关
  34. * Class CommunityArticleLogic
  35. * @package app\api\logic
  36. */
  37. class CommunityLogic extends Logic
  38. {
  39. /**
  40. * @notes 获取商品列表
  41. * @param $user_id
  42. * @param $params
  43. * @param $page
  44. * @param $size
  45. * @return array
  46. * @author 段誉
  47. * @date 2022/4/29 15:06
  48. */
  49. public static function getGoodsLists($user_id, $params, $page, $size)
  50. {
  51. $where = [
  52. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  53. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  54. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  55. ];
  56. $type = !empty($params['type']) ? $params['type'] : 'all';
  57. if ('buy' == $type) {
  58. $condition = [
  59. ['user_id', '=', $user_id],
  60. ['order_status', '>=', OrderEnum::ORDER_STATUS_NO_PAID],
  61. ];
  62. $order_id = Order::where($condition)->column('id');
  63. $goods_id = OrderGoods::whereIn('order_id', $order_id)->column('goods_id');
  64. $where[] = ['id', 'in', $goods_id];
  65. }
  66. if (!empty($params['keyword'])) {
  67. $where[] = ['name', 'like', '%' . $params['keyword'] . '%'];
  68. }
  69. $model = new Goods();
  70. $field = ['id' => 'goods_id', 'image', 'name' => 'goods_name', 'min_price' => 'goods_price', 'shop_id'];
  71. $goods = $model->field($field)->page($params['page_no'] ?? 1, $params['page_size'] ?? 10)->where($where)->select();
  72. $count = $model->where($where)->count();
  73. foreach ($goods as &$item) {
  74. $item['shop_name'] = $item->shop->name;
  75. }
  76. $goods->hidden(['shop']);
  77. return [
  78. 'list' => $goods->toArray(),
  79. 'page' => $page,
  80. 'size' => $size,
  81. 'count' => $count,
  82. 'more' => is_more($count, $page, $size)
  83. ];
  84. }
  85. /**
  86. * @notes 已购买店铺或全部营业店铺
  87. * @param $user_id
  88. * @param $params
  89. * @param $page
  90. * @param $size
  91. * @return array
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\DbException
  94. * @throws \think\db\exception\ModelNotFoundException
  95. * @author 段誉
  96. * @date 2022/4/29 15:39
  97. */
  98. public static function getShopLists($user_id, $params, $page, $size)
  99. {
  100. $where = [
  101. ['is_freeze', '=', ShopEnum::SHOP_FREEZE_NORMAL], // 未冻结
  102. ['del', '=', 0], // 未删除
  103. ['is_run', '=', ShopEnum::SHOP_RUN_OPEN], // 未暂停营业
  104. ];
  105. $type = !empty($params['type']) ? $params['type'] : 'all';
  106. if ('buy' == $type) {
  107. $condition = [
  108. ['order_status', '>=', OrderEnum::ORDER_STATUS_NO_PAID],
  109. ['user_id', '=', $user_id]
  110. ];
  111. $shop_id = Order::where($condition)->column('shop_id');
  112. $where[] = ['id', 'in', $shop_id];
  113. }
  114. if (!empty($params['keyword'])) {
  115. $where[] = ['name', 'like', '%' . $params['keyword'] . '%'];
  116. }
  117. $whereRaw = 'expire_time =0 OR expire_time > '. time();
  118. $field = ['id', 'name', 'logo'];
  119. $lists = Shop::field($field)->where($where)->whereRaw($whereRaw)->select()->toArray();
  120. $count = Shop::where($where)->whereRaw($whereRaw)->count();
  121. return [
  122. 'list' => $lists,
  123. 'page' => $page,
  124. 'size' => $size,
  125. 'count' => $count,
  126. 'more' => is_more($count, $page, $size)
  127. ];
  128. }
  129. /**
  130. * @notes 获取指定数量话题
  131. * @return array
  132. * @throws \think\db\exception\DataNotFoundException
  133. * @throws \think\db\exception\DbException
  134. * @throws \think\db\exception\ModelNotFoundException
  135. * @author 段誉
  136. * @date 2022/4/29 15:59
  137. */
  138. public static function getRecommendTopic()
  139. {
  140. return CommunityTopic::field(['id', 'name', 'cid', 'image'])
  141. ->where(['is_show' => 1, 'del' => 0])
  142. ->order(['sort' => 'desc', 'id' => 'desc'])
  143. ->limit(3)
  144. ->select()->toArray();
  145. }
  146. /**
  147. * @notes 获取话题列表
  148. * @param $get
  149. * @return mixed
  150. * @throws \think\db\exception\DataNotFoundException
  151. * @throws \think\db\exception\DbException
  152. * @throws \think\db\exception\ModelNotFoundException
  153. * @author 段誉
  154. * @date 2022/4/29 17:24
  155. */
  156. public static function getTopicLists($get)
  157. {
  158. $where[] = ['t.del', '=', 0];
  159. $where[] = ['t.is_show', '=', 1];
  160. if (!empty($get['name'])) {
  161. $where[] = ['t.name', 'like', '%' . $get['name'] . '%'];
  162. }
  163. $model = new CommunityCategory();
  164. $lists = $model->alias('c')
  165. ->field(['c.id, c.name'])
  166. ->with(['topic' => function ($query) use ($where) {
  167. $query->alias('t')->field(['id', 'cid', 'name', 'image', 'click'])
  168. ->where($where)
  169. ->order(['sort' => 'desc', 'id' => 'desc']);
  170. }])
  171. ->where($where)
  172. ->join('community_topic t', 't.cid = c.id')
  173. ->group('c.id')
  174. ->select()
  175. ->toArray();
  176. if (empty($get['name'])) {
  177. $recommend_topic = (new CommunityTopic())->field(['id', 'cid', 'name', 'image', 'click'])
  178. ->where(['del' => 0, 'is_show' => 1, 'is_recommend' => 1])
  179. ->select()
  180. ->toArray();
  181. $recommend = ['id' => 0, 'name' => '推荐', 'topic' => $recommend_topic];
  182. array_unshift($lists, $recommend);
  183. }
  184. return $lists;
  185. }
  186. /**
  187. * @notes 获取分类
  188. * @return array
  189. * @throws \think\db\exception\DataNotFoundException
  190. * @throws \think\db\exception\DbException
  191. * @throws \think\db\exception\ModelNotFoundException
  192. * @author 段誉
  193. * @date 2022/4/29 17:49
  194. */
  195. public static function getCate()
  196. {
  197. $lists = CommunityCategory::field(['id', 'name'])
  198. ->where(['is_show' => 1, 'del' => 0])
  199. ->order(['sort' => 'asc', 'id' => 'desc'])
  200. ->select()->toArray();
  201. return $lists;
  202. }
  203. /**
  204. * @notes 获取文章列表
  205. * @param $get
  206. * @param $page
  207. * @param $size
  208. * @return array
  209. * @throws \think\db\exception\DataNotFoundException
  210. * @throws \think\db\exception\DbException
  211. * @throws \think\db\exception\ModelNotFoundException
  212. * @author 段誉
  213. * @date 2022/4/29 18:09
  214. */
  215. public static function getArticleLists($get, $page, $size, $user_id = null)
  216. {
  217. $where[] = ['del', '=', 0];
  218. $where[] = ['status', '=', CommunityArticleEnum::STATUS_SUCCESS];
  219. if (!empty($get['cate_id'])) {
  220. $where[] = ['cate_id', '=', $get['cate_id']];
  221. }
  222. if (!empty($get['topic_id'])) {
  223. $where[] = ['topic_id', '=', $get['topic_id']];
  224. }
  225. if (!empty($get['keyword'])) {
  226. $where[] = ['content', 'like', '%' . trim($get['keyword']) . '%'];
  227. if (!is_null($user_id)) {
  228. // 记录关键词
  229. CommunitySearchRecordLogic::recordKeyword(trim($get['keyword']), $user_id);
  230. }
  231. }
  232. $sort = [];
  233. if (!empty($get['sort_hot'])) {
  234. $sort = ['like' => $get['sort_hot'], 'id' => 'desc'];
  235. }
  236. if (!empty($get['sort_new'])) {
  237. $sort = ['id' => $get['sort_new'], 'like' => 'desc'];
  238. }
  239. if (empty($sort)) {
  240. $sort = ['like' => 'desc', 'id' => 'desc'];
  241. }
  242. $model = new CommunityArticle();
  243. $count = $model->where($where)->count();
  244. $lists = $model
  245. ->with(['user' => function ($query) {
  246. $query->field(['id', 'nickname', 'avatar']);
  247. }])
  248. ->where($where)
  249. ->field(['id', 'user_id', 'cate_id', 'image', 'content', 'like', 'create_time'])
  250. ->page($page, $size)
  251. ->order($sort)
  252. ->select()
  253. ->bindAttr('user', ['nickname', 'avatar'])
  254. ->hidden(['user'])
  255. ->toArray();
  256. // 点赞的文章
  257. $likes_article = [];
  258. if (!is_null($user_id)) {
  259. // 点赞的文章
  260. $likes_article = CommunityLike::where([
  261. 'user_id' => $user_id,
  262. 'type' => CommunityLikeEnum::TYPE_ARTICLE
  263. ])->column('relation_id');
  264. }
  265. foreach ($lists as &$item) {
  266. $item['avatar'] = !empty($item['avatar']) ? UrlServer::getFileUrl($item['avatar']) : '';
  267. $item['is_like'] = in_array($item['id'], $likes_article) ? 1 : 0;
  268. }
  269. // 关注的人是否有新作品
  270. $has_new = CommunityArticleLogic::hasNew($user_id);
  271. return [
  272. 'has_new' => $has_new,
  273. 'list' => $lists,
  274. 'page' => $page,
  275. 'size' => $size,
  276. 'count' => $count,
  277. 'more' => is_more($count, $page, $size)
  278. ];
  279. }
  280. /**
  281. * @notes 发布文章
  282. * @param int $user_id
  283. * @param array $post
  284. * @return bool
  285. * @author 段誉
  286. * @date 2022/4/29 10:46
  287. */
  288. public static function addArticle(int $user_id, array $post): bool
  289. {
  290. Db::startTrans();
  291. try {
  292. // 处理数据
  293. $data = self::getEditArticleData($user_id, $post);
  294. // 新增文章信息
  295. $article = CommunityArticle::create($data);
  296. // 新增文章关联图片
  297. self::addArticleImage($post['image'], $article['id']);
  298. // 更新关联话题文章数量
  299. if (!empty($post['topic_id'])) {
  300. CommunityTopic::where(['id' => $post['topic_id']])->inc('article_num')->update();
  301. }
  302. // 通知粉丝有新作品
  303. CommunityArticleLogic::noticeFans($user_id, $article['status']);
  304. Db::commit();
  305. return true;
  306. } catch (\Exception $e) {
  307. Db::rollback();
  308. self::$error = $e->getMessage();
  309. return false;
  310. }
  311. }
  312. /**
  313. * @notes 编辑文章
  314. * @param int $user_id
  315. * @param array $post
  316. * @return bool
  317. * @author 段誉
  318. * @date 2022/5/7 9:42
  319. */
  320. public static function editArticle(int $user_id, array $post)
  321. {
  322. Db::startTrans();
  323. try {
  324. // 更新文章数据
  325. $data = self::getEditArticleData($user_id, $post);
  326. $article = CommunityArticle::findOrEmpty($post['id']);
  327. if ($article->isEmpty()) {
  328. throw new \Exception('信息缺失');
  329. }
  330. $article->save($data);
  331. // 删除旧的关联图片
  332. CommunityArticleImage::where(['article_id' => $post['id']])->delete();
  333. self::addArticleImage($post['image'], $post['id']);
  334. Db::commit();
  335. return true;
  336. } catch (\Exception $e) {
  337. Db::rollback();
  338. self::$error = $e->getMessage();
  339. return false;
  340. }
  341. }
  342. /**
  343. * @notes 删除文章
  344. * @param int $user_id
  345. * @param $post
  346. * @return bool
  347. * @author 段誉
  348. * @date 2022/5/10 16:16
  349. */
  350. public static function delArticle(int $user_id, $post)
  351. {
  352. Db::startTrans();
  353. try {
  354. // 删除文章
  355. $article = CommunityArticle::where(['user_id' => $user_id, 'id' => $post['id']])->find();
  356. $article->del = 1;
  357. $article->update_time = time();
  358. $article->save();
  359. if (!empty($article['topic_id'])) {
  360. // 更新话题文章数量
  361. CommunityTopic::decArticleNum($article['topic_id']);
  362. }
  363. Db::commit();
  364. return true;
  365. } catch (\Exception $e) {
  366. Db::rollback();
  367. self::$error = $e->getMessage();
  368. return false;
  369. }
  370. }
  371. /**
  372. * @notes 文章详情
  373. * @param $user_id
  374. * @param $id
  375. * @return array
  376. * @author 段誉
  377. * @date 2022/5/6 18:08
  378. */
  379. public static function detail($user_id, $id)
  380. {
  381. $result = CommunityArticle::with([
  382. 'images', 'user' => function ($query) {
  383. $query->field(['id', 'nickname', 'avatar']);
  384. },
  385. 'topic' => function ($query) {
  386. $query->field(['id', 'name']);
  387. }])
  388. ->append(['status_desc', 'goods_data', 'shop_data'])
  389. ->findOrEmpty($id)
  390. ->toArray();
  391. if (empty($result['id'])) {
  392. return [];
  393. }
  394. // 是否已关注
  395. $is_follow = CommunityFollow::where([
  396. 'user_id' => $user_id,
  397. 'follow_id' => $result['user_id'],
  398. 'status' => 1
  399. ])->findOrEmpty();
  400. // 是否已点赞
  401. $is_like = CommunityLike::where([
  402. 'user_id' => $user_id,
  403. 'relation_id' =>$id,
  404. 'type' => CommunityLikeEnum::TYPE_ARTICLE
  405. ])->findOrEmpty();
  406. $comment_count = CommunityComment::where([
  407. 'del' => 0,
  408. 'article_id' => $id,
  409. 'status' => CommunityCommentEnum::STATUS_SUCCESS
  410. ])->count();
  411. $result['is_follow'] = !$is_follow->isEmpty() ? 1 : 0;
  412. $result['is_like'] = !$is_like->isEmpty() ? 1 : 0;
  413. // 关联商品数量
  414. $result['total_goods'] = count($result['goods']);
  415. // 关联店铺数量
  416. $result['total_shop'] = count($result['shop']);
  417. // 评论数量
  418. $result['total_comment'] = $comment_count;
  419. // 当前用户是否为文章作者
  420. $result['is_author'] = ($user_id == $result['user_id']) ? 1 : 0;
  421. $result['user']['avatar'] = !empty($result['user']['avatar']) ? UrlServer::getFileUrl($result['user']['avatar']) : '';
  422. // 增加话题点击量
  423. CommunityTopic::where(['id' => $result['topic_id']])->inc('click')->update();
  424. // 审核状态描述
  425. $result['audit_remark_desc'] = CommunityArticleEnum::getStatusRemarkDesc($result);
  426. return $result;
  427. }
  428. /**
  429. * @notes 获取编辑文章数据
  430. * @param int $user_id
  431. * @param array $post
  432. * @return array
  433. * @throws \Exception
  434. * @author 段誉
  435. * @date 2022/5/7 9:52
  436. */
  437. public static function getEditArticleData(int $user_id, array $post)
  438. {
  439. $data = [
  440. 'user_id' => $user_id,
  441. 'content' => $post['content'],
  442. 'image' => !empty($post['image']) ? reset($post['image']) : '',
  443. 'goods' => !empty($post['goods']) ? array_unique(array_values($post['goods'])) : '',
  444. 'shop' => !empty($post['shop']) ? array_unique(array_values($post['shop'])) : '',
  445. 'topic_id' => 0
  446. ];
  447. if (!empty($post['topic_id'])) {
  448. $topic = CommunityTopic::where(['id' => $post['topic_id'], 'is_show' => 1])->findOrEmpty();
  449. if ($topic->isEmpty()) {
  450. throw new \Exception('所选话题不存在');
  451. }
  452. $data['cate_id'] = $topic['cid'];
  453. $data['topic_id'] = $post['topic_id'];
  454. }
  455. // 如果是无需审核的,状态直接为已审核
  456. $config = ConfigServer::get('community', 'audit_article', 1);
  457. if ($config == 0) {
  458. $data['status'] = CommunityArticleEnum::STATUS_SUCCESS;
  459. $data['audit_time'] = time();
  460. } else {
  461. $data['status'] = CommunityArticleEnum::STATUS_WAIT;
  462. }
  463. return $data;
  464. }
  465. /**
  466. * @notes 添加文章关联图片
  467. * @param $image
  468. * @param $article_id
  469. * @throws \Exception
  470. * @author 段誉
  471. * @date 2022/5/7 9:52
  472. */
  473. public static function addArticleImage($image, $article_id)
  474. {
  475. if (!empty($image)) {
  476. $images = [];
  477. foreach ($image as $item) {
  478. $images[] = [
  479. 'article_id' => $article_id,
  480. 'image' => $item,
  481. ];
  482. }
  483. (new CommunityArticleImage())->saveAll($images);
  484. }
  485. }
  486. /**
  487. * @notes 关注用户
  488. * @param $user_id
  489. * @param $post
  490. * @return bool
  491. * @author 段誉
  492. * @date 2022/5/5 15:44
  493. */
  494. public static function followRelation($user_id, $post)
  495. {
  496. try {
  497. if (!isset($post['follow_id']) || !isset($post['status'])) {
  498. throw new \Exception('参数缺失');
  499. }
  500. if ($user_id == $post['follow_id']) {
  501. throw new \Exception('不可关注自己喔');
  502. }
  503. // 要关注的用户是否存在
  504. $follow = User::where(['del' => 0, 'id' => $post['follow_id']])->findOrEmpty();
  505. if ($follow->isEmpty()) {
  506. throw new \Exception('该用户信息缺失');
  507. }
  508. // 是否已有关注记录
  509. $where = ['user_id' => $user_id, 'follow_id' => $post['follow_id']];
  510. $relation = CommunityFollow::where($where)->findOrEmpty();
  511. // 取消关注
  512. if ($relation->isEmpty()) {
  513. CommunityFollow::create([
  514. 'user_id' => $user_id,
  515. 'follow_id' => $post['follow_id'],
  516. 'status' => $post['status']
  517. ]);
  518. } else {
  519. CommunityFollow::where(['id' => $relation['id']])->update([
  520. 'status' => $post['status']
  521. ]);
  522. }
  523. return true;
  524. } catch (\Exception $e) {
  525. self::$error = $e->getMessage();
  526. return false;
  527. }
  528. }
  529. /**
  530. * @notes 点赞
  531. * @param $user_id
  532. * @param $post
  533. * @return bool
  534. * @author 段誉
  535. * @date 2022/5/9 15:39
  536. */
  537. public static function giveLike($user_id, $post)
  538. {
  539. try {
  540. if (!isset($post['status']) || !isset($post['id'])) {
  541. throw new \Exception('参数缺失');
  542. }
  543. if (isset($post['type']) && !in_array($post['type'], CommunityLikeEnum::LIKE_TYPE)) {
  544. throw new \Exception('类型错误');
  545. }
  546. $type = $post['type'] ?? CommunityLikeEnum::TYPE_ARTICLE;
  547. $where = [
  548. 'user_id' => $user_id,
  549. 'relation_id' => $post['id'],
  550. 'type' => $type
  551. ];
  552. // 点赞
  553. if ($post['status']) {
  554. $record = CommunityLike::where($where)->findOrEmpty();
  555. if (!$record->isEmpty()) {
  556. return true;
  557. }
  558. CommunityLike::create([
  559. 'type' => $type,
  560. 'user_id' => $user_id,
  561. 'relation_id' => $post['id'],
  562. ]);
  563. if ($type == CommunityLikeEnum::TYPE_ARTICLE) {
  564. CommunityArticle::incLike($post['id']);
  565. } else {
  566. CommunityComment::incLike($post['id']);
  567. }
  568. return true;
  569. }
  570. // 取消点赞
  571. $res = CommunityLike::where($where)->delete();
  572. if ($res) {
  573. if ($type == CommunityLikeEnum::TYPE_ARTICLE) {
  574. CommunityArticle::decLike($post['id']);
  575. } else {
  576. CommunityComment::decLike($post['id']);
  577. }
  578. }
  579. return true;
  580. } catch (\Exception $e) {
  581. self::$error = $e->getMessage();
  582. return false;
  583. }
  584. }
  585. /**
  586. * @notes 获取关注的文章列表
  587. * @param $user_id
  588. * @param $page
  589. * @param $size
  590. * @return array
  591. * @throws \think\db\exception\DataNotFoundException
  592. * @throws \think\db\exception\DbException
  593. * @throws \think\db\exception\ModelNotFoundException
  594. * @author 段誉
  595. * @date 2022/5/6 9:48
  596. */
  597. public static function getFollowArticle($user_id, $page, $size)
  598. {
  599. $follow_ids = CommunityFollow::where(['user_id' => $user_id, 'status' => 1])->column('follow_id');
  600. $lists = CommunityArticle::with([
  601. 'images',
  602. 'user' => function ($query) {
  603. $query->field(['id', 'nickname', 'avatar']);
  604. },
  605. 'topic' => function ($query) {
  606. $query->field(['id', 'name']);
  607. }])
  608. ->where(['status' => CommunityArticleEnum::STATUS_SUCCESS, 'del' => 0])
  609. ->whereIn('user_id', $follow_ids)
  610. ->page($page, $size)
  611. ->order(['id' => 'desc', 'like' => 'desc'])
  612. ->append(['goods_data', 'shop_data'])
  613. ->select();
  614. $count = CommunityArticle::where(['status' => CommunityArticleEnum::STATUS_SUCCESS, 'del' => 0])
  615. ->whereIn('user_id', $follow_ids)
  616. ->count();
  617. $likes = CommunityLike::where([
  618. 'user_id' => $user_id,
  619. 'type' => CommunityLikeEnum::TYPE_ARTICLE
  620. ])->column('relation_id');
  621. foreach ($lists as $item) {
  622. $item['user']['avatar'] = UrlServer::getFileUrl($item['user']['avatar']);
  623. $item['create_time'] = friend_date(strtotime($item['create_time']));
  624. $item['total_goods'] = count($item['goods']);
  625. $item['total_shop'] = count($item['shop']);
  626. $item['total_comment'] = 0;
  627. $item['is_like'] = in_array($item['id'], $likes) ? 1 : 0;
  628. }
  629. // 清除未读缓存
  630. CommunityArticleLogic::delUnRead($user_id);
  631. $result = [
  632. 'list' => $lists->toArray(),
  633. 'page' => $page,
  634. 'size' => $size,
  635. 'count' => $count,
  636. 'more' => is_more($count, $page, $size)
  637. ];
  638. return $result;
  639. }
  640. /**
  641. * @notes 文章关联商品或店铺
  642. * @param $get
  643. * @param string $type
  644. * @return array
  645. * @throws \think\db\exception\DataNotFoundException
  646. * @throws \think\db\exception\DbException
  647. * @throws \think\db\exception\ModelNotFoundException
  648. * @author 段誉
  649. * @date 2022/5/10 17:05
  650. */
  651. public static function getRelationGoodsOrShop($get, $type)
  652. {
  653. if (empty($get['id'])) {
  654. return [];
  655. }
  656. $article = CommunityArticle::findOrEmpty($get['id']);
  657. if ($article->isEmpty() || $article['del'] == 1) {
  658. return [];
  659. }
  660. if ($type == 'goods') {
  661. $field = ['id', 'image', 'name', 'min_price' => 'goods_price', 'shop_id'];
  662. $lists = Goods::field($field)
  663. ->where('id', 'in', $article['goods'])
  664. ->select()
  665. ->toArray();
  666. } else {
  667. $field = ['id', 'name', 'logo'];
  668. $lists = Shop::field($field)
  669. ->where('id', 'in', $article['shop'])
  670. ->select()
  671. ->toArray();
  672. foreach ($lists as &$item) {
  673. $item['logo'] = UrlServer::getFileUrl($item['logo']);
  674. }
  675. }
  676. return $lists;
  677. }
  678. /**
  679. * @notes 获取作品列表
  680. * @param $user_id
  681. * @param $get
  682. * @param $page
  683. * @param $size
  684. * @return array
  685. * @throws \think\db\exception\DataNotFoundException
  686. * @throws \think\db\exception\DbException
  687. * @throws \think\db\exception\ModelNotFoundException
  688. * @author 段誉
  689. * @date 2022/5/6 10:46
  690. */
  691. public static function getWorksLists($user_id, $get, $page, $size)
  692. {
  693. $field = ['id', 'image', 'content', 'like', 'status', 'create_time', 'audit_remark'];
  694. // 文章查询条件
  695. $where = [['user_id', '=', $user_id]];
  696. if (!empty($get['user_id'])) {
  697. $where = [['user_id', '=', $get['user_id']]];
  698. $where[] = ['status', '=', CommunityArticleEnum::STATUS_SUCCESS];
  699. }
  700. $where[] = ['del', '=', 0];
  701. $count = CommunityArticle::where($where)->count();
  702. $lists = CommunityArticle::field($field)
  703. ->where($where)
  704. ->page($page, $size)
  705. ->order(['id' => 'desc', 'like' => 'desc'])
  706. ->append(['status_desc'])
  707. ->select();
  708. $likes = CommunityLike::where([
  709. 'user_id' => $user_id,
  710. 'type' => CommunityLikeEnum::TYPE_ARTICLE
  711. ])->column('relation_id');
  712. foreach ($lists as $item) {
  713. $item['create_time'] = friend_date(strtotime($item['create_time']));
  714. $item['is_like'] = in_array($item['id'], $likes) ? 1 : 0;
  715. $item['audit_remark_desc'] = CommunityArticleEnum::getStatusRemarkDesc($item, false);
  716. }
  717. $result = [
  718. 'list' => $lists->toArray(),
  719. 'page' => $page,
  720. 'size' => $size,
  721. 'count' => $count,
  722. 'more' => is_more($count, $page, $size)
  723. ];
  724. return $result;
  725. }
  726. /**
  727. * @notes 获取点赞的列表
  728. * @param $user_id
  729. * @param $get
  730. * @param $page
  731. * @param $size
  732. * @return array
  733. * @throws \think\db\exception\DataNotFoundException
  734. * @throws \think\db\exception\DbException
  735. * @throws \think\db\exception\ModelNotFoundException
  736. * @author 段誉
  737. * @date 2022/5/6 14:21
  738. */
  739. public static function getLikeLists($user_id, $get, $page, $size)
  740. {
  741. $where = [['user_id', '=', $user_id]];
  742. if (!empty($get['user_id'])) {
  743. $where = [['user_id', '=', $get['user_id']]];
  744. }
  745. $article_ids = CommunityLike::where($where)
  746. ->where(['type' => CommunityLikeEnum::TYPE_ARTICLE])
  747. ->column('relation_id');
  748. $article_where[] = ['del', '=', 0];
  749. $article_where[] = ['status', '=', CommunityArticleEnum::STATUS_SUCCESS];
  750. $article_where[] = ['id', 'in', $article_ids];
  751. $field = ['id', 'image', 'content', 'like', 'status', 'create_time', 'user_id'];
  752. $count = CommunityArticle::where($article_where)->count();
  753. $lists = CommunityArticle::with(['user' => function($query) {
  754. $query->field(['id', 'nickname', 'avatar']);
  755. }])->field($field)
  756. ->where($article_where)
  757. ->page($page, $size)
  758. ->order(['id' => 'desc', 'like' => 'desc'])
  759. ->select()
  760. ->bindAttr('user', ['nickname', 'avatar'])
  761. ->hidden(['user']);
  762. foreach ($lists as $item) {
  763. $item['create_time'] = friend_date(strtotime($item['create_time']));
  764. $item['is_like'] = 1;
  765. $item['avatar'] = !empty($item['avatar']) ? UrlServer::getFileUrl($item['avatar']) : '';
  766. }
  767. $result = [
  768. 'list' => $lists->toArray(),
  769. 'page' => $page,
  770. 'size' => $size,
  771. 'count' => $count,
  772. 'more' => is_more($count, $page, $size)
  773. ];
  774. return $result;
  775. }
  776. /**
  777. * @notes 话题关联文章
  778. * @param $get
  779. * @param $page
  780. * @param $size
  781. * @return array|false
  782. * @throws \think\db\exception\DataNotFoundException
  783. * @throws \think\db\exception\DbException
  784. * @throws \think\db\exception\ModelNotFoundException
  785. * @author 段誉
  786. * @date 2022/5/6 16:22
  787. */
  788. public static function getTopicArticle($get, $page, $size)
  789. {
  790. $topic_id = $get['topic_id'] ?? 0;
  791. $topic = CommunityTopic::findOrEmpty($topic_id);
  792. if ($topic->isEmpty()) {
  793. self::$error = '话题信息不存在';
  794. return false;
  795. }
  796. $result = [
  797. 'click' => $topic['click'],
  798. 'lists' => self::getArticleLists($get, $page, $size),
  799. ];
  800. return $result;
  801. }
  802. }