截流自动化的商城平台
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.

DistributionValidate.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. namespace app\api\validate;
  3. use app\admin\logic\distribution\DistributionSettingLogic;
  4. use app\admin\logic\setting\UserLogic;
  5. use app\common\model\distribution\Distribution;
  6. use app\common\server\ConfigServer;
  7. use think\Validate;
  8. use app\common\model\distribution\DistributionMemberApply;
  9. use app\common\model\user\User;
  10. class DistributionValidate extends Validate
  11. {
  12. protected $rule = [
  13. 'user_id' => 'require|apply',
  14. 'real_name' => 'require',
  15. 'mobile' => 'require|mobile',
  16. 'province' => 'require|number',
  17. 'city' => 'require|number',
  18. 'district' => 'require|number',
  19. 'reason' => 'require',
  20. 'code' => 'require|checkCode',
  21. ];
  22. protected $message = [
  23. 'user_id.require' => '无法获取用户ID',
  24. 'real_name.require' => '请填写真实姓名',
  25. 'mobile.require' => '请填写手机号',
  26. 'mobile.mobile' => '请填写正确的手机号码',
  27. 'province.require' => '请填写省份',
  28. 'province.number' => '省份需为数字代号',
  29. 'city.require' => '请填写城市',
  30. 'city.number' => '城市须为数字代号',
  31. 'district.require' => '请填写县区',
  32. 'district.number' => '县区段为数字代号',
  33. 'reason.require' => '请填写申请原因',
  34. 'code.require' => '请填写邀请码',
  35. ];
  36. /**
  37. * 申请分销会员场景
  38. */
  39. public function sceneApply()
  40. {
  41. return $this->only(['user_id','real_name','mobile','province','city','district','reason']);
  42. }
  43. /**
  44. * 填写邀请码
  45. */
  46. public function sceneCode()
  47. {
  48. return $this->only(['code']);
  49. }
  50. /**
  51. * 判断当前用户是否有待审核的申请记录
  52. */
  53. public function apply($value, $rule, $data)
  54. {
  55. $where = [
  56. 'user_id' => $value,
  57. 'status' => 0, // 审核中
  58. ];
  59. $apply = DistributionMemberApply::where($where)->findOrEmpty();
  60. if($apply->isEmpty()) {
  61. return true;
  62. }
  63. return '正在审核中,请勿重复提交申请';
  64. }
  65. /**
  66. * 邀请码验证
  67. */
  68. public function checkCode($value, $rule, $data)
  69. {
  70. $config = UserLogic::getConfig();
  71. // 总开关
  72. $config['switch'] = ConfigServer::get('distribution', 'is_open');
  73. if(!$config['switch']) {
  74. return '系统已关闭分销功能,无法邀请粉丝';
  75. }
  76. if(!$config['is_open']) {
  77. return '系统已关闭邀请功能';
  78. }
  79. $user = User::where(['id'=>$data['user_id'], 'del'=>0])->findOrEmpty();
  80. if($user->isEmpty()) {
  81. return '无法获取当前用户信息';
  82. }
  83. if(!empty($user['first_leader'])) {
  84. return '已有邀请人';
  85. }
  86. $firstLader = User::field('id,is_distribution,level,ancestor_relation,user_delete')
  87. ->where('distribution_code', $value)
  88. ->findOrEmpty();
  89. if($firstLader->isEmpty() || $firstLader->user_delete) {
  90. return '无效的邀请码';
  91. }
  92. if($firstLader['id'] == $data['user_id']) {
  93. return '不能填自己的邀请码';
  94. }
  95. // qualifications-邀请资格 【1-全部用户 2-指定等级用户】
  96. $invite_appoint_user = ConfigServer::get('invite', 'invite_appoint_user', []);
  97. if(in_array(2, $config['qualifications']) && !in_array($firstLader['level'],$invite_appoint_user)) {
  98. return '邀请下级资格未达到要求';
  99. }
  100. // 如果当前用户id出现在邀请人的祖先链路中,代表当前用户是已经是邀请人的上级或祖先级,同时意味着邀请人是当前用户的后代级别
  101. // 不能将自己的上级设置为自己的后代级用户
  102. $ancestorArr = explode(',', $firstLader['ancestor_relation']);
  103. if(!empty($ancestorArr) && in_array($data['user_id'], $ancestorArr)) {
  104. return '不能填写自己下级的邀请码';
  105. }
  106. return true;
  107. }
  108. }