截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Distribution.php 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\DistributionLogic;
  4. use app\common\basics\Api;
  5. use app\common\server\JsonServer;
  6. use think\exception\ValidateException;
  7. use app\api\validate\DistributionValidate;
  8. use app\common\model\user\User;
  9. use think\response\Json;
  10. use app\common\model\distribution\Distribution as DistributionModel;
  11. class Distribution extends Api
  12. {
  13. public $like_not_need_login = ['fixAncestorRelation'];
  14. /**
  15. * 申请分销会员
  16. */
  17. public function apply()
  18. {
  19. if($this->request->isPost()){
  20. $post = $this->request->post();
  21. $post['user_id'] = $this->user_id;
  22. try{
  23. validate(DistributionValidate::class)->scene('apply')->check($post);
  24. }catch(ValidateException $e) {
  25. return JsonServer::error($e->getError());
  26. }
  27. $result = DistributionLogic::apply($post);
  28. if($result) {
  29. return JsonServer::success('申请成功');
  30. }
  31. return JsonServer::error('申请失败');
  32. }else{
  33. return JsonServer::error('请求方式错误');
  34. }
  35. }
  36. /**
  37. * 判断是否为分销会员
  38. */
  39. public function check()
  40. {
  41. $distribution = DistributionModel::where('user_id', $this->user_id)->findOrEmpty()->toArray();
  42. if (!empty($distribution) && $distribution['is_distribution'] == 1) {
  43. return JsonServer::success('分销会员', [], 10001);
  44. }
  45. return JsonServer::success('非分销会员', [], 20001);
  46. }
  47. /**
  48. * 最新分销申请详情
  49. */
  50. public function applyDetail()
  51. {
  52. return JsonServer::success('获取成功', DistributionLogic::applyDetail($this->user_id));
  53. }
  54. /**
  55. * 分销主页
  56. */
  57. public function index()
  58. {
  59. return JsonServer::success('获取成功', DistributionLogic::index($this->user_id));
  60. }
  61. /**
  62. * 填写邀请码
  63. */
  64. public function code()
  65. {
  66. $code = $this->request->post('code');
  67. $data = [
  68. 'user_id' => $this->user_id,
  69. 'code' => $code,
  70. ];
  71. try{
  72. validate(DistributionValidate::class)->scene('code')->check($data);
  73. }catch(ValidateException $e){
  74. return JsonServer::error($e->getError(), [], 0, 0);
  75. }
  76. $result = DistributionLogic::code($data);
  77. if($result) {
  78. return JsonServer::success('绑定上级成功');
  79. }
  80. return JsonServer::error(DistributionLogic::getError(), [], 0, 0);
  81. }
  82. /**
  83. * 分销订单
  84. */
  85. public function order()
  86. {
  87. $get = $this->request->get();
  88. $get['user_id'] = $this->user_id;
  89. $get['page_no'] = $this->page_no;
  90. $get['page_size'] = $this->page_size;
  91. return JsonServer::success('获取成功', DistributionLogic::order($get));
  92. }
  93. /**
  94. * 月度账单
  95. */
  96. public function monthBill()
  97. {
  98. $get = $this->request->get();
  99. $get['page_no'] = $this->page_no;
  100. $get['page_size'] = $this->page_size;
  101. $get['user_id'] = $this->user_id;
  102. return JsonServer::success('获取成功', DistributionLogic::monthBill($get));
  103. }
  104. /**
  105. * 月度账单明细
  106. */
  107. public function monthDetail()
  108. {
  109. $get = $this->request->get();
  110. if(!isset($get['year'])) {
  111. return JsonServer::error('年份参数不存在');
  112. }
  113. if(!isset($get['month'])) {
  114. return JsonServer::error('月份参数不存在');
  115. }
  116. $get['page_no'] = $this->page_no;
  117. $get['page_size'] = $this->page_size;
  118. $get['user_id'] = $this->user_id;
  119. return JsonServer::success('获取成功', DistributionLogic::monthDetail($get));
  120. }
  121. /**
  122. * 自身及上级信息
  123. */
  124. public function myLeader()
  125. {
  126. return JsonServer::success('获取成功', DistributionLogic::myLeader($this->user_id));
  127. }
  128. /**
  129. * @Notes: 佣金明细
  130. * @Author: 张无忌
  131. */
  132. public function commission()
  133. {
  134. $get = $this->request->get();
  135. $lists = DistributionLogic::commission($get, $this->user_id);
  136. if ($lists === false) {
  137. $message = DistributionLogic::getError() ?: '获取失败';
  138. return JsonServer::error($message);
  139. }
  140. return JsonServer::success('获取成功', $lists);
  141. }
  142. /**
  143. * 修复旧的关系链
  144. */
  145. public function fixAncestorRelation()
  146. {
  147. $result = DistributionLogic::fixAncestorRelation();
  148. if ($result) {
  149. return JsonServer::success('修复成功');
  150. }
  151. return JsonServer::error(DistributionLogic::getError());
  152. }
  153. /**
  154. * @notes 获取背景海报
  155. * @return Json
  156. * @author cjhao
  157. * @date 2021/11/29 11:35
  158. */
  159. public function getPoster()
  160. {
  161. $result = DistributionLogic::getPoster();
  162. return JsonServer::success('',$result);
  163. }
  164. }