Community.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\AcitivityOrder;
  5. use app\common\model\CommunityModel;
  6. use app\common\model\MeetingModel;
  7. use app\common\model\MeetingOrder;
  8. use app\common\model\OfficeModel;
  9. use app\common\model\Park;
  10. use app\common\model\SheActivityModel;
  11. use think\Db;
  12. /**
  13. * 社群社区
  14. */
  15. class Community extends Api
  16. {
  17. protected $noNeedLogin = ['acvitityLists', 'Info', 'listInfo', 'qustion', 'qustionInfo', 'buildInfo', 'protable', 'trueTime', 'chooseTime', 'GgInfo'];
  18. protected $noNeedRight = ['*'];
  19. /**
  20. * 发布信息
  21. * @ApiMethod (POST)
  22. * @param string $notice 简介
  23. * @param string $images 多图
  24. */
  25. public function add()
  26. {
  27. $data = $this->request->post();
  28. if (empty($data['notice']) && empty($data['images'])) return $this->error('图片和文字至少输入一类');
  29. $user = $this->auth->getUser();
  30. $data['uid'] = $user['id'];
  31. $data['switch'] = 1;
  32. $data['create_time'] = date('Y-m-d H:i:s', time());
  33. $communityModel = new CommunityModel();
  34. $save = $communityModel->allowField(true)->save($data);
  35. if ($save) {
  36. return $this->success('发布成功');
  37. } else {
  38. return $this->error('发布失败');
  39. }
  40. }
  41. /**
  42. * 社区信息列表
  43. */
  44. public function lists()
  45. {
  46. $page = $this->request->get('page');
  47. $limit = $this->request->get('limit');
  48. if (!$page) {
  49. $pages = '0,10';
  50. } else {
  51. $page = $page - 1;
  52. if ($page < 0) $page = 0;
  53. $pages = $page . ',' . $limit;
  54. }
  55. $user = $this->auth->getUser();
  56. $where = [];
  57. if ($user) $where['u.p_id'] = $user['p_id'];
  58. $communityModel = new CommunityModel();
  59. $data = $communityModel->alias('c')
  60. ->join('user u', 'c.uid=u.id', "left")
  61. ->where($where)
  62. ->limit($pages)
  63. ->order('create_time desc')
  64. ->field('c.*,u.username,u.avatar')
  65. ->select();
  66. foreach ($data as $k => $v) {
  67. $data[$k]['time'] = self::mdate(strtotime($v['create_time']));
  68. $data[$k]['zan_count'] = Db::name('community_zan')->where('c_id', $v['id'])->count();
  69. $data[$k]['is_zan'] = 0;
  70. $isZan = Db::name('community_zan')->where('c_id', $v['id'])->find();
  71. if ($isZan) $data[$k]['is_zan'] = 1;
  72. $data[$k]['coment_count'] = Db::name('community_comment')->where('c_id', $v['id'])->count();
  73. }
  74. return $this->success('', $data);
  75. }
  76. /**
  77. * 点赞
  78. *
  79. * @param string $id 活动id
  80. *
  81. */
  82. public function zan()
  83. {
  84. $id = $this->request->get('id');
  85. if (!$id) return $this->error('参数错误');
  86. $user = $this->auth->getUser();
  87. $data = [
  88. 'c_id' => $id,
  89. 'uid' => $user['id'],
  90. 'create_time' => date('Y-m-d H:i:s', time()),
  91. ];
  92. $add = Db::name('community_zan')->insert($data);
  93. if ($add) {
  94. return $this->success('成功');
  95. } else {
  96. return $this->error('失败');
  97. }
  98. }
  99. /**
  100. * 取消点赞
  101. *
  102. * @param string $id 活动id
  103. *
  104. */
  105. public function zanFalse()
  106. {
  107. $id = $this->request->get('id');
  108. if (!$id) return $this->error('参数错误');
  109. $user = $this->auth->getUser();
  110. $where['c_id'] = $id;
  111. $where['uid'] = $user['id'];
  112. $del = Db::name('community_zan')->where($where)->delete();
  113. if ($del) {
  114. return $this->success('成功');
  115. } else {
  116. return $this->error('失败');
  117. }
  118. }
  119. /**
  120. * 详情
  121. *
  122. * @param string $id 活动id
  123. *
  124. */
  125. public function info()
  126. {
  127. $id = $this->request->get('id');
  128. if (!$id) return $this->error('参数错误');
  129. $communityModel = new CommunityModel();
  130. $data = $communityModel->alias('c')
  131. ->join('user u','c.uid=u.id','left')
  132. ->where('c.id', $id)
  133. ->field('c.*,u.username,u.avatar')
  134. ->find();
  135. $data['time'] = self::mdate(strtotime($data['create_time']));
  136. $data['zan_count'] = Db::name('community_zan')->where('c_id', $data['id'])->count();
  137. $data['coment_count'] = Db::name('community_comment')->where('c_id', $data['id'])->count();
  138. $data['is_zan'] = 0;
  139. $isZan = Db::name('community_zan')->where('c_id', $data['id'])->find();
  140. if ($isZan) $data['is_zan'] = 1;
  141. $data['comment'] = Db::name('community_comment c')
  142. ->join('user u', 'c.uid=u.id', 'left')
  143. ->where('c_id', $id)
  144. ->field('c.*,u.avatar,u.nickname,u.username')
  145. ->order('create_time desc')
  146. ->select();
  147. return $this->success('', $data);
  148. }
  149. /**
  150. * 评论
  151. *
  152. * @param string $id id
  153. * @param string $notice 评论内容
  154. *
  155. */
  156. public function comment()
  157. {
  158. $id = $this->request->get('id');
  159. if (!$id) return $this->error('参数错误');
  160. $notice = $this->request->get('notice');
  161. if (empty($notice)) return $this->error('评论内容不能为空');
  162. $user = $this->auth->getUser();
  163. $data = [
  164. 'c_id' => $id,
  165. 'uid' => $user['id'],
  166. 'notice' => $notice,
  167. 'create_time' => date('Y-m-d H:i:s', time()),
  168. ];
  169. $add = Db::name('community_comment')->insert($data);
  170. if ($add) {
  171. return $this->success('品论成功');
  172. } else {
  173. return $this->error('评论失败');
  174. }
  175. }
  176. /**
  177. * 用户信息详情
  178. *
  179. * @param string $uid 用户id
  180. */
  181. public function userInfo()
  182. {
  183. $our = $this->auth->getUser();
  184. $uid = $this->request->get('uid');
  185. if (empty($uid)) return $this->error('参数错误');
  186. $user = Db::name('user')->where('id', $uid)->field('id,avatar,username,company')->find();
  187. $user['fensi_count'] = Db::name('follow')->where('be_uid', $user['id'])->count();
  188. $user['guanzhu_count'] = Db::name('follow')->where('uid', $user['id'])->count();
  189. $user['is_guanzhu'] = 0;
  190. $isGuanzhu = Db::name('follow')->where('uid', $our['id'])->where('be_uid', $user['id'])->find();
  191. if ($isGuanzhu) $user['is_guanzhu'] = 1;
  192. if (!empty($user['company'])) {
  193. $qiye = Db::name('user')
  194. ->where('company', $user['company'])
  195. ->where('group_id', '>',0)
  196. ->where('shenhe_status', 'in', '1,2,3')
  197. ->find();
  198. if ($qiye && $qiye['group_id'] == 1) {
  199. $company = Db::name('user_shangjia')->where('uid',$qiye['id'])->find();
  200. if ($company) {
  201. $user['company_notice'] = $company['str'];
  202. } else {
  203. $user['company_notice'] = '';
  204. }
  205. } else if($qiye && $qiye['group_id'] == 2) {
  206. $qiye_nocice = Db::name('user_qiye')->where('uid', $qiye['id'])->find();
  207. if ($qiye_nocice) {
  208. $user['company_notice'] = $qiye_nocice['notice'];
  209. } else {
  210. $user['company_notice'] = '';
  211. }
  212. } else {
  213. $user['company_notice'] = '';
  214. }
  215. // if ($qiye) {
  216. // $qiye_nocice = Db::name('user_qiye')->where('uid', $qiye['id'])->find();
  217. //
  218. // $user['company_notice'] = $qiye_nocice['notice'];
  219. // } else {
  220. // $user['company_notice'] = '';
  221. // }
  222. } else {
  223. $user['company_notice'] = '';
  224. }
  225. $communityModel = new CommunityModel();
  226. $data = $communityModel->alias('c')
  227. ->join('user u', 'c.uid=u.id', "left")
  228. ->where('uid', $user['id'])
  229. ->order('create_time desc')
  230. ->field('c.*')
  231. ->select();
  232. foreach ($data as $k => $v) {
  233. $data[$k]['is_zan'] = 0;
  234. $isZan = Db::name('community_zan')->where('c_id', $v['id'])->find();
  235. if ($isZan) $data[$k]['is_zan'] = 1;
  236. $data[$k]['time'] = self::mdate(strtotime($v['create_time']));
  237. $data[$k]['zan_count'] = Db::name('community_zan')->where('c_id', $v['id'])->count();
  238. $data[$k]['coment_count'] = Db::name('community_comment')->where('c_id', $v['id'])->count();
  239. }
  240. $user['commeny'] = $data;
  241. return $this->success('', $user);
  242. }
  243. /**
  244. * 用户举报
  245. * @param string $uid 用户id
  246. */
  247. public function jubao()
  248. {
  249. $uid = $this->request->get('uid');
  250. if (!$uid) return $this->error('参数错误');
  251. $user = $this->auth->getUser();
  252. $data = [
  253. 'uid' => $user['id'],
  254. 'be_uid' => $uid,
  255. 'create_time' => date('Y-m-d H:i',time())
  256. ];
  257. $add = Db::name('jubao')->insert($data);
  258. if ($add) {
  259. return $this->success('举报成功,后台审核中');
  260. } else {
  261. return $this->error('操作失败');
  262. }
  263. }
  264. /**
  265. * 关注用户
  266. *
  267. * @param string $uid 用户id
  268. */
  269. public function guanzhu()
  270. {
  271. $uid = $this->request->get('uid');
  272. if (!$uid) return $this->error('参数错误');
  273. $user = $this->auth->getUser();
  274. $data = [
  275. 'be_uid' => $uid,
  276. 'uid' => $user['id'],
  277. 'create_time' => date('Y-m-d H:i:s', time()),
  278. ];
  279. $add = Db::name('follow')->insert($data);
  280. if ($add) {
  281. return $this->success('成功');
  282. } else {
  283. return $this->error('失败');
  284. }
  285. }
  286. /**
  287. * 取消关注
  288. *
  289. * @param string $uid 用户id
  290. */
  291. public function guanzhuFalse()
  292. {
  293. $uid = $this->request->get('uid');
  294. if (!$uid) return $this->error('参数错误');
  295. $user = $this->auth->getUser();
  296. $where['uid'] = $user['id'];
  297. $where['be_uid'] = $uid;
  298. $del = Db::name('follow')->where($where)->delete();
  299. if ($del) {
  300. return $this->success('成功');
  301. } else {
  302. return $this->error('失败');
  303. }
  304. }
  305. /**
  306. * 举报用户
  307. * @param string $uid 被举报用户id
  308. */
  309. public function report()
  310. {
  311. $uid = $this->request->get('uid');
  312. if (!$uid) return $this->error('参数错误');
  313. $user = $this->auth->getUser();
  314. $data = [
  315. 'be_uid' => $uid,
  316. 'uid' => $user['id'],
  317. 'create_time' => date('Y-m-d H:i:s', time()),
  318. ];
  319. $where['uid'] = $user['id'];
  320. $where['be_uid'] = $uid;
  321. $isset = Db::name('follow')->where($where)->find();
  322. if ($isset) return $this->error('您已经举报过该用户了,请勿重复举报');
  323. $add = Db::name('report')->insert($data);
  324. if ($add) {
  325. return $this->success('成功');
  326. } else {
  327. return $this->error('失败');
  328. }
  329. }
  330. /**
  331. * 我的帖子
  332. */
  333. public function myCommunity()
  334. {
  335. $page = $this->request->get('page');
  336. $limit = $this->request->get('limit');
  337. if (!$page) {
  338. $pages = '0,10';
  339. } else {
  340. $page = $page - 1;
  341. if ($page < 0) $page = 0;
  342. $pages = $page . ',' . $limit;
  343. }
  344. $user = $this->auth->getUser();
  345. $communityModel = new CommunityModel();
  346. $data = $communityModel->alias('c')
  347. ->join('user u','c.uid=u.id')
  348. ->where('c.uid',$user['id'])
  349. ->order('c.create_time desc')
  350. ->limit($pages)
  351. ->field('c.*,u.avatar,u.username')
  352. ->select();
  353. if (empty($data)) return $this->success('',$data);
  354. foreach ($data as $k=>$v) {
  355. $data[$k]['is_zan'] = 0;
  356. $isZan = Db::name('community_zan')->where('c_id', $v['id'])->find();
  357. if ($isZan) $data[$k]['is_zan'] = 1;
  358. $data[$k]['time'] = self::mdate(strtotime($v['create_time']));
  359. $data[$k]['zan_count'] = Db::name('community_zan')->where('c_id', $v['id'])->count();
  360. $data[$k]['coment_count'] = Db::name('community_comment')->where('c_id', $v['id'])->count();
  361. }
  362. return $this->success('',$data);
  363. }
  364. /**
  365. * 我的评论
  366. */
  367. public function ourComment()
  368. {
  369. $page = $this->request->get('page');
  370. $limit = $this->request->get('limit');
  371. if (!$page) {
  372. $pages = '0,10';
  373. } else {
  374. $page = $page - 1;
  375. if ($page < 0) $page = 0;
  376. $pages = $page . ',' . $limit;
  377. }
  378. $user = $this->auth->getUser();
  379. $data = Db::name('community_comment cc')
  380. ->join('community c','cc.c_id=c.id')
  381. ->where('cc.uid',$user['id'])
  382. ->where('switch',1)
  383. ->order('cc.create_time desc')
  384. ->field('c.id,c.uid uuid,c.notice content,c.images,c.create_time time,cc.uid,cc.notice,cc.create_time ')
  385. ->limit($pages)
  386. ->select();
  387. if (empty($data)) return $this->success('',$data);
  388. foreach ($data as $k=>$v) {
  389. $res[$k]['our'] = Db::name('user')->where('id',$user['id'])->field('id,username,avatar')->find();
  390. $res[$k]['our']['create_time'] = self::mdate(strtotime($data[$k]['create_time']));
  391. $res[$k]['our']['notice'] = $data[$k]['notice'];
  392. $res[$k]['community'] = Db::name('user')->field('id,username,avatar')->where('id',$v['uid'])->find();
  393. $res[$k]['community']['id'] = $data[$k]['id'];
  394. $res[$k]['community']['uid'] = $data[$k]['uid'];
  395. $res[$k]['community']['content'] = $data[$k]['content'];
  396. $res[$k]['community']['images'] = explode(',',$data[$k]['images']);
  397. $res[$k]['community']['time'] = self::mdate(strtotime($data[$k]['time']));
  398. }
  399. return $this->success('',$res);
  400. }
  401. /**
  402. *
  403. * 判断时分秒
  404. * @param null $time
  405. * @return false|string
  406. */
  407. function mdate($time = NULL)
  408. {
  409. $text = '';
  410. $time = $time === NULL || $time > time() ? time() : intval($time);
  411. $t = time() - $time; //时间差 (秒)
  412. $y = date('Y', $time) - date('Y', time());//是否跨年
  413. switch ($t) {
  414. case $t == 0:
  415. $text = '刚刚';
  416. break;
  417. case $t < 60:
  418. $text = $t . '秒前'; // 一分钟内
  419. break;
  420. case $t < 60 * 60:
  421. $text = floor($t / 60) . '分钟前'; //一小时内
  422. break;
  423. case $t < 60 * 60 * 24:
  424. $text = floor($t / (60 * 60)) . '小时前'; // 一天内
  425. break;
  426. case $t < 60 * 60 * 24 * 3:
  427. $text = floor($time / (60 * 60 * 24)) == 1 ? '昨天 ' . date('H:i', $time) : '前天 ' . date('H:i', $time); //昨天和前天
  428. break;
  429. case $t < 60 * 60 * 24 * 30:
  430. $text = date('m月d日 H:i', $time); //一个月内
  431. break;
  432. case $t < 60 * 60 * 24 * 365 && $y == 0:
  433. $text = date('m月d日', $time); //一年内
  434. break;
  435. default:
  436. $text = date('Y年m月d日', $time); //一年以前
  437. break;
  438. }
  439. return $text;
  440. }
  441. }