截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

UserValidate.php 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <?php
  2. namespace app\admin\validate\user;
  3. use app\common\model\user\User;
  4. use think\Validate;
  5. class UserValidate extends Validate
  6. {
  7. protected $rule = [
  8. 'tag_ids' => 'require',
  9. 'user_ids' => 'require|checkIds',
  10. 'nickname' => 'require',
  11. 'avatar' => 'require',
  12. 'mobile' => 'mobile',
  13. 'id' => 'require|checkId',
  14. 'type' => 'require|checkData',
  15. 'integral_remark' => 'max:100',
  16. 'earnings_remark' => 'max:100',
  17. 'money_remark' => 'max:100',
  18. 'growth_remark' => 'max:100',
  19. 'disable'=> 'require|in:0,1'
  20. ];
  21. protected $message = [
  22. 'tag_ids.require' => '请选择会员标签',
  23. 'user_ids.require' => '请先选择用户',
  24. 'nickname.require' => '请填写用户昵称',
  25. 'avatar.require' => '请选择用户头像',
  26. 'mobile.mobile' => '手机号码格式错误',
  27. 'id.require' => '请选择要调整的用户',
  28. 'type.require' => '调整类型参数缺失',
  29. 'integral_remark.max' => '备注不能超过100个字符',
  30. 'earnings_remark.max' => '备注不能超过100个字符',
  31. 'money_remark.max' => '备注不能超过100个字符',
  32. 'growth_remark.max' => '备注不能超过100个字符',
  33. 'disable.require' => '请选择禁用状态',
  34. 'disable.in' => '禁用状态参数错误',
  35. ];
  36. public function sceneSetTag()
  37. {
  38. return $this->only(['tag_ids', 'user_ids']);
  39. }
  40. public function sceneEdit()
  41. {
  42. return $this->only(['id','nickname', 'avatar', 'mobile', 'disable']);
  43. }
  44. public function sceneAdjustAccount()
  45. {
  46. return $this->only([
  47. 'type','id', 'money_remark', 'growth_remark', 'integral_remark', 'earnings_remark',
  48. ]);
  49. }
  50. function checkId($value, $rule, $data)
  51. {
  52. if (User::UserIsDelete($value) && (request()->isAjax() || request()->isPost())) {
  53. return '用户已注销,不能操作';
  54. }
  55. return true;
  56. }
  57. function checkIds($ids, $rule, $data)
  58. {
  59. foreach ($ids as $id) {
  60. if (User::UserIsDelete($id) && (request()->isAjax() || request()->isPost())) {
  61. return '用户已注销,不能操作';
  62. }
  63. }
  64. return true;
  65. }
  66. /**
  67. * @notes 验证调整数据
  68. * @param $value
  69. * @param $rule
  70. * @param $data
  71. * @return bool|string
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\DbException
  74. * @throws \think\db\exception\ModelNotFoundException
  75. * @author 段誉
  76. * @date 2022/3/16 10:49
  77. */
  78. protected function checkData($value, $rule, $data)
  79. {
  80. $user = User::where(['del' => 0, 'id' => $data['id']])->find();
  81. if (empty($user)) {
  82. return '该用户不存在';
  83. }
  84. if (!isset($data['money_handle']) && !isset($data['integral_handle'])
  85. && !isset($data['growth_handle']) && !isset($data['earnings_handle'])) {
  86. return '请选择调整的类型';
  87. }
  88. switch ($value) {
  89. case 'money':
  90. $result = $this->checkMoney($data, $user);
  91. break;
  92. case 'integral':
  93. $result = $this->checkIntegral($data, $user);
  94. break;
  95. case 'growth':
  96. $result = $this->checkGrowth($data, $user);
  97. break;
  98. case 'earnings':
  99. $result = $this->checkEarnings($data, $user);
  100. break;
  101. default:
  102. $result = '账户调整类型错误';
  103. }
  104. return $result;
  105. }
  106. /**
  107. * @notes 验证金额
  108. * @param $data
  109. * @param $user
  110. * @return bool|string
  111. * @author 段誉
  112. * @date 2022/3/16 10:49
  113. */
  114. protected function checkMoney($data, $user)
  115. {
  116. if (empty($data['money'])) {
  117. return '请输入大于0的调整余额';
  118. }
  119. if ($data['money'] < 0) {
  120. return '调整余额必须大于零';
  121. }
  122. //验证扣减余额操作
  123. if ($data['money_handle'] == 0) {
  124. //用户余额不足
  125. if ($data['money'] > $user['user_money']) {
  126. return '用户余额仅剩下' . $user['user_money'] . '元';
  127. }
  128. }
  129. if (empty($data['money_remark'])) {
  130. return '请输入调整余额备注';
  131. }
  132. return true;
  133. }
  134. /**
  135. * @notes 验证积分
  136. * @param $data
  137. * @param $user
  138. * @return bool|string
  139. * @author 段誉
  140. * @date 2022/3/16 10:49
  141. */
  142. protected function checkIntegral($data, $user)
  143. {
  144. if (empty($data['integral'])) {
  145. return '请输入大于0的调整积分';
  146. }
  147. if ($data['integral'] < 0) {
  148. return '调整积分必须大于零';
  149. }
  150. //验证扣减积分操作
  151. if ($data['integral_handle'] == 0) {
  152. //用户积分不足
  153. if ($data['integral'] > $user['user_integral']) {
  154. return '用户积分仅剩下' . $user['user_integral'] . '分';
  155. }
  156. }
  157. if (empty($data['integral_remark'])) {
  158. return '请输入调整积分备注';
  159. }
  160. return true;
  161. }
  162. /**
  163. * @notes 验证成长值
  164. * @param $data
  165. * @param $user
  166. * @return bool|string
  167. * @author 段誉
  168. * @date 2022/3/16 10:50
  169. */
  170. protected function checkGrowth($data, $user)
  171. {
  172. if (empty($data['growth'])) {
  173. return '请输入大于0的调整成长值';
  174. }
  175. if ($data['growth'] < 0) {
  176. return '成长值必须大于零';
  177. }
  178. //验证扣减成长值操作
  179. if ($data['growth_handle'] == 0) {
  180. //用户成长值不足
  181. if ($data['growth'] > $user['user_growth']) {
  182. return '用户成长值仅剩下' . $user['user_growth'];
  183. }
  184. }
  185. if (empty($data['growth_remark'])) {
  186. return '请输入调整成长值备注';
  187. }
  188. return true;
  189. }
  190. /**
  191. * @notes 验证佣金
  192. * @param $data
  193. * @param $user
  194. * @return bool|string
  195. * @author 段誉
  196. * @date 2022/3/16 10:50
  197. */
  198. protected function checkEarnings($data, $user)
  199. {
  200. if (empty($data['earnings'])) {
  201. return '请输入大于0的调整佣金';
  202. }
  203. if ($data['earnings'] < 0) {
  204. return '调整佣金必须大于零';
  205. }
  206. if (empty($user['earnings'])) {
  207. $user['earnings'] = 0;
  208. }
  209. //验证扣减余额操作
  210. if ($data['earnings_handle'] == 0) {
  211. if ($data['earnings'] > $user['earnings']) {
  212. return '用户佣金仅剩下' . $user['earnings'] . '元';
  213. }
  214. }
  215. if (empty($data['earnings_remark'])) {
  216. return '请输入调整佣金备注';
  217. }
  218. return true;
  219. }
  220. }