Topicdongtai.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. use app\common\library\Keyworld;
  6. /**
  7. * 圈子动态
  8. */
  9. class Topicdongtai extends Api
  10. {
  11. protected $noNeedLogin = [];
  12. protected $noNeedRight = ['*'];
  13. //发布动态
  14. public function addone(){
  15. $content = input('content','');
  16. $images = input('images','');
  17. $topic_id = input('topic_id','');
  18. if(!$content && !$images){
  19. $this->error(__('Invalid parameters'));
  20. }
  21. //关键字替换
  22. //$content = Keyworld::sensitive($content);
  23. $data = [
  24. 'topic_id' => $topic_id,
  25. 'user_id' => $this->auth->id,
  26. 'content' => $content,
  27. 'images' => $images,
  28. 'type' => input('type',1),
  29. 'createtime' => time(),
  30. 'updatetime' => time(),
  31. ];
  32. Db::startTrans();
  33. $id = Db::name('topic_dongtai')->insertGetId($data);
  34. //圈子新增一个贴
  35. $rs = Db::name('topic_hub')->where('id',$topic_id)->setInc('t_number');
  36. Db::commit();
  37. $this->success('发布成功',$id);
  38. }
  39. //自己看列表
  40. //某用户的帖子列表
  41. public function my_lists(){
  42. $uid = input('uid',$this->auth->id);
  43. $list = Db::name('topic_dongtai')->alias('dt')
  44. ->join('user','dt.user_id = user.id','LEFT')
  45. ->join('topic_hub topic','dt.topic_id = topic.id','LEFT')
  46. ->field('dt.*,user.nickname,user.avatar,user.gender,topic.name as topic_name')
  47. ->where('dt.user_id',$uid)
  48. ->order('dt.id desc')->autopage()->select();
  49. $list = list_domain_image($list,['images','avatar']);
  50. if(!empty($list)){
  51. foreach($list as $key => &$val){
  52. //追加点赞
  53. $val['isgood'] = $this->is_good($val['id'],$this->auth->id);
  54. //创建视频缩略图
  55. $val['images_thumb'] = '';
  56. if ($val['type'] == 2) {
  57. $images_url = explode('.', $val['images']);
  58. unset($images_url[count($images_url) - 1]);
  59. $val['images_thumb'] = join('.', $images_url) . '_0.jpg';
  60. }
  61. //时间
  62. $val['createtime_text'] = get_last_time($val['createtime']);
  63. //关注
  64. $val['is_follow'] = $this->is_follow($val['user_id'],$this->auth->id);
  65. //评论
  66. $val['answernumber'] = Db::name('topic_dongtai_answer')->where(['dt_id'=>$val['id'],'level'=>1])->count();
  67. }
  68. }
  69. $this->success('success',$list);
  70. }
  71. //是否点赞
  72. private function is_good($dt_id,$uid){
  73. $where = [
  74. 'dt_id' => $dt_id,
  75. 'user_id' => $uid,
  76. ];
  77. $check = Db::name('topic_dongtai_good')->where($where)->find();
  78. if($check){
  79. return 1;
  80. }else{
  81. return 0;
  82. }
  83. }
  84. //回复是否点赞
  85. private function answer_is_good($answer_id,$uid){
  86. $where = [
  87. 'answer_id' => $answer_id,
  88. 'user_id' => $uid,
  89. ];
  90. $check = Db::name('topic_answer_good')->where($where)->find();
  91. if($check){
  92. return 1;
  93. }else{
  94. return 0;
  95. }
  96. }
  97. //是否关注
  98. private function is_follow($user_id,$fans_id){
  99. $where = [
  100. 'user_id' => $user_id,
  101. 'fans_id' => $fans_id,
  102. ];
  103. $check = Db::name('user_fans_follow')->where($where)->find();
  104. if($check){
  105. return 1;
  106. }else{
  107. return 0;
  108. }
  109. }
  110. //详情
  111. public function info(){
  112. $id = input('id');
  113. $info = Db::name('topic_dongtai')->alias('dt')
  114. ->join('user','dt.user_id = user.id','LEFT')
  115. ->join('topic_hub topic','dt.topic_id = topic.id','LEFT')
  116. ->field('dt.*,user.nickname,user.avatar,user.gender,topic.name as topic_name')
  117. ->where('dt.id',$id)->find();
  118. $info = info_domain_image($info,['images','avatar']);
  119. if($info){
  120. //是否点赞过
  121. $info['isgood'] = $this->is_good($id,$this->auth->id);
  122. //创建视频缩略图
  123. $info['images_thumb'] = '';
  124. if ($info['type'] == 2) {
  125. $images_url = explode('.', $info['images']);
  126. unset($images_url[count($images_url) - 1]);
  127. $info['images_thumb'] = join('.', $images_url) . '_0.jpg';
  128. }
  129. //时间
  130. $info['createtime_text'] = get_last_time($info['createtime']);
  131. //关注
  132. $info['is_follow'] = $this->is_follow($info['user_id'],$this->auth->id);
  133. //评论
  134. $info['answernumber'] = Db::name('topic_dongtai_answer')->where(['dt_id'=>$id,'level'=>1])->count();
  135. //$info['answer'] = $this->answer_list($id);
  136. }
  137. $this->success('success',$info);
  138. }
  139. //点赞
  140. public function good(){
  141. $id = input('id');
  142. $where = [
  143. 'dt_id' => $id,
  144. 'user_id' => $this->auth->id,
  145. ];
  146. $check = Db::name('topic_dongtai_good')->where($where)->find();
  147. if($check){
  148. $this->error('已经赞过了');
  149. }
  150. Db::startTrans();
  151. $where['createtime'] = time();
  152. $rs = Db::name('topic_dongtai_good')->insertGetId($where);
  153. $up = Db::name('topic_dongtai')->where('id',$id)->setInc('goodnum');
  154. if($rs && $up !== false){
  155. \app\common\model\TaskLog::tofinish($this->auth->id,"VpXtablCsZ",1);
  156. Db::commit();
  157. $this->success('点赞成功');
  158. }
  159. Db::rollback();
  160. $this->error('点赞失败');
  161. }
  162. //评论
  163. public function answer(){
  164. $id = input('id',0);
  165. $content = input('content','');
  166. $to_user_id = input('to_user_id',0);
  167. $level = input('level',1); //回复类型:1=层主回复楼主,2=层中回复
  168. $floor = input('floor',0);
  169. if(empty($content) || empty($id)){
  170. $this->error();
  171. }
  172. //关键字替换
  173. //$content = Keyworld::sensitive($content);
  174. //判断
  175. if($level == 2 && $floor == 0){
  176. $this->error('楼层错误');
  177. }
  178. //回复楼主,最新楼层
  179. if($level == 1 || $floor == 0){
  180. $to_user_id = 0;
  181. $floor = 1; //默认一楼
  182. $last_floor = Db::name('topic_dongtai_answer')->where(['dt_id'=>$id,'level'=>1])->order('floor desc')->value('floor');
  183. if($last_floor){
  184. $floor = $last_floor + 1;
  185. }
  186. }
  187. //判断user_id
  188. if($to_user_id){
  189. $to_user = Db::name('user')->where('id',$to_user_id)->value('id');
  190. if(empty($to_user)){
  191. $this->error('被回复的用户不存在');
  192. }
  193. }
  194. //data
  195. $data = [
  196. 'dt_id' => $id,
  197. 'floor' => $floor,
  198. 'user_id' => $this->auth->id,
  199. 'content' => $content,
  200. 'to_user_id' => $to_user_id,
  201. 'level' => $level,
  202. 'createtime' => time(),
  203. 'updatetime' => time(),
  204. ];
  205. Db::startTrans();
  206. $rs = Db::name('topic_dongtai_answer')->insertGetId($data);
  207. Db::name('topic_dongtai')->where('id',$id)->setInc('answernum');
  208. Db::commit();
  209. $this->success('评价成功');
  210. }
  211. //对评论点赞
  212. public function answer_good(){
  213. $dt_id = input('dt_id',0);
  214. $answer_id = input('answer_id',0);
  215. $where = [
  216. 'dt_id' => $dt_id,
  217. 'answer_id' => $answer_id,
  218. 'user_id' => $this->auth->id,
  219. ];
  220. $check = Db::name('topic_answer_good')->where($where)->find();
  221. if($check){
  222. $this->error('已经赞过了');
  223. }
  224. Db::startTrans();
  225. $where['createtime'] = time();
  226. $rs = Db::name('topic_answer_good')->insertGetId($where);
  227. $up = Db::name('topic_dongtai_answer')->where('id',$answer_id)->setInc('goodnum');
  228. if($rs && $up !== false){
  229. Db::commit();
  230. $this->success('点赞成功');
  231. }
  232. Db::rollback();
  233. $this->error('点赞失败');
  234. }
  235. //举报枚举
  236. public function report_enum(){
  237. $arr = [
  238. '侮辱谩骂',
  239. '色情低俗',
  240. '整治敏感',
  241. '违法违规',
  242. '其他',
  243. ];
  244. $this->success(1,$arr);
  245. }
  246. //举报
  247. /*public function report(){
  248. $field = ['dt_id','type','content','images'];
  249. $data = request_post_hub($field);
  250. $check = Db::name('topic_dongtai')->where('id',$data['dt_id'])->find();
  251. $data['user_id'] = $this->auth->id;
  252. $data['ruser_id'] = $check['user_id'];
  253. $data['createtime'] = time();
  254. Db::name('topic_dongtai_report')->insertGetId($data);
  255. $this->success('举报成功');
  256. }*/
  257. //不感兴趣,屏蔽某条
  258. public function screen(){
  259. $data = [
  260. 'user_id' => $this->auth->id,
  261. 'dt_id' => input('dt_id',0),
  262. ];
  263. $check = Db::name('topic_dongtai_screen')->where($data)->find();
  264. if($check){
  265. $this->success('操作成功');
  266. }
  267. Db::name('topic_dongtai_screen')->insertGetId($data);
  268. $this->success('操作成功');
  269. }
  270. //评论列表
  271. public function answer_list(){
  272. $dt_id = input('dt_id',0);
  273. //楼
  274. $floor_list = Db::name('topic_dongtai_answer')
  275. ->alias('a')
  276. ->field('a.*,user.nickname,user.avatar,user.gender')
  277. ->join('user','a.user_id = user.id','LEFT')
  278. ->where(['a.dt_id'=>$dt_id,'a.level'=>1])->order('a.id desc')->autopage()->select();
  279. $floor_list = list_domain_image($floor_list,['avatar']);
  280. //追加子评论
  281. if(!empty($floor_list)){
  282. foreach($floor_list as $key => &$val){
  283. //下面几条子回复,字符串
  284. $val['childremark'] = '';
  285. $map = [
  286. 'a.dt_id' => $dt_id,
  287. 'a.floor' => $val['floor'],
  288. 'a.level' => 2,
  289. ];
  290. $number = Db::name('topic_dongtai_answer')->alias('a')->where($map)->count();
  291. if($number > 0){
  292. $answer_info = Db::name('topic_dongtai_answer')
  293. ->alias('a')
  294. ->field('user.nickname')
  295. ->join('user','a.user_id = user.id','LEFT')
  296. ->where($map)->order('a.id desc')->find();
  297. $val['childremark'] = $answer_info['nickname'].'...等人,共'.$number.'条回复';
  298. }
  299. //时间处理
  300. $val['createtime_text'] = get_last_time($val['createtime']);
  301. //回复是否已赞
  302. $val['is_good'] = $this->answer_is_good($val['id'],$this->auth->id);
  303. }
  304. }
  305. $this->success(1,$floor_list);
  306. }
  307. //单独某一层的详细
  308. public function answer_info(){
  309. $answer_id = input('answer_id');
  310. //楼
  311. $floor_info = Db::name('topic_dongtai_answer')
  312. ->alias('a')
  313. ->field('a.*,user.nickname,user.avatar,user.gender')
  314. ->join('user','a.user_id = user.id','LEFT')
  315. ->where(['a.id'=>$answer_id])->find();
  316. $floor_info = info_domain_image($floor_info,['avatar']);
  317. $floor_info['createtime_text'] = get_last_time($floor_info['createtime']);
  318. //回复是否已赞
  319. $floor_info['is_good'] = $this->answer_is_good($answer_id,$this->auth->id);
  320. $floor_info['answernumber'] = Db::name('topic_dongtai_answer')->where(['dt_id'=>$floor_info['dt_id'],'floor'=>$floor_info['floor'],'level'=>2])->count();
  321. //层
  322. $floors = $floor_info['floor'];
  323. $child_lists = Db::name('topic_dongtai_answer')->alias('a')
  324. ->field('a.*,user.nickname,user.avatar,user.gender,tuser.nickname as to_nickname,tuser.avatar as to_avatar,tuser.gender as to_gender')
  325. ->join('user','a.user_id = user.id','LEFT')
  326. ->join('user tuser','a.to_user_id = tuser.id','LEFT')
  327. ->where(['a.dt_id'=>$floor_info['dt_id'],'a.floor'=>$floors,'a.level'=>2])->order('a.id desc')->autopage()->select();
  328. $child_lists = list_domain_image($child_lists,['avatar','to_avatar']);
  329. if(!empty($child_lists)){
  330. foreach($child_lists as $key => &$answer){
  331. $answer['is_good'] = $this->answer_is_good($answer['id'],$this->auth->id);
  332. $answer['createtime_text'] = get_last_time($answer['createtime']);
  333. }
  334. }
  335. //合并
  336. $floor_info['child'] = $child_lists;
  337. $this->success('success',$floor_info);
  338. }
  339. //某个圈子里的动态列表,最新,推荐
  340. public function topic_list(){
  341. $topic_id = input('topic_id',0);
  342. $order = input('orderby','new');
  343. $orderby = 'dt.id desc';
  344. if($order == 'hot'){
  345. $orderby = 'dt.goodnum desc';
  346. }
  347. $where = [];
  348. if($topic_id){
  349. $where['dt.topic_id'] = $topic_id;
  350. }
  351. if($order == 'follow'){
  352. $follow_user_ids = Db::name('user_fans_follow')->where(['fans_id'=>$this->auth->id])->column('user_id');
  353. $where['dt.user_id'] = ['IN',$follow_user_ids];
  354. }
  355. //排除屏蔽的
  356. $screen_ids = Db::name('topic_dongtai_screen')->where('user_id',$this->auth->id)->column('dt_id');
  357. if(!empty($screen_ids)){
  358. $where['dt.id'] = ['NOTIN',$screen_ids];
  359. }
  360. //排除黑名单的
  361. $black_ids = Db::name('user_blacklist')->where('user_id',$this->auth->id)->column('black_user_id');
  362. if(!empty($black_ids)){
  363. $where['dt.user_id'] = ['NOTIN',$black_ids];
  364. }
  365. //
  366. $list = Db::name('topic_dongtai')->alias('dt')
  367. ->join('user','dt.user_id = user.id','LEFT')
  368. ->join('topic_hub topic','dt.topic_id = topic.id','LEFT')
  369. ->field('dt.*,user.nickname,user.avatar,user.gender,topic.name as topic_name')
  370. ->where($where)
  371. ->order($orderby)->autopage()->select();
  372. $list = list_domain_image($list,['images','avatar']);
  373. if(!empty($list)){
  374. foreach($list as $key => &$val){
  375. //追加点赞
  376. $val['isgood'] = $this->is_good($val['id'],$this->auth->id);
  377. //创建视频缩略图
  378. $val['images_thumb'] = '';
  379. if ($val['type'] == 2) {
  380. $images_url = explode('.', $val['images']);
  381. unset($images_url[count($images_url) - 1]);
  382. $val['images_thumb'] = join('.', $images_url) . '_0.jpg';
  383. }
  384. //时间
  385. $val['createtime_text'] = get_last_time($val['createtime']);
  386. //关注
  387. $val['is_follow'] = $this->is_follow($val['user_id'],$this->auth->id);
  388. //评论
  389. $val['answernumber'] = Db::name('topic_dongtai_answer')->where(['dt_id'=>$val['id'],'level'=>1])->count();
  390. }
  391. }
  392. $this->success('success',$list);
  393. }
  394. ////////////////////////////////////////////////////////////
  395. //消息-互动消息-评论
  396. //谁评论了我
  397. public function msg_answer(){
  398. $map = [
  399. 'dt.user_id' => $this->auth->id,
  400. 'a.level' => 1,
  401. ];
  402. $list = Db::name('topic_dongtai_answer')->alias('a')
  403. ->field('a.id,a.createtime,user.nickname,user.gender,user.avatar')
  404. ->join('topic_dongtai dt','a.dt_id = dt.id','LEFT')
  405. ->join('user','a.user_id = user.id','LEFT')
  406. ->where($map)->order('a.id desc')->autopage()->select();
  407. $list = list_domain_image($list,['avatar']);
  408. if(!empty($list)){
  409. foreach($list as $key => &$val){
  410. //时间
  411. $val['createtime_text'] = get_last_time($val['createtime']);
  412. }
  413. }
  414. $this->success(1,$list);
  415. }
  416. //消息-互动消息-获赞
  417. //谁赞了我
  418. public function msg_good(){
  419. $map = [
  420. 'dt.user_id' => $this->auth->id,
  421. ];
  422. $list = Db::name('topic_dongtai_good')->alias('g')
  423. ->field('g.id,g.createtime,user.nickname,user.gender,user.avatar')
  424. ->join('topic_dongtai dt','g.dt_id = dt.id','LEFT')
  425. ->join('user','g.user_id = user.id','LEFT')
  426. ->where($map)->order('g.id desc')->autopage()->select();
  427. $list = list_domain_image($list,['avatar']);
  428. if(!empty($list)){
  429. foreach($list as $key => &$val){
  430. //时间
  431. $val['createtime_text'] = get_last_time($val['createtime']);
  432. }
  433. }
  434. $this->success(1,$list);
  435. }
  436. }