截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Team.php 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\TeamLogic;
  4. use app\api\validate\TeamValidate;
  5. use app\common\basics\Api;
  6. use app\common\model\team\TeamFound;
  7. use app\common\model\team\TeamJoin;
  8. use app\common\server\JsonServer;
  9. use think\exception\ValidateException;
  10. class Team extends Api
  11. {
  12. public $like_not_need_login = ['activity'];
  13. /**
  14. * @Notes: 拼团活动
  15. * @Author: 张无忌
  16. */
  17. public function activity()
  18. {
  19. $get = $this->request->get();
  20. $lists = TeamLogic::activity($get);
  21. if ($lists === false) {
  22. $message = TeamLogic::getError() ?: '获取失败';
  23. return JsonServer::error($message);
  24. }
  25. return JsonServer::success('获取成功', $lists);
  26. }
  27. /**
  28. * @Notes: 开团
  29. * @Author: 张无忌
  30. */
  31. public function kaituan()
  32. {
  33. try{
  34. validate(TeamValidate::class)->scene('check')->check($this->request->post());
  35. }catch(ValidateException $e) {
  36. return JsonServer::error($e->getError(), [], 301);
  37. }
  38. $post = $this->request->post();
  39. $info = TeamLogic::kaituanInfo($post, $this->user_id);
  40. if ($info === false) {
  41. $message = TeamLogic::getError() ?: '获取团信息失败';
  42. return JsonServer::error($message);
  43. }
  44. if ($post['action'] == 'info') {
  45. return JsonServer::success('OK', $info);
  46. }
  47. $res = TeamLogic::kaituan($info, $this->user_info);
  48. if ($res === false) {
  49. $message = TeamLogic::getError() ?: '发起失败';
  50. return JsonServer::error($message);
  51. }
  52. return JsonServer::success('拼团成功', $res);
  53. }
  54. /**
  55. * @Notes: 拼团记录
  56. * @Author: 张无忌
  57. */
  58. public function record()
  59. {
  60. $get = $this->request->get();
  61. $lists = TeamLogic::record($get, $this->user_id);
  62. if ($lists === false) {
  63. $message = TeamLogic::getError() ?: '获取失败';
  64. return JsonServer::error($message);
  65. }
  66. return JsonServer::success('拼团成功', $lists);
  67. }
  68. /**
  69. * @Notes: 验证团信息
  70. * @Author: 张无忌
  71. */
  72. public function check()
  73. {
  74. (new TeamValidate())->goCheck('check');
  75. $post = $this->request->post();
  76. $res = TeamLogic::check($post, $this->user_id);
  77. if ($res === false) {
  78. $message = TeamLogic::getError() ?: '验证失败';
  79. return JsonServer::error($message);
  80. }
  81. return JsonServer::success('验证通过');
  82. }
  83. }