Users.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use comservice\Excel;
  5. use datamodel\AwardRecommend;
  6. use logicmodel\AccountLogic;
  7. use logicmodel\award\Recommend;
  8. use logicmodel\MemberLogic;
  9. use logicmodel\WalletLogic;
  10. use think\Db;
  11. /**
  12. *
  13. *
  14. * @icon fa fa-users
  15. */
  16. class Users extends Backend
  17. {
  18. /**
  19. * Users模型对象
  20. * @var \app\admin\model\Users
  21. */
  22. protected $model = null;
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. $this->model = new \app\admin\model\Users;
  27. $this->view->assign("statusList", $this->model->getStatusList());
  28. $this->view->assign("isDelList", $this->model->getIsDelList());
  29. $this->view->assign("isAuthList", $this->model->getIsAuthList());
  30. }
  31. /**
  32. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  33. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  34. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  35. */
  36. public function import()
  37. {
  38. parent::import();
  39. }
  40. /**
  41. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  42. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  43. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  44. */
  45. /**
  46. * 查看
  47. */
  48. public function index()
  49. {
  50. //当前是否为关联查询
  51. $this->relationSearch = true;
  52. //设置过滤方法
  53. $this->request->filter(['strip_tags', 'trim']);
  54. if ($this->request->isAjax()) {
  55. //如果发送的来源是Selectpage,则转发到Selectpage
  56. if ($this->request->request('keyField')) {
  57. return $this->selectpage();
  58. }
  59. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  60. $list = $this->model
  61. ->where(['is_del'=>0])
  62. ->with(['rank','role'])
  63. ->where($where)
  64. ->order($sort, $order)
  65. ->paginate($limit);
  66. foreach ($list as $row) {
  67. $row->visible(['id','member','nick_name','head_image','phone','status','uuid','total_direct','group_person_count','achievement_money','group_achievement_money','parent_member','create_time','remittance_number','remittance_money','draw_money','draw_number','email','account','trx_address','integral','name','card','is_auth','wallet_address']);
  68. $row->visible(['rank']);
  69. $row->getRelation('rank')->visible(['name']);
  70. $row->visible(['role']);
  71. $row->getRelation('role')->visible(['name']);
  72. }
  73. $result = array("total" => $list->total(), "rows" => $list->items());
  74. return json($result);
  75. }
  76. return $this->view->fetch();
  77. }
  78. public function add()
  79. {
  80. if(request()->isPost()){
  81. $data = input('post.');
  82. $data = $data['row'];
  83. $parentInfo = $this->model->where(['is_del'=>0,'phone'=>$data['parent_member']])->find();
  84. if(empty($parentInfo)) $this->error('推荐人手机号错误');
  85. $phone = $data['phone'];
  86. if(empty($phone))$this->error('手机号不能为空');
  87. $info = $this->model->where(['phone'=>$phone,'is_del'=>0])->find();
  88. if($info) $this->error('手机号已注册');
  89. //$account = (new WalletLogic())->newAccount();
  90. //if($account === false) $this->error('钱包地址创建失败');
  91. $uuid = uuid();
  92. $pid = $parentInfo['id'];
  93. $salt = rand(1111,9999);
  94. $password = md5(md5($data['password']).$salt);
  95. $userData['nick_name'] = 'KK'.rand(111111,999999);
  96. $userData['phone'] = $phone;
  97. $userData['head_image'] = defaultImage();
  98. $userData['salt'] = $salt;
  99. $userData['password'] = $password;
  100. $userData['uuid'] = $uuid;
  101. $userData['pid'] = $pid;
  102. $userData['upid'] = $pid;
  103. $userData['parent_member'] = $parentInfo['phone'];
  104. $userData['create_time'] = date('Y-m-d H:i:s');
  105. //$userData['wallet_address'] = $account['address'];
  106. //$userData['wallet_private_key'] = $account['private_key'];
  107. Db::startTrans();
  108. $user_id = $this->model->insertGetId($userData);
  109. \datamodel\Users::get($user_id)->addAddress();
  110. if($user_id > 0) {
  111. $result = $this->updateGroup($pid);
  112. if(!$result){
  113. Db::rollback();
  114. $this->error('注册失败');
  115. }
  116. Db::commit();
  117. $this->success('注册成功');
  118. }
  119. Db::rollback();
  120. $this->error('注册失败');
  121. }
  122. return $this->fetch();
  123. }
  124. /**
  125. * 更新团队信息
  126. * @param $pid
  127. * @return bool
  128. * @throws \think\Exception
  129. */
  130. private function updateGroup($pid)
  131. {
  132. $field = ['id', 'pid', 'upid'];
  133. $userData = (new MemberLogic())->listParent($pid, $field, 1, 0);
  134. $groupArr = array_column($userData, 'id');
  135. $where['id'] = ['in', $groupArr];
  136. $result = $this->model->where($where)->setInc('group_person_count',1); //修改团队成员
  137. $res = $this->model->where(['id' => $pid])->setInc('total_direct', 1);//修改直推人数
  138. if ($result > 0 && $res > 0) return true;
  139. return false;
  140. }
  141. public function del($ids = "")
  142. {
  143. $result = $this->model->where(['id'=>['in',$ids]])->update(['is_del'=>1]);
  144. if($result) return json(['code'=>1,'msg'=>'删除成功']);
  145. return json(['code'=>0,'msg'=>'删除失败']);
  146. }
  147. public function edit($ids = null)
  148. {
  149. if(request()->isPost()){
  150. $data = input('post.');
  151. $data = $data['row'];
  152. if(!empty($data['password'])){
  153. $salt = rand(1111,9999);
  154. $password = md5(md5($data['password']).$salt);
  155. $data['password'] = $password;
  156. $data['salt'] = $salt;
  157. }else{
  158. unset($data['password']);
  159. }
  160. if(!empty($data['pay_password'])){
  161. $salt = rand(1111,9999);
  162. $pay_password = md5(md5($data['pay_password']).$salt);
  163. $data['pay_password'] = $pay_password;
  164. $data['pay_salt'] = $salt;
  165. }else{
  166. unset($data['pay_password']);
  167. }
  168. $result = $this->model->where(['id'=>$ids])->update($data);
  169. if($result) $this->success('修改成功');
  170. $this->success('修改失败');
  171. }
  172. $row = $this->model->find($ids)->toArray();
  173. $this->assign('row',$row);
  174. return $this->fetch();
  175. }
  176. /**
  177. * 资金操作
  178. * @param $ids
  179. * @return mixed|\think\response\Json
  180. * @throws \think\Exception
  181. * @throws \think\db\exception\DataNotFoundException
  182. * @throws \think\db\exception\ModelNotFoundException
  183. * @throws \think\exception\DbException
  184. * @throws \think\exception\PDOException
  185. */
  186. public function funds($ids){
  187. if(request()->post()){
  188. $data = input('post.');
  189. if(empty($data['currency_id'])) return json(['code'=>0,'msg'=>'请选择要操作币种']);
  190. if(empty($data['type'])) return json(['code'=>0,'msg'=>'请选择操作类型']);
  191. if(empty($data['account'])) return json(['code'=>0,'msg'=>'请输入金额']);
  192. $account = $data['account'];
  193. if($account <= 0) return json(['code'=>0,'msg'=>'操作金额需大于0']);
  194. $type = $data['type'];
  195. $currency_id = $data['currency_id'];
  196. Db::startTrans();
  197. if($type == 1){
  198. $currency_id = $data['currency_id'];
  199. $bil_type = '后台充值';
  200. $remark = '后台充值';
  201. $result = (new AccountLogic())->addAccount($ids,$currency_id,$account,$bil_type,$remark);
  202. if($result == false){
  203. Db::rollback();
  204. return json(['code'=>0,'msg'=>'充值失败']);
  205. }
  206. }elseif($type == 2){
  207. $bil_type = '后台扣费';
  208. $remark = '后台扣费';
  209. $result = (new AccountLogic())->subAccount($ids,$currency_id,$account,$bil_type,$remark);
  210. if($result == false){
  211. Db::rollback();
  212. return json(['code'=>0,'msg'=>'账户余额不足']);
  213. }
  214. }else{
  215. return json(['code'=>0,'msg'=>'操作类型错误']);
  216. }
  217. $fundsData = ['uid'=>$ids,'currency_id'=>$currency_id,'account'=>$account,'type'=>$type,'create_time'=>date('Y-m-d H:i:s')];
  218. $result = Db::name('funds')->insertGetId($fundsData);
  219. if($result > 0) {
  220. Db::commit();
  221. return json(['code'=>1,'msg'=>'操作成功']);
  222. }
  223. return json(['code'=>0,'msg'=>'操作失败']);
  224. }
  225. $currencyData = Db::name('currency')->select();
  226. $userInfo = $this->model->find($ids);
  227. $this->assign('userInfo',$userInfo);
  228. $this->assign('currencyData',$currencyData);
  229. $this->assign('ids',$ids);
  230. return $this->fetch();
  231. }
  232. public function team($phone=''){
  233. if(request()->isAjax()){
  234. if(empty($phone)){
  235. $data = $this->model->alias('u')
  236. ->join('role ro','ro.id = u.role_id')
  237. ->where(['u.pid'=>0])
  238. ->field(['u.*','ro.name role_name'])
  239. ->select();
  240. return json($data);
  241. }
  242. $field = ['pu.*','ro.name role_name'];
  243. $data = $this->model->alias('u')
  244. ->join('users pu','u.id = pu.pid')
  245. ->join('role ro','ro.id = u.role_id')
  246. ->where(['u.phone'=>$phone])
  247. ->field($field)
  248. ->select();
  249. return $data;
  250. }
  251. return $this->fetch();
  252. }
  253. /**
  254. * 搜索
  255. * @param string $phone
  256. * @return \think\response\Json
  257. * @throws \think\Exception
  258. * @throws \think\db\exception\DataNotFoundException
  259. * @throws \think\db\exception\ModelNotFoundException
  260. * @throws \think\exception\DbException
  261. */
  262. public function search($phone=''){
  263. if(empty($phone)){
  264. $where ['u.pid'] = 0;
  265. }else{
  266. $where ['u.phone'] = $phone;
  267. $where['u.is_del'] = 0;
  268. }
  269. $data = $this->model
  270. ->alias('u')
  271. ->join('role ro','ro.id = u.role_id')
  272. ->join('rank r','r.id = u.rank_id')
  273. ->where($where)
  274. ->field(['u.*','r.name rank_name','ro.name role_name'])
  275. ->select();
  276. return json($data);
  277. }
  278. public function goods($ids=''){
  279. if(request()->isPost()){
  280. $data = input('post.');
  281. $price = $data['price'];
  282. if(empty($price)){
  283. $price = (new \app\admin\model\Goods())->where(['id'=>$data['goods_id']])->value('price');
  284. }
  285. $time = date('Y-m-d H:i:s');
  286. $send['uid'] = $ids;
  287. $send['goods_id'] = $data['goods_id'];
  288. $send['price'] = $price;
  289. $send['create_time'] = $time;
  290. $result = (new \app\admin\model\GoodsSend())->insertGetId($send);
  291. if(!$result) return json(['code'=>0,'msg'=>'赠送失败']);
  292. $goods['uid'] = $ids;
  293. $goods['price'] = $price;
  294. $goods['goods_id'] = $data['goods_id'];
  295. $goods['create_time'] = $time;
  296. $result = (new \app\admin\model\UsersGoods())->insertGetId($goods);
  297. if($result) return json(['code'=>1,'msg'=>'赠送成功']);
  298. return json(['code'=>0,'msg'=>'赠送失败']);
  299. }
  300. $this->assign('ids',$ids);
  301. return $this->fetch();
  302. }
  303. public function box($ids=''){
  304. if(request()->isPost()){
  305. $data = input('post.');
  306. $price = $data['price'];
  307. if(empty($price)){
  308. $price = (new \app\admin\model\Box())->where(['id'=>$data['box_id']])->value('price');
  309. }
  310. $time = date('Y-m-d H:i:s');
  311. $send['uid'] = $ids;
  312. $send['box_id'] = $data['box_id'];
  313. $send['price'] = $price;
  314. $send['create_time'] = $time;
  315. $result = (new \app\admin\model\BoxSend())->insertGetId($send);
  316. if(!$result) return json(['code'=>0,'msg'=>'赠送失败']);
  317. $box['uid'] = $ids;
  318. $box['price'] = $price;
  319. $box['box_id'] = $data['box_id'];
  320. $box['create_time'] = $time;
  321. $result = (new \app\admin\model\UsersBox())->insertGetId($box);
  322. if($result) return json(['code'=>1,'msg'=>'赠送成功']);
  323. return json(['code'=>0,'msg'=>'赠送失败']);
  324. }
  325. return $this->fetch();
  326. }
  327. }