Topicdongtai.php 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  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 adddongtai(){
  15. $content = input('content','', 'trim');
  16. $images = input('images','', 'trim');
  17. $topic_id = input('topic_id', 0, 'intval'); //热门话题id
  18. $type = input('type', 0, 'intval'); //类型:0=文字,1=图片,2=视频
  19. if(!$content && !$images){
  20. $this->error(__('Invalid parameters'));
  21. }
  22. if ($topic_id) {
  23. $topic_info = Db::name('topic_hub')->where(['id' => $topic_id])->find();
  24. if (!$topic_info) {
  25. $this->error('话题已过时,请重新选择');
  26. }
  27. if ($topic_info['status'] != 1) {
  28. $this->error('话题已过时,请重新选择');
  29. }
  30. }
  31. if (!in_array($type, [0, 1, 2])) {
  32. $this->error('您的网络开小差啦~');
  33. }
  34. //关键字替换
  35. $content = Keyworld::sensitive($content);
  36. $data = [
  37. 'topic_id' => $topic_id,
  38. 'user_id' => $this->auth->id,
  39. 'content' => $content,
  40. 'images' => $images,
  41. 'createtime' => time(),
  42. 'updatetime' => time(),
  43. 'type' => $type
  44. ];
  45. Db::startTrans();
  46. $id = Db::name('topic_dongtai')->insertGetId($data);
  47. if (!$id) {
  48. Db::rollback();
  49. $this->error('您的网络开小差啦~');
  50. }
  51. //圈子新增一个贴
  52. if ($topic_id) {
  53. $rs = Db::name('topic_hub')->where('id', $topic_id)->setInc('t_number');
  54. if (!$rs) {
  55. Db::rollback();
  56. $this->error('您的网络开小差啦~');
  57. }
  58. }
  59. Db::commit();
  60. $this->success('发布成功',$id);
  61. }
  62. //动态列表
  63. public function dongtailist() {
  64. $type = input('type', 0, 'intval'); //类型:0热门 1关注
  65. $topic_id = input('topic_id', 0); //热门话题id
  66. if (!in_array($type, [0, 1])) {
  67. $this->error('您的网络开小差啦~');
  68. }
  69. //关注
  70. $where_follow = '';
  71. if ($type == 0) {
  72. $orderby = 'dt.id desc';
  73. } else {
  74. $orderby = 'dt.id desc';
  75. //关注的人
  76. $follow_user_ids = Db::name('user_follow')->where(['uid'=>$this->auth->id])->column('follow_uid');
  77. if(!empty($follow_user_ids)){
  78. $where_follow .= '(dt.user_id IN ('.implode(',',$follow_user_ids).'))';
  79. }
  80. //默认
  81. if($where_follow == ''){
  82. $where_follow = 'dt.id = 0';
  83. }
  84. }
  85. $where['dt.status'] = 0;
  86. $where['dt.auit_status'] = 1;
  87. $where['user.is_kefu'] = 0;
  88. if ($this->auth->gender == 1) {
  89. $where['user.gender'] = 0;
  90. } elseif ($this->auth->gender == 0) {
  91. $where['user.gender'] = 1;
  92. } else {
  93. $this->success('success',[]);
  94. }
  95. if ($topic_id) {
  96. $where['dt.topic_id'] = $topic_id;
  97. $orderby = 'dt.id desc';
  98. }
  99. $list = Db::name('topic_dongtai')->alias('dt')
  100. ->join('user','dt.user_id = user.id','LEFT')
  101. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  102. ->join('topic_hub th','dt.topic_id = th.id','LEFT')
  103. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  104. ->field('dt.*,user.nickname,user.avatar,user.gender,user.birthday,user.idcard_status,user.real_status,user.is_hideaddress,th.name,uw.vip_endtime,uw.vip_level,ur.nickname_remark')
  105. ->where($where)
  106. ->where($where_follow)
  107. ->order($orderby)->autopage()->select();
  108. $list = list_domain_image($list,['images','avatar']);
  109. //追加是否点赞
  110. if(!empty($list)){
  111. $ids = array_column($list,'id');
  112. $map = [
  113. 'dt_id' => ['IN',$ids],
  114. 'user_id' => $this->auth->id,
  115. ];
  116. $good_list = Db::name('topic_dongtai_good')->where($map)->select();
  117. $mt_user_greet = Db::name('user_greet'); //是否打过招呼
  118. $mt_gift_user_dongtai = Db::name('gift_user_dongtai');
  119. foreach ($list as &$val) {
  120. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  121. $val['name'] = $val['name'] ? : '';
  122. $val['birthday'] = birthtime_to_age($val['birthday']);
  123. $val['createtime'] = get_last_time($val['createtime']);
  124. $val['cityname'] = $val['is_hideaddress'] ? '' : $val['address'] ;
  125. //用户vip
  126. $val['is_vip'] = $this->is_vip($val['vip_endtime'],$val['vip_level']);
  127. unset($val['vip_endtime']);
  128. //是否点过赞:0否 1是
  129. $val['isgood'] = 0;
  130. foreach($good_list as $k => $v){
  131. if($val['id'] == $v['dt_id']){
  132. $val['isgood'] = 1;
  133. }
  134. }
  135. //礼物数量
  136. $val['gift_count'] = $mt_gift_user_dongtai->where(['dt_id' => $val['id']])->count('id');
  137. //查询是否打过招呼
  138. $count = $mt_user_greet->where(['user_id' => $this->auth->id, 'user_to_id' => $val['user_id']])->count('id');
  139. if ($count) {
  140. $val['is_chat'] = 1; //是否打过招呼: 1是 0否
  141. } else {
  142. $val['is_chat'] = 0; //是否打过招呼: 1是 0否
  143. }
  144. //创建视频缩略图
  145. $val['images_thumb'] = '';
  146. if ($val['type'] == 2) {
  147. $images_url = explode('.', $val['images']);
  148. unset($images_url[count($images_url) - 1]);
  149. $val['images_thumb'] = join('.', $images_url) . '_0.jpg';
  150. }
  151. }
  152. }
  153. $this->success('success',$list);
  154. }
  155. //用户动态列表
  156. public function mydongtailist() {
  157. $user_id = input('uid', $this->auth->id);
  158. if (!$user_id) {
  159. $this->error('您的网络开小差啦~');
  160. }
  161. $where['dt.user_id'] = $user_id;
  162. $where['dt.status'] = 0;
  163. if($user_id != $this->auth->id){
  164. $where['dt.auit_status'] = 1;
  165. }
  166. $orderby = 'dt.id desc';
  167. $list = Db::name('topic_dongtai')->alias('dt')
  168. ->join('user','dt.user_id = user.id','LEFT')
  169. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  170. ->join('topic_hub th','dt.topic_id = th.id','LEFT')
  171. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  172. ->field('dt.*,user.nickname,user.avatar,user.gender,user.birthday,user.idcard_status,user.real_status,user.is_hideaddress,th.name,uw.vip_endtime,uw.vip_level,ur.nickname_remark')
  173. ->where($where)
  174. ->order($orderby)->autopage()->select();
  175. $list = list_domain_image($list,['images','avatar']);
  176. //追加是否点赞
  177. if(!empty($list)){
  178. $ids = array_column($list,'id');
  179. $map = [
  180. 'dt_id' => ['IN',$ids],
  181. 'user_id' => $this->auth->id,
  182. ];
  183. $good_list = Db::name('topic_dongtai_good')->where($map)->select();
  184. $mt_user_greet = Db::name('user_greet'); //是否打过招呼
  185. $mt_gift_user_dongtai = Db::name('gift_user_dongtai');
  186. foreach ($list as &$val) {
  187. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  188. $val['name'] = $val['name'] ? : '';
  189. $val['birthday'] = birthtime_to_age($val['birthday']);
  190. $val['createtime'] = get_last_time($val['createtime']);
  191. $val['cityname'] = $val['is_hideaddress'] ? '' : $val['address'];
  192. //用户vip
  193. $val['is_vip'] = $this->is_vip($val['vip_endtime'],$val['vip_level']);
  194. unset($val['vip_endtime']);
  195. //是否点过赞:0否 1是
  196. $val['isgood'] = 0;
  197. foreach($good_list as $k => $v){
  198. if($val['id'] == $v['dt_id']){
  199. $val['isgood'] = 1;
  200. }
  201. }
  202. //礼物数量
  203. $val['gift_count'] = $mt_gift_user_dongtai->where(['dt_id' => $val['id']])->count('id');
  204. //查询是否打过招呼
  205. $count = $mt_user_greet->where(['user_id' => $this->auth->id, 'user_to_id' => $val['user_id']])->count('id');
  206. if ($count) {
  207. $val['is_chat'] = 1; //是否打过招呼: 1是 0否
  208. } else {
  209. $val['is_chat'] = 0; //是否打过招呼: 1是 0否
  210. }
  211. //创建视频缩略图
  212. $val['images_thumb'] = '';
  213. if ($val['type'] == 2) {
  214. $images_url = explode('.', $val['images']);
  215. unset($images_url[count($images_url) - 1]);
  216. $val['images_thumb'] = join('.', $images_url) . '_0.jpg';
  217. }
  218. }
  219. }
  220. $this->success('success',$list);
  221. }
  222. //动态详情
  223. public function dongtaiinfo(){
  224. $id = input('id', 0, 'intval');
  225. if (!$id) {
  226. $this->error('您的网络开小差啦~');
  227. }
  228. $info = Db::name('topic_dongtai')->alias('dt')
  229. ->join('user','dt.user_id = user.id','LEFT')
  230. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  231. ->join('topic_hub th','dt.topic_id = th.id','LEFT')
  232. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  233. ->field('dt.*,user.nickname,user.avatar,user.gender,user.birthday,user.idcard_status,user.real_status,user.is_hideaddress,th.name,uw.vip_endtime,uw.vip_level,ur.nickname_remark')
  234. ->where('dt.id',$id)->find();
  235. if (!$info) {
  236. $this->error('没有找到该动态,或许它被删除了');
  237. }
  238. if ($info['status'] != 0) {
  239. $this->error('没有找到该动态,或许它被删除了');
  240. }
  241. $info = info_domain_image($info,['images','avatar']);
  242. $info['nickname'] = !empty($info['nickname_remark']) ? $info['nickname_remark'] : $info['nickname'];
  243. $info['name'] = $info['name'] ? : '';
  244. $info['birthday'] = birthtime_to_age($info['birthday']);
  245. $info['createtime'] = get_last_time($info['createtime']);
  246. $info['cityname'] = $info['is_hideaddress'] ? '' : $info['address'];
  247. //用户vip
  248. $info['is_vip'] = $this->is_vip($info['vip_endtime'],$info['vip_level']);
  249. unset($info['vip_endtime']);
  250. //是否点赞过
  251. $info['isgood'] = $this->is_good($id,$this->auth->id);
  252. //礼物数量
  253. $info['gift_count'] = Db::name('gift_user_dongtai')->where(['dt_id' => $info['id']])->count('id');
  254. //查询是否打过招呼
  255. $count = Db::name('user_greet')->where(['user_id' => $this->auth->id, 'user_to_id' => $info['user_id']])->count('id');
  256. if ($count) {
  257. $info['is_chat'] = 1; //是否打过招呼: 1是 0否
  258. } else {
  259. $info['is_chat'] = 0; //是否打过招呼: 1是 0否
  260. }
  261. //创建视频缩略图
  262. $info['images_thumb'] = '';
  263. if ($info['type'] == 2) {
  264. $images_url = explode('.', $info['images']);
  265. unset($images_url[count($images_url) - 1]);
  266. $info['images_thumb'] = join('.', $images_url) . '_0.jpg';
  267. }
  268. //是否收藏
  269. $info['is_collect'] = $this->is_collect($id,$this->auth->id);
  270. $this->success('success',$info);
  271. }
  272. //点赞
  273. public function good(){
  274. $id = input('id', 0, 'intval');
  275. if (!$id) {
  276. $this->error('您的网络开小差啦~');
  277. }
  278. $info = Db::name('topic_dongtai')->find($id);
  279. if (!$info) {
  280. $this->error('没有找到该动态,或许它被删除了');
  281. }
  282. if ($info['status'] != 0) {
  283. $this->error('没有找到该动态,或许它被删除了');
  284. }
  285. $where = [
  286. 'dt_id' => $id,
  287. 'user_id' => $this->auth->id,
  288. ];
  289. $check = Db::name('topic_dongtai_good')->where($where)->find();
  290. $dt_user_id = Db::name('topic_dongtai')->where('id',$id)->value('user_id');
  291. if($check){
  292. Db::name('topic_dongtai_good')->where($where)->delete();
  293. $down = Db::name('topic_dongtai')->where('id',$id)->setDec('goodnum');
  294. $this->success('已取消点赞');
  295. }else{
  296. Db::startTrans();
  297. $where['createtime'] = time();
  298. $rs = Db::name('topic_dongtai_good')->insertGetId($where);
  299. if(!$rs){
  300. Db::rollback();
  301. $this->error('点赞失败');
  302. }
  303. $up = Db::name('topic_dongtai')->where('id',$id)->setInc('goodnum');
  304. if($up === false){
  305. Db::rollback();
  306. $this->error('点赞失败');
  307. }
  308. //系统消息
  309. if($dt_user_id != $this->auth->id){
  310. //以前的点赞都删除
  311. $map = [
  312. 'user_id' => $dt_user_id,
  313. 'dt_id' => $id,
  314. 'from_user_id' => $this->auth->id,
  315. 'type' => 1, //类型:1=点赞,2=评论
  316. ];
  317. Db::name('topic_dongtai_message')->where($map)->delete();
  318. //入库
  319. $map['title'] = '点赞了你的动态';
  320. $map['createtime'] = time();
  321. Db::name('topic_dongtai_message')->insertGetId($map);
  322. }
  323. Db::commit();
  324. $this->success('点赞成功');
  325. }
  326. }
  327. //是否点赞
  328. private function is_good($dt_id,$uid){
  329. $where = [
  330. 'dt_id' => $dt_id,
  331. 'user_id' => $uid,
  332. ];
  333. $check = Db::name('topic_dongtai_good')->where($where)->find();
  334. if($check){
  335. return 1;
  336. }else{
  337. return 0;
  338. }
  339. }
  340. //评论
  341. public function answer(){
  342. $id = input('id',0);
  343. $content = input('content','');
  344. $to_user_id = input('to_user_id',0);
  345. $level = input('level',1); //回复类型:1=层主回复楼主,2=层中回复
  346. $floor = input('floor',0);
  347. if(empty($content) || empty($id)){
  348. $this->error();
  349. }
  350. //关键字替换
  351. $content = Keyworld::sensitive($content);
  352. //判断
  353. if($level == 2 && $floor == 0){
  354. $this->error('楼层错误');
  355. }
  356. //黑名单判断
  357. //是否被动态发布者拉黑
  358. $dongtai_user_id = Db::name('topic_dongtai')->where('id',$id)->value('user_id');
  359. $black_check = $this->is_black($dongtai_user_id,$this->auth->id);
  360. if($black_check){
  361. $this->error('您已被对方拉黑,禁止评论此动态');
  362. }
  363. //是否被层主拉黑
  364. if($level == 2){
  365. $answer_info = Db::name('topic_dongtai_answer')->where(['dt_id'=>$id,'level'=>1,'floor'=>$floor])->find();
  366. $black_check = $this->is_black($answer_info['user_id'],$this->auth->id);
  367. if($black_check){
  368. $this->error('您已被对方拉黑,禁止点评此评论');
  369. }
  370. }
  371. //回复楼主,最新楼层
  372. if($level == 1 || $floor == 0){
  373. $to_user_id = 0;
  374. $floor = 1; //默认一楼
  375. $last_floor = Db::name('topic_dongtai_answer')->where(['dt_id'=>$id,'level'=>1])->order('floor desc')->value('floor');
  376. if($last_floor){
  377. $floor = $last_floor + 1;
  378. }
  379. }
  380. //判断user_id
  381. if($to_user_id){
  382. $to_user = Db::name('user')->where('id',$to_user_id)->value('id');
  383. if(empty($to_user)){
  384. $this->error('被回复的用户不存在');
  385. }
  386. }
  387. //data
  388. $data = [
  389. 'dt_id' => $id,
  390. 'floor' => $floor,
  391. 'user_id' => $this->auth->id,
  392. 'content' => $content,
  393. 'to_user_id' => $to_user_id,
  394. 'level' => $level,
  395. 'createtime' => time(),
  396. 'updatetime' => time(),
  397. ];
  398. Db::startTrans();
  399. $rs = Db::name('topic_dongtai_answer')->insertGetId($data);
  400. if($level == 1){
  401. Db::name('topic_dongtai')->where('id',$id)->setInc('answernum');
  402. }
  403. //系统消息
  404. if($level == 1 && $dongtai_user_id != $this->auth->id ){
  405. $map = [
  406. 'user_id' => $dongtai_user_id,
  407. 'dt_id' => $id,
  408. 'from_user_id' => $this->auth->id,
  409. 'answer_id' => $rs,
  410. 'type' => 2, //类型:1=点赞,2=评论
  411. ];
  412. //入库
  413. $map['title'] = '评论了你的动态';
  414. $map['createtime'] = time();
  415. Db::name('topic_dongtai_message')->insertGetId($map);
  416. }
  417. //系统消息
  418. /*if($level == 1){
  419. //发给动态用户
  420. $msg_user_id = $dongtai_user_id;
  421. $msg_title = '动态评论';
  422. $msg_content = $this->auth->nickname.'评论了你的动态';
  423. $infotype_id = $rs;
  424. }else{
  425. //发给层主
  426. $answer_info = Db::name('topic_dongtai_answer')->where(['dt_id'=>$id,'level'=>1,'floor'=>$floor])->find();
  427. $msg_user_id = $answer_info['user_id'];
  428. $msg_title = '动态评论点评';
  429. $msg_content = $this->auth->nickname.'点评了你的动态评论';
  430. $infotype_id = $answer_info['id'];
  431. }
  432. $msg_id = \app\common\model\Message::addMessage($msg_user_id,$msg_title,$msg_content,'dongtai_answer',$infotype_id);*/
  433. Db::commit();
  434. $this->success('评价成功');
  435. }
  436. //用户是否拉黑
  437. private function is_black($uid,$black_uid){
  438. $where = [
  439. 'uid' => $uid,
  440. 'black_uid' => $black_uid,
  441. ];
  442. $check = Db::name('user_black')->where($where)->find();
  443. if($check){
  444. return 1;
  445. }else{
  446. return 0;
  447. }
  448. }
  449. //某动态的评论列表
  450. public function answer_list(){
  451. $dt_id = input('id',0);
  452. //楼
  453. $floor_list = Db::name('topic_dongtai_answer')
  454. ->alias('a')
  455. ->field('a.*,user.nickname,user.avatar,user.gender,user.birthday,ur.nickname_remark')
  456. ->join('user','a.user_id = user.id','LEFT')
  457. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  458. ->where(['a.dt_id'=>$dt_id,'a.level'=>1])->order('a.id desc')->autopage()->select();
  459. $floor_list = list_domain_image($floor_list,['avatar']);
  460. //追加子评论
  461. if(!empty($floor_list)){
  462. foreach($floor_list as $key => &$val){
  463. //下面几条子回复,字符串
  464. $val['childremark'] = '';
  465. $map = [
  466. 'a.dt_id' => $dt_id,
  467. 'a.floor' => $val['floor'],
  468. 'a.level' => 2,
  469. ];
  470. $number = Db::name('topic_dongtai_answer')->alias('a')->where($map)->count();
  471. if($number > 0){
  472. $answer_info = Db::name('topic_dongtai_answer')
  473. ->alias('a')
  474. ->field('user.nickname,ur.nickname_remark')
  475. ->join('user','a.user_id = user.id','LEFT')
  476. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  477. ->where($map)->order('a.id desc')->find();
  478. $answer_info['nickname'] = !empty($answer_info['nickname_remark']) ? $answer_info['nickname_remark'] : $answer_info['nickname'];
  479. $val['childremark'] = $answer_info['nickname'].'...等人,共'.$number.'条回复';
  480. }
  481. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  482. //时间处理
  483. $val['createtime'] = get_last_time($val['createtime']);
  484. //回复是否已赞
  485. $val['is_good'] = $this->answer_is_good($val['id'],$this->auth->id);
  486. //用户年龄
  487. $val['birthday'] = birthtime_to_age($val['birthday']);
  488. }
  489. }
  490. $this->success('success',$floor_list);
  491. }
  492. //单独某一层的详细
  493. public function answer_info(){
  494. $answer_id = input('answer_id');
  495. //楼
  496. $floor_info = Db::name('topic_dongtai_answer')
  497. ->alias('a')
  498. ->field('a.*,user.nickname,user.avatar,user.gender,user.birthday,ur.nickname_remark')
  499. ->join('user','a.user_id = user.id','LEFT')
  500. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  501. ->where(['a.id'=>$answer_id])->find();
  502. if(empty($floor_info)){
  503. $this->success('success',[]);
  504. }
  505. $floor_info = info_domain_image($floor_info,['avatar']);
  506. $floor_info['createtime'] = get_last_time($floor_info['createtime']);
  507. //用户年龄
  508. $floor_info['birthday'] = birthtime_to_age($floor_info['birthday']);
  509. //回复是否已赞
  510. $floor_info['is_good'] = $this->answer_is_good($answer_id,$this->auth->id);
  511. $floor_info['answernumber'] = Db::name('topic_dongtai_answer')->where(['dt_id'=>$floor_info['dt_id'],'floor'=>$floor_info['floor'],'level'=>2])->count();
  512. $floor_info['nickname'] = !empty($floor_info['nickname_remark']) ? $floor_info['nickname_remark'] : $floor_info['nickname'];
  513. //层
  514. $floors = $floor_info['floor'];
  515. $child_lists = Db::name('topic_dongtai_answer')->alias('a')
  516. ->field('a.*,user.nickname,user.avatar,user.gender,user.birthday,ur.nickname_remark')
  517. ->join('user','a.user_id = user.id','LEFT')
  518. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  519. ->where(['a.dt_id'=>$floor_info['dt_id'],'a.floor'=>$floors,'a.level'=>2])->order('a.id desc')->autopage()->select();
  520. $child_lists = list_domain_image($child_lists,['avatar','to_avatar']);
  521. if(!empty($child_lists)){
  522. foreach($child_lists as $key => &$answer){
  523. //用户年龄
  524. $answer['birthday'] = birthtime_to_age($answer['birthday']);
  525. $answer['is_good'] = $this->answer_is_good($answer['id'],$this->auth->id);
  526. $answer['createtime'] = get_last_time($answer['createtime']);
  527. $answer['nickname'] = !empty($answer['nickname_remark']) ? $answer['nickname_remark'] : $answer['nickname'];
  528. }
  529. }
  530. //合并
  531. $floor_info['child'] = $child_lists;
  532. $this->success('success',$floor_info);
  533. }
  534. //对评论点赞
  535. public function answer_good(){
  536. $dt_id = input('dt_id',0);
  537. $answer_id = input('answer_id',0);
  538. $where = [
  539. 'dt_id' => $dt_id,
  540. 'answer_id' => $answer_id,
  541. 'user_id' => $this->auth->id,
  542. ];
  543. $check = Db::name('topic_answer_good')->where($where)->find();
  544. if($check){
  545. Db::name('topic_answer_good')->where($where)->delete();
  546. Db::name('topic_dongtai_answer')->where('id',$answer_id)->setDec('goodnum');
  547. $this->success('已取消点赞');
  548. }else{
  549. Db::startTrans();
  550. $where['createtime'] = time();
  551. $rs = Db::name('topic_answer_good')->insertGetId($where);
  552. $up = Db::name('topic_dongtai_answer')->where('id',$answer_id)->setInc('goodnum');
  553. if($rs && $up !== false){
  554. Db::commit();
  555. $this->success('点赞成功');
  556. }
  557. Db::rollback();
  558. $this->error('点赞失败');
  559. }
  560. }
  561. //回复是否点赞
  562. private function answer_is_good($answer_id,$uid){
  563. $where = [
  564. 'answer_id' => $answer_id,
  565. 'user_id' => $uid,
  566. ];
  567. $check = Db::name('topic_answer_good')->where($where)->find();
  568. if($check){
  569. return 1;
  570. }else{
  571. return 0;
  572. }
  573. }
  574. //删除我的某个评论
  575. public function delete_answer(){
  576. $id = input('id',0);
  577. if(!$id){
  578. $this->error();
  579. }
  580. Db::startTrans();
  581. $info = Db::name('topic_dongtai_answer')->where('id',$id)->where('user_id',$this->auth->id)->find();
  582. if(!$info){
  583. $this->error('不存在的动态评论');
  584. }
  585. if($info['level'] == 1){
  586. //评论消息删除
  587. $dongtai_user_id = Db::name('topic_dongtai')->where('id',$info['dt_id'])->value('user_id');
  588. $map = [
  589. 'user_id' => $dongtai_user_id,
  590. 'dt_id' => $info['dt_id'],
  591. 'from_user_id' => $this->auth->id,
  592. 'answer_id' => $id,
  593. 'type' => 2, //类型:1=点赞,2=评论
  594. ];
  595. Db::name('topic_dongtai_message')->where($map)->delete();
  596. //楼层内都删
  597. $louceng_id = Db::name('topic_dongtai_answer')->where('dt_id',$info['dt_id'])->where('level',2)->where('floor',$info['floor'])->column('id');
  598. if(!empty($louceng_id)){
  599. Db::name('topic_dongtai')->where('id',$info['dt_id'])->setDec('answernum',count($louceng_id));//回复数减1
  600. Db::name('topic_dongtai_answer')->where('id','IN',$louceng_id)->delete();//评论删掉
  601. Db::name('topic_answer_good')->where('answer_id','IN',$louceng_id)->delete();//评论点赞删掉
  602. }
  603. }
  604. Db::name('topic_dongtai')->where('id',$info['dt_id'])->setDec('answernum');//回复数减1
  605. Db::name('topic_dongtai_answer')->where('id',$id)->delete(); //评论删掉
  606. Db::name('topic_answer_good')->where('answer_id',$id)->delete();//评论点赞删掉
  607. Db::commit();
  608. $this->success();
  609. }
  610. //动态赠送礼物
  611. public function givegiftdongtai() {
  612. // 接口防并发
  613. if (!$this->apiLimit(1, 1)) {
  614. $this->error(__('Operation frequently'));
  615. }
  616. // $user_id = input('user_id');// 赠送对象
  617. $dt_id = input('dt_id', 0, 'intval'); //动态id
  618. $gift_id = input('gift_id');// 礼物ID
  619. $number = input('number',1,'intval');//数量
  620. if (!$dt_id || !$gift_id || $number < 1) {
  621. $this->error();
  622. }
  623. //查询动态
  624. $dongtai_info = Db::name('topic_dongtai')->find($dt_id);
  625. if (!$dongtai_info) {
  626. $this->error('没有找到该动态,或许它被删除了');
  627. }
  628. if ($dongtai_info['status'] != 0) {
  629. $this->error('没有找到该动态,或许它被删除了');
  630. }
  631. $user_id = $dongtai_info['user_id'];
  632. // 不可以赠送给自己
  633. if($this->auth->id == $user_id) {
  634. $this->error("不可以赠送给自己");
  635. }
  636. // 获取礼物信息
  637. $giftinfo = Db::name('gift')->where('id',$gift_id)->find();
  638. if (!$giftinfo)
  639. {
  640. $this->error("请选择礼物");
  641. }
  642. $giftvalue = bcmul($giftinfo['price'],$number);
  643. //被赠送人信息
  644. $touserinfo = Db::name('user')->where('id',$user_id)->find();
  645. if (!$touserinfo) {
  646. $this->error("不存在的用户");
  647. }
  648. // 判断当前用户余额
  649. $user_gold = model('wallet')->getWallet($this->auth->id,'gold');
  650. if($user_gold < $giftvalue) {
  651. $this->error("您的金币余额不足");
  652. }
  653. Db::startTrans();
  654. // 添加礼物赠送记录表
  655. $data = [
  656. 'user_id' => $this->auth->id,
  657. 'user_to_id' => $user_id,
  658. 'dt_id' => $dt_id,
  659. 'gift_id' => $giftinfo['id'],
  660. 'gift_name' => $giftinfo['name'],
  661. 'number' => $number,
  662. 'price' => $giftinfo['price'],
  663. 'total_price' => $giftvalue,
  664. 'createtime' => time(),
  665. ];
  666. //每个礼物都要计算平台抽成和房主抽成
  667. $gift_plat_scale = config('site.gift_plat_scale');
  668. $data['platvalue'] = bcmul($gift_plat_scale/100 ,$data['total_price'],1);//平台抽成
  669. $data['getvalue'] = bcsub($data['total_price'] ,$data['platvalue'],1);//减去抽成剩余价值
  670. $money_to_gold = config('site.money_to_gold');
  671. $data['getmoney'] = bcdiv($data['getvalue'] ,$money_to_gold,2);//收益
  672. $log_id = Db::name('gift_user_dongtai')->insertGetId($data);
  673. if(!$log_id){
  674. Db::rollback();
  675. $this->error('赠送失败');
  676. }
  677. if($giftvalue > 0){
  678. // 扣除当前用户余额
  679. $wallet_rs = model('wallet')->lockChangeAccountRemain($this->auth->id,$user_id,'gold',-$giftvalue,59,'给['.$touserinfo['nickname'].']赠送礼物:'.$giftinfo["name"] . '*' . $number,'gift_user_dongtai',$log_id);
  680. if($wallet_rs['status'] === false){
  681. Db::rollback();
  682. $this->error($wallet_rs['msg']);
  683. }
  684. }
  685. if($data['getmoney'] > 0){
  686. // 添加获赠用户收益
  687. $wallet_rs = model('wallet')->lockChangeAccountRemain($user_id,$this->auth->id,'money',$data['getmoney'],60,'获得['. $this->auth->nickname .']的礼物:'.$giftinfo["name"] . '*' . $number,'gift_user_dongtai',$log_id,2);
  688. if($wallet_rs['status'] === false){
  689. Db::rollback();
  690. $this->error($wallet_rs['msg']);
  691. }
  692. }
  693. //增加赠送用户上级余额
  694. if ($touserinfo['intro_uid']) {
  695. //获取返利比率
  696. $agent_info = Db::name('user')->where(['id' => $touserinfo['intro_uid']])->field('is_agent,h_intro_income_rebate_rate')->find();
  697. $intro_income_rebate_rate = ($agent_info['is_agent'] == 1) ? $agent_info['h_intro_income_rebate_rate'] : (int)config('site.intro_income_rebate_rate'); //邀请人收礼物返利比率
  698. if ($intro_income_rebate_rate > 0 && $intro_income_rebate_rate <= 100) {
  699. //上级获得金额
  700. $intro_uid_money = bcdiv(bcmul($data['getmoney'],$intro_income_rebate_rate,2),100,2);
  701. if ($intro_uid_money > 0) {
  702. $intro_result = model('Wallet')->lockChangeAccountRemain($touserinfo['intro_uid'],$user_id,'money',$intro_uid_money,68, '邀请人动态礼物获赠奖励','gift_user_dongtai',$log_id);
  703. if($intro_result['status']===false)
  704. {
  705. Db::rollback();
  706. $this->error($intro_result['msg']);
  707. }
  708. }
  709. }
  710. }
  711. if ($this->auth->gender == 1 && $touserinfo['gender'] == 0) {
  712. //增加亲密度
  713. $user_intimacy_rs = addintimacy($this->auth->id, $user_id, $giftvalue);
  714. if (!$user_intimacy_rs['status']) {
  715. Db::rollback();
  716. $this->error('您的网络开小差啦~');
  717. }
  718. }
  719. Db::commit();
  720. //发送消息
  721. if (isset($user_intimacy_rs) && $user_intimacy_rs['level_remark']) {
  722. $tenim = new \app\api\controller\Tenim;
  723. $tenim->sendMessageToUser($this->auth->id, $user_id, $user_intimacy_rs['level_remark'], 1);
  724. }
  725. $return_data['money'] = $data['getmoney']; //获得金额
  726. $return_data['level_remark'] = isset($user_intimacy_rs) ? $user_intimacy_rs['level_remark'] : ''; //亲密度等级提示语
  727. $this->success('赠送成功', $return_data);
  728. }
  729. //动态通知
  730. public function message(){
  731. $list = Db::name('topic_dongtai_message')->alias('msg')->field('msg.*,user.avatar,user.nickname,ur.nickname_remark')
  732. ->join('user','msg.from_user_id = user.id','LEFT')
  733. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  734. ->where('msg.user_id',$this->auth->id)->order('msg.id desc')->autopage()->select();
  735. $list = list_domain_image($list,['avatar']);
  736. foreach ($list as &$val) {
  737. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  738. }
  739. //已读
  740. Db::name('topic_dongtai_message')->where(['user_id'=>$this->auth->id,'status'=>0])->update(['status'=>1]);
  741. $this->success('success',$list);
  742. }
  743. //删除动态
  744. public function delete() {
  745. $id = input('id', 0, 'intval');
  746. if (!$id) {
  747. $this->error('您的网络开小差啦~');
  748. }
  749. $info = Db::name('topic_dongtai')->find($id);
  750. if (!$info) {
  751. $this->error('没有找到该动态,或许它被删除了');
  752. }
  753. if ($info['user_id'] != $this->auth->id) {
  754. $this->error('您的网络开小差啦~');
  755. }
  756. $rs = Db::name('topic_dongtai')->where(['id' => $id])->setField('status', 1);
  757. if (!$rs) {
  758. $this->error('您的网络开小差啦~');
  759. }
  760. $this->success('删除成功');
  761. }
  762. //举报
  763. public function report(){
  764. $dt_id = input('dt_id',0);
  765. $check = Db::name('topic_dongtai')->where('id',$dt_id)->find();
  766. if(empty($check)){
  767. $this->error('没有找到该动态,或许它被删除了');
  768. }
  769. $data['dt_id'] = $dt_id;
  770. $data['user_id'] = $this->auth->id;
  771. $data['to_user_id'] = $check['user_id'];
  772. $data['createtime'] = time();
  773. Db::name('topic_dongtai_report')->insertGetId($data);
  774. $this->success('举报成功');
  775. }
  776. //收藏,取消收藏
  777. public function collect(){
  778. $where = [
  779. 'user_id' => $this->auth->id,
  780. 'table' => 'topic_dongtai',
  781. 'table_id' => input('id',0),
  782. ];
  783. $check = Db::name('user_collect')->where($where)->find();
  784. if($check){
  785. Db::name('user_collect')->where($where)->delete();
  786. $this->success('已取消收藏');
  787. }else{
  788. Db::name('user_collect')->insertGetId($where);
  789. $this->success('收藏成功');
  790. }
  791. }
  792. //我的收藏
  793. public function my_collect(){
  794. $collect_id = Db::name('user_collect')->where(['table'=>'topic_dongtai','user_id'=>$this->auth->id])->column('table_id');
  795. $where = ['dt.id'=>['IN',$collect_id]];
  796. $where['dt.status'] = 0;
  797. $where['dt.auit_status'] = 1;
  798. $orderby = 'dt.id desc';
  799. $list = Db::name('topic_dongtai')->alias('dt')
  800. ->join('user','dt.user_id = user.id','LEFT')
  801. ->join('user_wallet uw','user.id = uw.user_id','LEFT')
  802. ->join('user_remark ur', 'ur.to_user_id = user.id and ur.user_id = '.$this->auth->id, 'LEFT')
  803. ->join('topic_hub th','dt.topic_id = th.id','LEFT')
  804. ->field('dt.*,user.nickname,user.avatar,user.gender,user.birthday,user.idcard_status,user.real_status,user.is_hideaddress,th.name,uw.vip_endtime,uw.vip_level,ur.nickname_remark')
  805. ->where($where)
  806. ->order($orderby)->autopage()->select();
  807. $list = list_domain_image($list,['images','avatar']);
  808. //追加是否点赞
  809. if(!empty($list)){
  810. $ids = array_column($list,'id');
  811. $map = [
  812. 'dt_id' => ['IN',$ids],
  813. 'user_id' => $this->auth->id,
  814. ];
  815. $good_list = Db::name('topic_dongtai_good')->where($map)->select();
  816. $mt_user_greet = Db::name('user_greet'); //是否打过招呼
  817. $mt_gift_user_dongtai = Db::name('gift_user_dongtai');
  818. foreach ($list as &$val) {
  819. $val['nickname'] = !empty($val['nickname_remark']) ? $val['nickname_remark'] : $val['nickname'];
  820. $val['name'] = $val['name'] ? : '';
  821. $val['birthday'] = birthtime_to_age($val['birthday']);
  822. $val['createtime'] = get_last_time($val['createtime']);
  823. $val['cityname'] = $val['is_hideaddress'] ? '' : $val['address'];
  824. //用户vip
  825. $val['is_vip'] = $this->is_vip($val['vip_endtime'],$val['vip_level']);
  826. unset($val['vip_endtime']);
  827. //是否点过赞:0否 1是
  828. $val['isgood'] = 0;
  829. foreach($good_list as $k => $v){
  830. if($val['id'] == $v['dt_id']){
  831. $val['isgood'] = 1;
  832. }
  833. }
  834. //礼物数量
  835. $val['gift_count'] = $mt_gift_user_dongtai->where(['dt_id' => $val['id']])->count('id');
  836. //查询是否打过招呼
  837. $count = $mt_user_greet->where(['user_id' => $this->auth->id, 'user_to_id' => $val['user_id']])->count('id');
  838. if ($count) {
  839. $val['is_chat'] = 1; //是否打过招呼: 1是 0否
  840. } else {
  841. $val['is_chat'] = 0; //是否打过招呼: 1是 0否
  842. }
  843. //创建视频缩略图
  844. $val['images_thumb'] = '';
  845. if ($val['type'] == 2) {
  846. $images_url = explode('.', $val['images']);
  847. unset($images_url[count($images_url) - 1]);
  848. $val['images_thumb'] = join('.', $images_url) . '_0.jpg';
  849. }
  850. }
  851. }
  852. $this->success('success',$list);
  853. }
  854. //动态是否收藏
  855. private function is_collect($dt_id,$uid){
  856. $where = [
  857. 'user_id' => $uid,
  858. 'table' => 'topic_dongtai',
  859. 'table_id' => $dt_id,
  860. ];
  861. $check = Db::name('user_collect')->where($where)->find();
  862. if($check){
  863. return 1;
  864. }else{
  865. return 0;
  866. }
  867. }
  868. /////////////////////////////////////////////////////////////////////////////////
  869. //动态收到礼物列表
  870. public function dongtaigiftlist() {
  871. $id = input('id', 0, 'intval');
  872. if (!$id) {
  873. $this->error('您的网络开小差啦~');
  874. }
  875. //点赞只能查看异性
  876. $dongtaiWhere['td.id'] = $id;
  877. $dongtai = Db::name('topic_dongtai')->alias('td')->field('td.id,td.user_id,u.gender')
  878. ->join('user u','u.id = td.user_id','LEFT')
  879. ->where($dongtaiWhere)->find();
  880. $where['a.dt_id'] = $id;
  881. $gender = isset($dongtai['gender']) ? $dongtai['gender'] : 0;
  882. if ($gender == 1) {
  883. $where['user.gender'] = 0;
  884. } elseif ($gender == 0) {
  885. $where['user.gender'] = 1;
  886. }
  887. $list = Db::name('gift_user_dongtai')->alias('a')->field('a.user_id, count(a.id) count')
  888. ->join('user', 'a.user_id = user.id', 'left')
  889. ->where($where)->group('a.user_id')->order('a.id desc')->autopage()->select();
  890. if (!$list) {
  891. $this->success('success', $list);
  892. }
  893. $mt_user = Db::name('user');
  894. foreach ($list as &$v) {
  895. $user_info = $mt_user->field('nickname, avatar, gender, birthday')->where(['id' => $v['user_id']])->find();
  896. $v['nickname'] = $user_info['nickname'];
  897. $v['avatar'] = one_domain_image($user_info['avatar']);
  898. $v['birthday'] = birthtime_to_age($user_info['birthday']);
  899. }
  900. $this->success('success', $list);
  901. }
  902. //点赞列表
  903. public function dongtaigoodlist() {
  904. $id = input('id', 0, 'intval');
  905. if (!$id) {
  906. $this->error('您的网络开小差啦~');
  907. }
  908. //点赞只能查看异性
  909. $dongtaiWhere['td.id'] = $id;
  910. $dongtai = Db::name('topic_dongtai')->alias('td')->field('td.id,td.user_id,u.gender')
  911. ->join('user u','u.id = td.user_id','LEFT')
  912. ->where($dongtaiWhere)->find();
  913. $where['a.dt_id'] = $id;
  914. $gender = isset($dongtai['gender']) ? $dongtai['gender'] : 0;
  915. if ($gender == 1) {
  916. $where['user.gender'] = 0;
  917. } elseif ($gender == 0) {
  918. $where['user.gender'] = 1;
  919. }
  920. $list = Db::name('topic_dongtai_good')->alias('a')
  921. ->join('user', 'a.user_id = user.id', 'left')
  922. ->field('a.*, user.nickname,user.avatar,user.gender,user.birthday')
  923. ->where($where)
  924. ->order('a.id desc')
  925. ->autopage()->select();
  926. if (!$list) {
  927. $this->success('success', $list);
  928. }
  929. $list = list_domain_image($list,['avatar']);
  930. foreach ($list as &$v) {
  931. $v['birthday'] = birthtime_to_age($v['birthday']);
  932. $v['createtime'] = get_last_time($v['createtime']);
  933. }
  934. $this->success('success', $list);
  935. }
  936. }