截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

UserDeleteLogic.php 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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\api\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\AfterSaleEnum;
  22. use app\common\enum\OrderEnum;
  23. use app\common\enum\WithdrawEnum;
  24. use app\common\model\AfterSale;
  25. use app\common\model\distribution\Distribution;
  26. use app\common\model\FootprintRecord;
  27. use app\common\model\goods\GoodsComment;
  28. use app\common\model\kefu\ChatRelation;
  29. use app\common\model\order\Order;
  30. use app\common\model\Session;
  31. use app\common\model\user\User;
  32. use app\common\model\user\UserAuth;
  33. use app\common\model\WithdrawApply;
  34. use think\facade\Db;
  35. use think\facade\Log;
  36. class UserDeleteLogic extends Logic
  37. {
  38. /**
  39. * @notes 检测是否可注销
  40. * @param $user_id
  41. * @return int[]
  42. * @author lbzy
  43. * @datetime 2023-08-21 16:37:38
  44. */
  45. static function checkCanDelete($user_id) : array
  46. {
  47. $order_status = [
  48. OrderEnum::ORDER_STATUS_NO_PAID,
  49. OrderEnum::ORDER_STATUS_DELIVERY,
  50. OrderEnum::ORDER_STATUS_GOODS,
  51. ];
  52. $after_status = [
  53. AfterSaleEnum::STATUS_ING,
  54. AfterSaleEnum::STATUS_GOODS_RETURNED,
  55. AfterSaleEnum::STATUS_RECEIVE_GOODS,
  56. ];
  57. $withdraw_status = [
  58. WithdrawEnum::STATUS_ING,
  59. WithdrawEnum::STATUS_WAIT,
  60. ];
  61. $status = User::where('id', $user_id)->where('del', 0)->value('disable') == 0 ? 1 : 0;
  62. $order = Order::where('user_id', $user_id)->where('del', 0)->where('order_status', 'IN', $order_status)->value('id') ? 0 : 1;
  63. $after_sale = AfterSale::where('user_id', $user_id)->where('del', 0)->where('status', 'IN', $after_status)->value('id') ? 0 : 1;
  64. $withdraw = WithdrawApply::where('user_id', $user_id)->where('status', 'in', $withdraw_status)->value('id') ? 0 : 1;
  65. $result = [
  66. 'data' => [
  67. // 是否冻结
  68. 'status' => [
  69. 'pass' => $status,
  70. 'msg' => $status ? '通过' : '账号冻结中,无法申请注销',
  71. ],
  72. // 是否有未完成订单
  73. 'order' => [
  74. 'pass' => $order,
  75. 'msg' => $order ? '通过' : '存在未完成订单,无法申请注销',
  76. ],
  77. // 是否有售后处理中
  78. 'after_sale' => [
  79. 'pass' => $after_sale,
  80. 'msg' => $after_sale ? '通过' : '存在售后订单,无法申请注销',
  81. ],
  82. // 提现申请
  83. 'withdraw' => [
  84. 'pass' => $withdraw,
  85. 'msg' => $withdraw ? '通过' : '存在佣金待提现申请,无法申请注销',
  86. ],
  87. ],
  88. 'pass' => 1,
  89. 'msg' => '通过',
  90. ];
  91. foreach ($result['data'] as $info) {
  92. if ($info['pass'] == 0) {
  93. $result['pass'] = 0;
  94. $result['msg'] = $info['msg'];
  95. break;
  96. }
  97. }
  98. return $result;
  99. }
  100. /**
  101. * @notes 确定注销
  102. * @param $user_id
  103. * @return bool|string
  104. * @author lbzy
  105. * @datetime 2023-08-21 16:47:13
  106. */
  107. static function sureDelete($user_id)
  108. {
  109. $check = static::checkCanDelete($user_id);
  110. if ($check['pass'] == 0) {
  111. return $check['msg'];
  112. }
  113. try {
  114. Db::startTrans();
  115. // 用户数据
  116. User::update([
  117. 'user_delete' => 1,
  118. 'disable' => 1,
  119. 'account' => '',
  120. 'password' => '',
  121. 'pay_password' => '',
  122. 'mobile' => '',
  123. 'first_leader' => 0,
  124. 'second_leader' => 0,
  125. 'third_leader' => 0,
  126. 'ancestor_relation' => '',
  127. 'is_distribution' => 0,
  128. 'freeze_distribution' => 1,
  129. // 'distribution_code' => '',
  130. ], [ [ 'id', '=', $user_id ] ]);
  131. // 用户openid unionid
  132. UserAuth::destroy(function ($query) use ($user_id) {
  133. $query->where('user_id', $user_id);
  134. });
  135. // 用户token
  136. Session::destroy(function ($query) use ($user_id) {
  137. $query->where('user_id', $user_id);
  138. });
  139. // 用户客服
  140. ChatRelation::destroy(function ($query) use ($user_id) {
  141. $query->where('user_id', $user_id);
  142. });
  143. // 用户分销关系清除
  144. User::update([ 'first_leader' => 0, 'second_leader' => 0, 'third_leader' => 0 ], [ [ 'first_leader', '=', $user_id ] ]);
  145. User::update([ 'second_leader' => 0, 'third_leader' => 0 ], [ [ 'second_leader', '=', $user_id ] ]);
  146. User::update([ 'third_leader' => 0 ], [ [ 'third_leader', '=', $user_id ] ]);
  147. // 分销冻结
  148. Distribution::update([
  149. 'is_distribution' => 0,
  150. 'is_freeze' => 1,
  151. ], [ [ 'user_id', '=', $user_id ] ]);
  152. // 足迹气泡
  153. FootprintRecord::destroy(function ($query) use ($user_id) {
  154. $query->where('user_id', $user_id);
  155. });
  156. // 商品评论
  157. GoodsComment::destroy(function ($query) use ($user_id) {
  158. $query->where('user_id', $user_id);
  159. });
  160. Db::commit();
  161. return true;
  162. } catch(\Throwable $e) {
  163. static::$error = $e->getMessage();
  164. Db::rollback();
  165. Log::write($e->__toString(), 'user_delete_error');
  166. return $e->getMessage();
  167. }
  168. }
  169. }