Huodong.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. namespace app\api\controller\zzz;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /**
  6. *
  7. */
  8. class Huodong extends Api
  9. {
  10. protected $noNeedLogin = ['typelist','duixianglist'];
  11. protected $noNeedRight = ['*'];
  12. //活动类型
  13. public function typelist()
  14. {
  15. $list = Db::name('zzz_hdtype')->field('id, name')->select();
  16. $this->success(1, $list);
  17. }
  18. //邀约对象
  19. public function duixianglist(){
  20. $list = Db::name('zzz_hdyaoyue')->field('id, name')->select();
  21. $this->success(1, $list);
  22. }
  23. //发布活动
  24. public function addone(){
  25. $data = [
  26. 'user_id' => $this->auth->id,
  27. 'type_id' => input('type_id',0),
  28. 'didian' => input('didian',''),
  29. 'yaoyue' => input('yaoyue',''),
  30. 'starttime' => input('starttime','','strtotime'),
  31. 'endtime' => input('endtime','','strtotime'),
  32. 'info' => input('info',''),
  33. 'image' => input('image',''),
  34. 'createtime' => time(),
  35. ];
  36. $data['typename'] = Db::name('zzz_hdtype')->where('id',$data['type_id'])->value('name');
  37. Db::name('zzz_huodong')->insertGetId($data);
  38. $this->success();
  39. }
  40. //活动列表
  41. public function huodong_list(){
  42. $type_id = input('type_id',0);
  43. $where = [];
  44. if(!empty($type_id)){
  45. $where['hd.type_id'] = $type_id;
  46. }
  47. $list = Db::name('zzz_huodong')->alias('hd')
  48. ->field('hd.*,user.avatar,user.nickname,user.gender')
  49. ->join('user','hd.user_id = user.id','LEFT')
  50. ->autopage()
  51. ->order('hd.id desc')
  52. ->select();
  53. $list = list_domain_image($list,['image']);
  54. if(!empty($list)){
  55. //我参与的活动ids
  56. $hd_ids = array_column($list,'id');
  57. $my_join_log = Db::name('zzz_hd_joinlog')->where('user_id',$this->auth->id)->where('hd_id','IN',$hd_ids)->column('hd_id');
  58. foreach($list as $key => &$val){
  59. //是否已加入
  60. $val['is_joined'] = 0;
  61. if(in_array($val['id'],$my_join_log)){
  62. $val['is_joined'] = 1;
  63. }
  64. //显示时间
  65. $val['showtime'] = get_last_time($val['createtime']);
  66. }
  67. }
  68. $this->success(1, $list);
  69. }
  70. //活动详情
  71. public function huodong_info(){
  72. $id = input('id',0);
  73. $info = Db::name('zzz_huodong')->alias('hd')
  74. ->field('hd.*,user.avatar,user.nickname,user.gender')
  75. ->join('user','hd.user_id = user.id','LEFT')
  76. ->where('hd.id',$id)
  77. ->find();
  78. $info = info_domain_image($info,['image']);
  79. //是否已加入
  80. $info['is_joined'] = 0;
  81. $my_join_log = Db::name('zzz_hd_joinlog')->where('user_id',$this->auth->id)->where('hd_id',$id)->find();
  82. if($my_join_log){
  83. $info['is_joined'] = 1;
  84. }
  85. //显示时间
  86. $info['showtime'] = get_last_time($info['createtime']);
  87. $this->success(1, $info);
  88. }
  89. //活动报名
  90. public function huodong_join(){
  91. $id = input('id',0);
  92. $my_join_log = Db::name('zzz_hd_joinlog')->where('user_id',$this->auth->id)->where('hd_id',$id)->find();
  93. if($my_join_log){
  94. $this->error('不能重复报名');
  95. }
  96. $data = [
  97. 'hd_id' => $id,
  98. 'user_id' => $this->auth->id,
  99. 'createtime' => time(),
  100. ];
  101. Db::name('zzz_hd_joinlog')->insertGetId($data);
  102. $this->success();
  103. }
  104. //我发起的
  105. public function huodong_myfabu(){
  106. $where = [];
  107. $where['hd.user_id'] = $this->auth->id;
  108. $list = Db::name('zzz_huodong')->alias('hd')
  109. ->field('hd.*,user.avatar,user.nickname,user.gender')
  110. ->join('user','hd.user_id = user.id','LEFT')
  111. ->autopage()
  112. ->order('hd.id desc')
  113. ->select();
  114. $list = list_domain_image($list,['image']);
  115. if(!empty($list)){
  116. //我参与的活动ids
  117. $hd_ids = array_column($list,'id');
  118. $my_join_log = Db::name('zzz_hd_joinlog')->where('user_id',$this->auth->id)->where('hd_id','IN',$hd_ids)->column('hd_id');
  119. foreach($list as $key => &$val){
  120. //是否已加入
  121. $val['is_joined'] = 0;
  122. if(in_array($val['id'],$my_join_log)){
  123. $val['is_joined'] = 1;
  124. }
  125. //显示时间
  126. $val['showtime'] = get_last_time($val['createtime']);
  127. }
  128. }
  129. $this->success(1, $list);
  130. }
  131. //我报名的
  132. public function huodong_myjoin(){
  133. $where = [];
  134. $my_join_log = Db::name('zzz_hd_joinlog')->where('user_id',$this->auth->id)->column('hd_id');
  135. $where['hd.id'] = ['IN',$my_join_log];
  136. $list = Db::name('zzz_huodong')->alias('hd')
  137. ->field('hd.*,user.avatar,user.nickname,user.gender')
  138. ->join('user','hd.user_id = user.id','LEFT')
  139. ->autopage()
  140. ->order('hd.id desc')
  141. ->select();
  142. $list = list_domain_image($list,['image']);
  143. if(!empty($list)){
  144. foreach($list as $key => &$val){
  145. $val['is_joined'] = 1;
  146. //显示时间
  147. $val['showtime'] = get_last_time($val['createtime']);
  148. }
  149. }
  150. $this->success(1, $list);
  151. }
  152. //某活动的报名人员列表
  153. public function huodong_joinuser(){
  154. $id = input('id',0);
  155. $list = Db::name('zzz_hd_joinlog')->alias('log')
  156. ->field('log.*,user.avatar,user.nickname,user.gender')
  157. ->where('hd_id',$id)->select();
  158. $this->success(1, $list);
  159. }
  160. //取消报名
  161. public function huodong_join_cancel(){
  162. $id = input('id',0);
  163. Db::name('zzz_hd_joinlog')
  164. ->where('user_id',$this->auth->id)
  165. ->where('hd_id',$id)->delete();
  166. $this->success();
  167. }
  168. }