截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CommunityCommentLogic.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\CommunityCommentEnum;
  5. use app\common\enum\CommunityLikeEnum;
  6. use app\common\model\community\CommunityArticle;
  7. use app\common\model\community\CommunityComment;
  8. use app\common\model\community\CommunityLike;
  9. use app\common\server\ConfigServer;
  10. use app\common\server\UrlServer;
  11. use think\facade\Db;
  12. /**
  13. * 种草社区评论
  14. * Class CommunityCommentLogic
  15. * @package app\api\logic
  16. */
  17. class CommunityCommentLogic extends Logic
  18. {
  19. /**
  20. * @notes 评论列表
  21. * @param $get
  22. * @param $page
  23. * @param $size
  24. * @return array
  25. * @throws \think\db\exception\DataNotFoundException
  26. * @throws \think\db\exception\DbException
  27. * @throws \think\db\exception\ModelNotFoundException
  28. * @author 段誉
  29. * @date 2022/5/9 14:22
  30. */
  31. public static function getCommentLists($user_id, $get, $page, $size)
  32. {
  33. $where = [
  34. 'del' => 0,
  35. 'pid' => 0,
  36. 'article_id' => $get['article_id'] ?? 0,
  37. 'status' => CommunityCommentEnum::STATUS_SUCCESS
  38. ];
  39. $count = CommunityComment::where($where)->count();
  40. $lists = CommunityComment::with(['user'])
  41. ->where($where)
  42. ->append(['child'])
  43. ->order(['like' => 'desc', 'id' => 'desc'])
  44. ->page($page, $size)
  45. ->select()
  46. ->toArray();
  47. $article_data = self::getArticleData($get['article_id']);
  48. $article = $article_data['article'];
  49. // 当前文章所有评论人
  50. $reply_user = $article_data['reply_user'];
  51. $likes = CommunityLike::where([
  52. 'user_id' => $user_id,
  53. 'type' => CommunityLikeEnum::TYPE_COMMENT
  54. ])->column('relation_id');
  55. foreach ($lists as $key => $item) {
  56. $comment = self::formatComment($item, $article, $reply_user, $likes);
  57. $comment = self::getCommentChildMore($comment);
  58. $lists[$key] = self::isSecondComment($comment);
  59. }
  60. $result = [
  61. 'list' => $lists,
  62. 'page' => $page,
  63. 'size' => $size,
  64. 'count' => $count,
  65. 'more' => is_more($count, $page, $size)
  66. ];
  67. return $result;
  68. }
  69. /**
  70. * @notes 文章信息
  71. * @param $article_id
  72. * @return array
  73. * @throws \think\db\exception\DataNotFoundException
  74. * @throws \think\db\exception\DbException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @author 段誉
  77. * @date 2022/5/9 14:41
  78. */
  79. public static function getArticleData($article_id)
  80. {
  81. $article = CommunityArticle::with(['user'])->findOrEmpty($article_id);
  82. // 当前文章所有评论人
  83. $reply_user = CommunityComment::with(['user'])
  84. ->field('id,user_id,pid')
  85. ->where('article_id', $article_id)
  86. ->select()
  87. ->toArray();
  88. return [
  89. 'article' => $article,
  90. 'reply_user' => $reply_user,
  91. ];
  92. }
  93. /**
  94. * @notes 格式评论数据
  95. * @param $comment
  96. * @param $author
  97. * @return mixed
  98. * @author 段誉
  99. * @date 2022/5/7 16:02
  100. */
  101. public static function formatComment($comment, $article, $reply_user = [], $likes = [])
  102. {
  103. $author = $article['user_id'];
  104. $comment['avatar'] = UrlServer::getFileUrl($comment['avatar']);
  105. $comment['is_author'] = 0;
  106. if ($comment['user_id'] == $author) {
  107. $comment['is_author'] = 1;
  108. }
  109. $comment['is_like'] = in_array($comment['id'], $likes) ? 1 : 0;
  110. // 获取回复的上级评论人信息
  111. $comment = self::getRelyData($comment, $article, $reply_user);
  112. if (!empty($comment['child'])) {
  113. foreach ($comment['child'] as $key => $item) {
  114. $comment['child'][$key] = self::formatComment($item, $article, $reply_user, $likes);
  115. }
  116. }
  117. return $comment;
  118. }
  119. /**
  120. * @notes 获取评论列表子级大于2的数量
  121. * @param $comment
  122. * @return mixed
  123. * @author 段誉
  124. * @date 2022/5/10 10:34
  125. */
  126. public static function getCommentChildMore($comment)
  127. {
  128. $comment['more'] = 0;
  129. if (count($comment['child']) > 2) {
  130. $comment['more'] = count($comment['child']) - 2;
  131. $comment['child'] = array_splice($comment['child'], 0, 2);
  132. }
  133. return $comment;
  134. }
  135. /**
  136. * @notes 是否为二级评论
  137. * @param $comment
  138. * @return mixed
  139. * @author 段誉
  140. * @date 2022/5/10 14:54
  141. */
  142. public static function isSecondComment($comment)
  143. {
  144. if(!empty($comment['child'])) {
  145. foreach ($comment['child'] as $key => $item) {
  146. $is_second = 0;
  147. if ($comment['id'] == $item['pid']) {
  148. $is_second = 1;
  149. }
  150. $comment['child'][$key]['is_second'] = $is_second;
  151. }
  152. }
  153. return $comment;
  154. }
  155. /**
  156. * @notes 获取评论回复的上级评论人信息
  157. * @param $comment
  158. * @param $article
  159. * @param $reply_user
  160. * @return mixed
  161. * @author 段誉
  162. * @date 2022/5/9 14:18
  163. */
  164. public static function getRelyData($comment, $article, $reply_user)
  165. {
  166. // 回复谁的评论
  167. $comment['reply_id'] = $article['user']['id'];
  168. $comment['reply_nickname'] = $article['user']['nickname'];
  169. $comment['reply_avatar'] = UrlServer::getFileUrl($article['user']['avatar']);
  170. if (!empty($comment['pid'])) {
  171. foreach ($reply_user as $reply) {
  172. if ($reply['id'] == $comment['pid']) {
  173. $comment['reply_id'] = $reply['user_id'];
  174. $comment['reply_nickname'] = $reply['nickname'];
  175. $comment['reply_avatar'] = UrlServer::getFileUrl($reply['avatar']);
  176. }
  177. }
  178. }
  179. return $comment;
  180. }
  181. /**
  182. * @notes 添加评论
  183. * @param $user_id
  184. * @param $post
  185. * @return array|false
  186. * @author 段誉
  187. * @date 2022/5/10 11:29
  188. */
  189. public static function addComment($user_id, $post)
  190. {
  191. Db::startTrans();
  192. try {
  193. $article = CommunityArticle::with(['user' => function($query) {
  194. $query->field(['id','nickname', 'avatar']);
  195. }])->findOrEmpty($post['article_id']);
  196. if ($article['status'] != CommunityCommentEnum::STATUS_SUCCESS) {
  197. throw new \Exception('暂不可评论');
  198. }
  199. $data = [
  200. 'user_id' => $user_id,
  201. 'article_id' => $post['article_id'],
  202. 'pid' => $post['pid'] ?? 0,
  203. 'comment' => $post['comment'],
  204. 'status' => CommunityCommentEnum::STATUS_WAIT,
  205. 'ancestor_relation' => ''
  206. ];
  207. // 如果是无需审核的,状态直接为已审核
  208. $config = ConfigServer::get('community', 'audit_comment', 1);
  209. if ($config == 0) {
  210. $data['status'] = CommunityCommentEnum::STATUS_SUCCESS;
  211. }
  212. // 上级评论id关系链
  213. if (!empty($post['pid'])) {
  214. $relation = CommunityComment::with(['user'])->findOrEmpty($post['pid']);
  215. $ancestor = $relation->isEmpty() ? '' : trim($relation['ancestor_relation']);
  216. $data['ancestor_relation'] = trim($post['pid'] . ',' . $ancestor, ',');
  217. }
  218. $comment = CommunityComment::create($data);
  219. // 增加文章评论数
  220. CommunityArticle::where(['id' => $post['article_id']])
  221. ->inc('comment')
  222. ->update();
  223. // 评论信息
  224. $info = CommunityComment::with(['user'])
  225. ->withoutField(['ancestor_relation','update_time', 'del'])
  226. ->where(['id' => $comment['id']])
  227. ->findOrEmpty()
  228. ->toArray();
  229. $info['avatar'] = UrlServer::getFileUrl($info['avatar']);
  230. $info['create_time'] = friend_date(strtotime($info['create_time']));
  231. $info['reply_id'] = $relation['user_id'] ?? $article['user_id'];
  232. $info['reply_nickname'] = $relation['nickname'] ?? $article['user']['nickname'];
  233. $reply_avatar = !empty($relation['avatar']) ? $relation['avatar'] : $article['user']['avatar'];
  234. $info['reply_avatar'] = UrlServer::getFileUrl($reply_avatar);
  235. $info['is_like'] = 0;
  236. Db::commit();
  237. return [
  238. 'msg' => $data['status'] ? '评论成功' : '评论成功,正在审核中',
  239. 'data' => $info
  240. ];
  241. } catch (\Exception $e) {
  242. Db::rollback();
  243. self::$error = $e->getMessage();
  244. return false;
  245. }
  246. }
  247. /**
  248. * @notes 一级评论下的所有评论
  249. * @param $get
  250. * @param $page
  251. * @param $size
  252. * @return array
  253. * @throws \think\db\exception\DataNotFoundException
  254. * @throws \think\db\exception\DbException
  255. * @throws \think\db\exception\ModelNotFoundException
  256. * @author 段誉
  257. * @date 2022/5/9 14:33
  258. */
  259. public static function getChildComment($user_id, $get, $page, $size)
  260. {
  261. $comment_id = (int)$get['comment_id'] ?? 0;
  262. $comment = CommunityComment::findOrEmpty($comment_id);
  263. if ($comment->isEmpty()) {
  264. return [
  265. 'list' => [],
  266. 'page' => 0,
  267. 'size' => 0,
  268. 'count' => 0,
  269. 'more' => 0
  270. ];
  271. }
  272. $count = CommunityComment::with(['user'])
  273. ->whereFindInSet('ancestor_relation', $comment_id)
  274. ->where(['del' => 0, 'status' => CommunityCommentEnum::STATUS_SUCCESS])
  275. ->count();
  276. $lists = CommunityComment::with(['user'])
  277. ->whereFindInSet('ancestor_relation', $comment_id)
  278. ->where(['del' => 0, 'status' => CommunityCommentEnum::STATUS_SUCCESS])
  279. ->order(['like' => 'desc'])
  280. ->page($page, $size)
  281. ->select()->toArray();
  282. $likes = CommunityLike::where([
  283. 'user_id' => $user_id,
  284. 'type' => CommunityLikeEnum::TYPE_COMMENT
  285. ])->column('relation_id');
  286. $article_data = self::getArticleData($comment['article_id']);
  287. $article = $article_data['article'];
  288. // 当前文章所有评论人
  289. $reply_user = $article_data['reply_user'];
  290. foreach ($lists as $key => $item) {
  291. $item['is_second'] = 0;
  292. if ($item['pid'] == $comment_id) {
  293. $item['is_second'] = 1;
  294. }
  295. $lists[$key] = self::formatComment($item, $article, $reply_user, $likes);
  296. }
  297. return [
  298. 'list' => $lists,
  299. 'page' => $page,
  300. 'size' => $size,
  301. 'count' => $count,
  302. 'more' => is_more($count, $page, $size)
  303. ];
  304. }
  305. }