Admin.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. namespace app\data\controller\user;
  3. use app\data\service\UserAdminService;
  4. use app\data\service\UserUpgradeService;
  5. use think\admin\Controller;
  6. /**
  7. * 普通用户管理
  8. * Class Admin
  9. * @package app\data\controller\user
  10. */
  11. class Admin extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. private $table = 'DataUser';
  18. /**
  19. * 普通用户管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\DbException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. */
  26. public function index()
  27. {
  28. $this->title = '普通用户管理';
  29. $query = $this->_query($this->table);
  30. // 用户搜索查询
  31. $db = $this->_query('DataUser')->equal('vip_code#from_vipcode')->like('phone#from_phone,username|nickname#from_username')->db();
  32. if ($db->getOptions('where')) $query->whereRaw("pid1 in {$db->field('id')->buildSql()}");
  33. // 数据查询分页
  34. $query->like('phone,username|nickname#username')->equal('status,vip_code');
  35. $query->order('id desc')->dateBetween('create_at')->page();
  36. }
  37. /**
  38. * 数据列表处理
  39. * @param array $data
  40. */
  41. protected function _page_filter(array &$data)
  42. {
  43. $this->upgrades = UserUpgradeService::instance()->levels();
  44. UserAdminService::instance()->buildByUid($data, 'pid1', 'from');
  45. }
  46. /**
  47. * 修改用户上传
  48. * @auth true
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\DbException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. */
  53. public function parent()
  54. {
  55. $data = $this->_vali(['pid.default' => '', 'uid.require' => '待操作UID不能为空']);
  56. if ($data['uid'] === $data['pid']) $this->error('推荐人不能是自己');
  57. if (empty($data['pid'])) {
  58. $map = [['id', '<>', $data['uid']], ['deleted', '=', 0]];
  59. $query = $this->_query($this->table)->where($map)->equal('status,vip_code');
  60. $query->like('phone,username|nickname#username')->dateBetween('create_at')->order('id desc')->page();
  61. } else try {
  62. $user = $this->app->db->name('DataUser')->where(['id' => $data['uid']])->find();
  63. $parent = $this->app->db->name('DataUser')->where(['id' => $data['pid']])->find();
  64. if (empty($user)) $this->error('读取用户数据失败!');
  65. if (empty($parent)) $this->error('读取推荐人数据失败!');
  66. $this->app->db->transaction(function () use ($data, $user, $parent) {
  67. if (empty($parent['vip_code'])) $this->error('推荐人无推荐资格');
  68. if (is_numeric(strpos($parent['path'], "-{$data['uid']}-"))) $this->error('推荐人不能绑下属');
  69. // 组装当前用户上级数据
  70. $path = rtrim($parent['path'] ?: '-', '-') . "-{$parent['id']}-";
  71. // $this->app->db->name('DataUser')->where(['id' => $data['uid']])->update([
  72. // 'pid0' => $parent['id'], 'pid1' => $parent['id'], 'pid2' => $parent['pid1'],
  73. // 'path' => $path, 'layer' => substr_count($path, '-'),
  74. // ]);
  75. // 替换原来用户的下级用户
  76. $newPath = rtrim($path, '-') . "-{$user['id']}-";
  77. $oldPath = rtrim($user['path'], '-') . "-{$user['id']}-";
  78. foreach ($this->app->db->name('DataUser')->whereLike('path', "{$oldPath}%")->cursor() as $vo) {
  79. dump($vo);
  80. }
  81. // $this->app->db->name('DataUser')->whereLike('path', "{$oldPath}%")->update([
  82. // 'path' => $this->app->db->raw("replace(path,'{$oldPath}','{$newPath}')"),
  83. // ]);
  84. // foreach (array_reverse(array_unique(array_merge(str2arr($newPath), str2arr($oldPath)))) as $uid) {
  85. // UserUpgradeService::instance()->upgrade($uid);
  86. // }
  87. });
  88. exit;
  89. $this->success('修改推荐人成功!');
  90. } catch (\think\exception\HttpResponseException $exception) {
  91. throw $exception;
  92. } catch (\Exception $exception) {
  93. $this->error($exception->getMessage());
  94. }
  95. }
  96. /**
  97. * 重算用户余额返利
  98. * @auth true
  99. */
  100. public function sync()
  101. {
  102. $this->_queue('重新计算用户余额返利', 'xdata:UserAmount');
  103. }
  104. /**
  105. * 修改用户状态
  106. * @auth true
  107. * @throws \think\db\exception\DbException
  108. */
  109. public function state()
  110. {
  111. $this->_save($this->table, $this->_vali([
  112. 'status.in:0,1' => '状态值范围异常!',
  113. 'status.require' => '状态值不能为空!',
  114. ]));
  115. }
  116. }