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

MemberValidate.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\validate\distribution;
  20. use think\Validate;
  21. use app\common\model\user\User;
  22. class MemberValidate extends Validate
  23. {
  24. protected $rule = [
  25. // 添加分销会员
  26. 'sn' => 'require|max:10',
  27. 'remarks' => 'max:100',
  28. // 更新上级
  29. 'user_id' => 'require',
  30. 'change_type' => 'require',
  31. 'referrer_sn' => 'requireIf:change_type,appoint|checkReferrer',
  32. // 冻结、解冻资格/ 审核分销会员
  33. 'id' => 'require',
  34. 'type' => 'require',
  35. ];
  36. protected $message = [
  37. 'sn.require' => '请输入会员编号',
  38. 'sn.max' => '会员编号不能超过10个字符',
  39. 'remarks.max' => '备注不能超过100个字符',
  40. 'user_id.require' => '会员id不能为空',
  41. 'change_type.require' => '调整方式不能为空',
  42. 'referrer_sn.requireIf' => '指定上级不能为空',
  43. 'id.require' => '请输入会员id',
  44. 'type.require' => '请输入类型',
  45. ];
  46. public function sceneAdd()
  47. {
  48. return $this->only(['sn', 'remarks']);
  49. }
  50. public function sceneUpdateLeader()
  51. {
  52. return $this->only(['user_id', 'change_type', 'referrer_sn']);
  53. }
  54. public function sceneFreeze()
  55. {
  56. return $this->only(['id', 'type']);
  57. }
  58. public function sceneAudit()
  59. {
  60. return $this->only(['id', 'type']);
  61. }
  62. public function checkReferrer($value, $rule, $data)
  63. {
  64. if (empty($value) && $data['change_type'] == 'clear'){
  65. return true;
  66. }
  67. $referrer = User::where('sn', $value)->findOrEmpty();
  68. if ($referrer->isEmpty()){
  69. return '推荐人不存在';
  70. }
  71. $referrer = $referrer->toArray();
  72. if ($referrer['id'] == $data['user_id']){
  73. return '上级推荐人不能是自己';
  74. }
  75. if ($referrer['is_distribution'] == 0){
  76. return '对方不是分销会员';
  77. }
  78. $ancestor_relation = explode(',', $referrer['ancestor_relation']);
  79. if (!empty($ancestor_relation) && in_array($data['user_id'], $ancestor_relation)) {
  80. return '推荐人不能是自己的任意下级';
  81. }
  82. return true;
  83. }
  84. }