SheAvcitity.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\AcitivityOrder;
  5. use app\common\model\MeetingModel;
  6. use app\common\model\MeetingOrder;
  7. use app\common\model\OfficeModel;
  8. use app\common\model\Park;
  9. use app\common\model\SheActivityModel;
  10. use think\Db;
  11. /**
  12. * 社群活动
  13. */
  14. class SheAvcitity extends Api
  15. {
  16. protected $noNeedLogin = ['acvitityLists', 'Info', 'listInfo', 'qustion', 'qustionInfo', 'buildInfo', 'protable', 'trueTime', 'chooseTime', 'GgInfo'];
  17. protected $noNeedRight = ['*'];
  18. /**
  19. * 活动添加
  20. * @ApiMethod (POST)
  21. * @param string $title 标题
  22. * @param string $address 活动地址
  23. * @param string $start_time 开始时间
  24. * @param string $end_time 结束时间
  25. * @param string $num 活动人数
  26. * @param string $phone 手机号
  27. * @param string $mianfei 是否免费1是2不是
  28. * @param string $price 收费价格
  29. * @param string $image 活动封面
  30. * @param string $notice 活动详情
  31. * @param string $images 活动多图
  32. */
  33. public function add()
  34. {
  35. $data = $this->request->post();
  36. if (empty($data['title'])) return $this->error('请输入活动标题');
  37. if (empty($data['address'])) return $this->error('请输入活动地址');
  38. if (empty($data['start_time'])) return $this->error('请输入活动开始时间');
  39. if (empty($data['end_time'])) return $this->error('请输入活动结束时间');
  40. if (!strtotime($data['start_time'])) return $this->error('开始活动时间格式不正确');
  41. if (!strtotime($data['end_time'])) return $this->error('结束活动时间格式不正确');
  42. if (empty($data['num'])) return $this->error('请输入活动人数');
  43. if (empty($data['phone'])) return $this->error('请输入联系方式');
  44. if (!preg_match("/^[1-9][0-9]*$/", $data['num'])) return $this->error('活动人数为正整数');
  45. if (!preg_match("/^1[34578]\d{9}$/", $data['phone'])) return $this->error('手机号格式不正确');
  46. if (strtotime($data['end_time']) <= strtotime($data['start_time'])) return $this->error('结束时间不能小于开始时间');
  47. $user = $this->auth->getUser();
  48. if ($user['level'] != 1) return $this->error('暂无权限发布活动');
  49. $data['uid'] = $user['id'];
  50. $data['switch'] = 1;
  51. $data['create_time'] = date('Y-m-d H:i:s', time());
  52. $data['number'] = date('Y', time()) . date('m', time()) . date('d', time()) . 'NO' . rand(0, 10000);
  53. $sheActivityModel = new SheActivityModel();
  54. $save = $sheActivityModel->allowField(true)->save($data);
  55. if ($save) {
  56. return $this->success('提交成功');
  57. } else {
  58. return $this->error('提交失败');
  59. }
  60. }
  61. /**
  62. * 活动列表
  63. */
  64. public function acvitityLists()
  65. {
  66. $page = $this->request->get('page');
  67. $limit = $this->request->get('limit');
  68. if (!$page) {
  69. $pages = '0,10';
  70. } else {
  71. $page = $page - 1;
  72. if ($page < 0) $page = 0;
  73. $pages = $page . ',' . $limit;
  74. }
  75. $sheActivityModel = new SheActivityModel();
  76. $user = $this->auth->getUser();
  77. $where = [];
  78. if ($user) $where['u.p_id'] = $user['p_id'];
  79. $data = $sheActivityModel->alias('a')
  80. // ->with(['user' => function ($query) use ($where) {
  81. // $query->where($where);
  82. // $query->field('id,p_id');
  83. // }])
  84. ->join('user u','a.uid=u.id',"left")
  85. ->where($where)
  86. ->limit($pages)
  87. ->order('create_time desc')
  88. ->field('a.*')
  89. ->select()->toArray();
  90. // dump($data);die;
  91. $time = date('Y-m-d H:i:s', time());
  92. foreach ($data as $k => $v) {
  93. if ($time < $v['start_time']) {
  94. $data[$k]['status'] = '0';
  95. $data[$k]['status_str'] = '未开始';
  96. }
  97. if ($time > $v['start_time'] && $time < $v['end_time']) {
  98. $data[$k]['status'] = '1';
  99. $data[$k]['status_str'] = '报名中';
  100. }
  101. if ($time > $v['end_time']) {
  102. $data[$k]['status'] = '3';
  103. $data[$k]['status_str'] = '报名结束';
  104. }
  105. // if (!$v['user']) {
  106. // unset($data[$k]);
  107. // } else {
  108. $order = AcitivityOrder::where('a_id',$v['id'])->column('uid');
  109. $str = implode(',',$order);
  110. $data[$k]['users'] = Db::name('user')->where('id','in',$str)->field('id,avatar')->select();
  111. unset($order);
  112. // }
  113. }
  114. // return $this->success('', $data);
  115. return json(['code'=>1,'data'=>$data]);
  116. }
  117. /**
  118. * 活动详情
  119. *
  120. * @param string $id 活动id
  121. */
  122. public function Info()
  123. {
  124. $id = $this->request->get('id');
  125. if (!$id) return $this->error('参数错误');
  126. $sheActivityModel = new SheActivityModel();
  127. $user = $this->auth->getUser();
  128. $data = $sheActivityModel
  129. ->where('id', $id)
  130. ->order('create_time desc')
  131. ->find();
  132. $time = date('Y-m-d H:i:s', time());
  133. if ($time < $data['start_time']) {
  134. $data['status'] = '0';
  135. $data['status_str'] = '未开始';
  136. }
  137. if ($time > $data['start_time'] && $time < $data['end_time']) {
  138. $data['status'] = '1';
  139. $data['status_str'] = '报名中';
  140. }
  141. if ($time > $data['end_time']) {
  142. $data['status'] = '3';
  143. $data['status_str'] = '报名结束';
  144. }
  145. // if (!$v['user']) {
  146. // unset($data[$k]);
  147. // } else {
  148. $order = AcitivityOrder::where('a_id',$data['id'])->column('uid');
  149. $str = implode(',',$order);
  150. $data['users'] = Db::name('user')->where('id','in',$str)->field('id,avatar')->select();
  151. $data['baoming_status'] = 0;
  152. $isset = AcitivityOrder::where('uid',$user['id'])->where('a_id',$data['id'])->find();
  153. if ($isset) {
  154. $data['baoming_status'] = 1;
  155. }
  156. $data['collection'] = 0;
  157. $isset = Db::name('user_collection')->where('uid',$user['id'])->where('a_id',$data['id'])->find();
  158. if ($isset) {
  159. $data['collection'] = 1;
  160. }
  161. return $this->success('', $data);
  162. }
  163. /**
  164. * 判断是否需要完善资料
  165. *
  166. */
  167. public function isWanshan()
  168. {
  169. $user = $this->auth->getUser();
  170. $wanshan = 1;
  171. if ($user['group_id'] == 0) {
  172. if (empty($user['company']) || empty($user['position'])) {
  173. $wanshan = 0;
  174. }
  175. } else {
  176. if (empty($user['company'])) {
  177. $wanshan = 0;
  178. }
  179. if ($user['shenhe_status'] == 0 || $user['shenhe_status'] == 1 || $user['shenhe_status'] == 3) {
  180. $wanshan = 0;
  181. }
  182. }
  183. return $this->success('', $wanshan);
  184. }
  185. /**
  186. * 活动报名
  187. *
  188. * @param string $id 活动id
  189. */
  190. public function order()
  191. {
  192. $id = $this->request->get('id');
  193. if (!$id) return $this->error('参数错误');
  194. $user = $this->auth->getUser();
  195. $sheActivityModel = new SheActivityModel();
  196. $info = $sheActivityModel
  197. ->where('id', $id)
  198. ->order('create_time desc')
  199. ->find();
  200. $time = date('Y-m-d H:i:s', time());
  201. if (time() >= strtotime($info['end_time'])) return $this->error('活动已过期');
  202. if (strtotime($info['start_time']) > time()) return $this->error('活动未开始');
  203. if ($info['num_count'] + 1 > $info['num']) return $this->error('报名人数已经满了');
  204. $data = [
  205. 'uid' => $user['id'],
  206. 'a_id' => $info['id'],
  207. 'title' => $info['title'],
  208. 'address' => $info['address'],
  209. 'start_time' => $info['start_time'],
  210. 'end_time' => $info['end_time'],
  211. 'create_time' => $time,
  212. 'number' => date('Y', time()) . date('m', time()) . date('d', time()) . 'NO' . rand(0, 10000),
  213. ];
  214. $model = new AcitivityOrder();
  215. $add = $model->allowField(true)->save($data);
  216. if ($add) {
  217. $id = $model->getLastInsID();
  218. $sheActivityModel->where('id',$info['id'])->update(['num_count' => $info['num_count'] +1 ]);
  219. return $this->success('报名成功', ['id' => $id]);
  220. } else {
  221. return $this->error('报名失败');
  222. }
  223. }
  224. /**
  225. * 报名详情
  226. *
  227. * @param string $id 订单id
  228. *
  229. */
  230. public function orderInfo()
  231. {
  232. $id = $this->request->get('id');
  233. if (!$id) return $this->error('参数错误');
  234. $model = new AcitivityOrder();
  235. $user = $this->auth->getUser();
  236. $data = $model->where('id',$id)->where('uid',$user['id'])->find();
  237. return $this->success('',$data);
  238. }
  239. /**
  240. * 活动收藏
  241. *
  242. * @param string $id 活动id
  243. *
  244. */
  245. public function collection()
  246. {
  247. $id = $this->request->get('id');
  248. if (!$id) return $this->error('参数错误');
  249. $user = $this->auth->getUser();
  250. $data = [
  251. 'a_id' => $id,
  252. 'uid' => $user['id'],
  253. 'create_time' => date('Y-m-d H:i:s',time()),
  254. ];
  255. $add = Db::name('user_collection')->insert($data);
  256. if ($add) {
  257. return $this->success('收藏成功');
  258. } else {
  259. return $this->error('收藏失败');
  260. }
  261. }
  262. /**
  263. * 取消收藏
  264. *
  265. * @param string $id 活动id
  266. *
  267. */
  268. public function collectionFalse()
  269. {
  270. $id = $this->request->get('id');
  271. if (!$id) return $this->error('参数错误');
  272. $user = $this->auth->getUser();
  273. $where['a_id'] = $id;
  274. $where['uid'] = $user['id'];
  275. $del = Db::name('user_collection')->where($where)->delete();
  276. if ($del) {
  277. return $this->success('成功');
  278. } else {
  279. return $this->error('失败');
  280. }
  281. }
  282. }