UserInfo.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\controller;
  4. use app\BaseController;
  5. use app\model\Account;use app\model\AccountCompany;use think\App;
  6. use think\Exception;use think\facade\Db;use think\facade\Validate;
  7. class UserInfo extends BaseController
  8. {
  9. public function __construct(App $app) {
  10. parent::__construct($app);
  11. }
  12. /**
  13. * @param string $nickname
  14. * @param string $username
  15. * @param int $status
  16. * @param array $uid
  17. * @param array $nuid
  18. * @param int $page
  19. * @param int $size
  20. * @param string $nickname
  21. * @return \think\response\Json
  22. * @throws \think\db\exception\DbException
  23. */
  24. public function UserList()
  25. {
  26. $post=$this->request->only(["nickname"=>"","username"=>"","status"=>"","companyNo"=>"","uid"=>[],"nuid"=>[],
  27. "page"=>1,"size"=>10],"post");
  28. $condition = [["a.is_del","=",0]];
  29. isset($post['nickname'])&& $post['nickname']!="" ? $condition[]=["nickname","like","%{$post['nickname']}%"] : "";
  30. isset($post['username'])&& $post['username']!="" ? $condition[]=["username","like","%{$post['username']}%"] : "";
  31. isset($post['status'])&& $post['status']!=="" ? $condition[]=["a.status","=",$post['status']] : "";
  32. isset($post['uid'])&& !empty($post['uid']) ? $condition[]=["a.id","in",$post['uid']] : "";
  33. isset($post['nuid'])&& !empty($post['nuid']) ? $condition[]=["a.id","not in",$post['nuid']] : "";
  34. if ($post['companyNo']!=""){
  35. $uid =Db::name("account_company")->where(["companyCode"=>$post['companyNo'],"is_del"=>0])->column("account_id");
  36. $condition[]=["a.id","in",$uid];
  37. }
  38. $page = isset($post['page'])&& $post['page']!=="" ? intval($post['page']) : 1;
  39. $size = isset($post['size'])&& $post['size']!=="" ? intval($post['size']) : 10;
  40. $count = Db::name("account")->alias("a")
  41. ->leftJoin("user b","a.id=b.account_id and b.status=1")
  42. ->where($condition)->count();
  43. $total =intval(ceil($count/$size)) ;
  44. $page = $total>=$page? $page:$total;
  45. $list = Db::name("account")->alias("a")
  46. ->leftJoin("user b","a.id=b.account_id and b.status=1")
  47. ->append(['plat', 'company_relaton'])
  48. ->withAttr('plat', function ($val, $da) {
  49. return Db::name("account_plat")
  50. ->alias("a")
  51. ->leftJoin("platform b", "a.plat_code=b.plat_code and b.is_del=0 and b.status=1")
  52. ->where(["a.status" => 1, "a.is_del" => 0, "a.account_id" => $da['id']])
  53. ->field("a.plat_code,plat_name")
  54. ->select()
  55. ->toArray();
  56. })
  57. ->withAttr('company_relaton', function ($val, $da) {
  58. return Db::name("account_company")
  59. ->where(["account_id" => $da['id'], "is_del" => 0])
  60. ->field("companyCode,companyName,company_type,is_main,status")
  61. ->select()
  62. ->toArray();
  63. })
  64. ->where($condition)->page($page,$size)->order("a.id desc")
  65. ->field("a.id,a.username,a.mobile,a.source,a.status,b.nickname,b.sex,b.email,a.addtime,a.updatetime")
  66. ->select()->toArray();
  67. return json_show(0,"获取成功",["list"=>$list,"count"=>$count]);
  68. }
  69. /** @param int $id 账户id
  70. * @return \think\response\Json
  71. */
  72. public function info()
  73. {
  74. $post=$this->request->only(["id"=>""],"post","intval");
  75. if($post['id']==""){
  76. return json_show(1003,"参数 id 不能为空");
  77. }
  78. $list = Db::name("account")->alias("a")
  79. ->leftJoin("user b","a.id=b.account_id and b.status=1")
  80. ->where(["a.id"=>$post['id'],"a.is_del"=>0])
  81. ->field("a.id,a.username,a.mobile,a.source,a.status,b.nickname,b.sex,b.email,a.addtime,a.updatetime")
  82. ->findOrEmpty();
  83. if(empty($list)){
  84. return json_show(1004,"未找到用户信息");
  85. }
  86. $list['plat']= Db::name("account_plat")->alias("a")
  87. ->leftJoin("platform b","a.plat_code=b.plat_code and b.status=1")
  88. ->where(["a.status"=>1,"a.is_del"=>0,"a.account_id"=>$list['id']])->column("a.plat_code,plat_name");
  89. $list['company_relaton'] = Db::name("account_company")->where(["account_id"=>$list['id'],"is_del"=>0,"status"=>1])
  90. ->column("companyCode,companyName,company_type,is_main,status");
  91. return json_show(0,"获取成功",$list);
  92. }
  93. /**
  94. * @return \think\response\Json|void
  95. * @throws \think\db\exception\DataNotFoundException
  96. * @throws \think\db\exception\DbException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. */
  99. public function PassSet()
  100. {
  101. $post=$this->request->only(["id"=>"","password"=>""],"post","trim");
  102. $validate=Validate::rule([
  103. 'id|账户ID' => 'require|number',
  104. 'password|密码' => 'require|min:6|max:200',
  105. ]);
  106. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  107. $account=Db::name("account")->where([["id","=",$post['id']],["is_del","=","0"]])->find();
  108. if(empty($account)){
  109. return json_show(1003,"账户不存在");
  110. }
  111. $salt=makeSalt();
  112. $password = sha1($post['password'].$salt);
  113. $account['password']=$password;
  114. $account['salt']=$salt;
  115. $account['is_pass']=1;
  116. $account['updatetime']=date("Y-m-d H:i:s");
  117. $up = Db::name("account")->save($account);
  118. return $up?json_show(0,"密码修改成功"):json_show(1005,"密码修改失败");
  119. }
  120. /**@param int $id
  121. *@param array $company
  122. * @return \think\response\Json
  123. */
  124. public function setCompany(){
  125. $post = $this->request->only(["id"=>"","company"=>[]],"post");
  126. $validate=Validate::rule([
  127. 'id|账户ID' => 'require|number|gt:0',
  128. 'company|业务公司' => 'require|array',
  129. ]);
  130. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  131. $company_insert=[];
  132. $acount =new AccountCompany();
  133. foreach ($post['company'] as $company){
  134. $ist=$acount->where(["account_id"=>$post['id'],"companyCode"=>$company['companyCode'],"is_del"=>0])->find();
  135. if($ist!=false)$company['id']=$ist['id'];
  136. $company_insert[]=[
  137. "id"=>$company['id']??null,
  138. "account_id"=>$post['id'],
  139. "companyCode"=>$company['companyCode'],
  140. "companyName"=>$company['companyName'],
  141. "company_type"=>$company['company_type'],
  142. "is_main"=>$company['is_main'],
  143. "status"=>1,
  144. "is_del"=>$company['is_del']??0,
  145. "addtime"=>date("Y-m-d H:i:s"),
  146. "updatetime"=>date("Y-m-d H:i:s"),
  147. ];
  148. }
  149. $inser =$acount->saveAll($company_insert);
  150. return $inser?json_show(0,"关联企业设置成功"):json_show(1005,"关联企业设置失败");
  151. }
  152. /**
  153. * @param int $id
  154. * @param int $status
  155. * @return \think\response\Json
  156. * @throws \think\exception\DbException
  157. */
  158. public function setCompanyStatus(){
  159. $post = $this->request->only(["account_id"=>"","companyCode"=>'',"status"=>""],"post");
  160. $validate=Validate::rule([
  161. 'account_id|账户id' => 'require|number|gt:0',
  162. 'status|状态' => 'require|number|in:0,1',
  163. 'companyCode|公司编号' => 'require',
  164. ]);
  165. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  166. $account = Db::name("account")->where(["id"=>$post['account_id'],"is_del"=>0])->findOrEmpty();
  167. if(empty($account))return json_show(1004,"未找账户到数据");
  168. $acc = new AccountCompany();
  169. $info= $acc->where(["account_id"=>$post['account_id'],"companyCode"=>$post['companyCode'],"is_del"=>0])
  170. ->findOrEmpty();
  171. if($info->isEmpty()){
  172. return json_show(1004,"未找账户到数据");
  173. }
  174. $upda=["status"=>$post['status'],"updatetime"=>date("Y-m-d H:i:s")];
  175. $inser=$acc->update($upda,["account_id"=>$post['account_id'],"companyCode"=>$post['companyCode'],"is_del"=>0]);
  176. if($inser==false) return json_show(1005,"关联企业状态设置失败");
  177. $count = $acc->where([["account_id","=",$post['account_id']],["status","<>",$post['status']],["is_del","=",0]])->count();
  178. if($count==0 && $account['status']!=$post['status'])Db::name("account")->where(["id"=>$post['account_id'],"is_del"=>0])->select($upda);
  179. return json_show(0,"关联企业状态设置成功");
  180. }
  181. /**
  182. * @param int $id
  183. * @param string $nickname
  184. * @param int $mobile
  185. * @param string $email
  186. * @param string $portrait
  187. * @param int $sex
  188. * @return \think\response\Json
  189. */
  190. public function UserSave()
  191. {
  192. $post = $this->request->only([
  193. "id"=>"",
  194. "nickname"=>"",
  195. "mobile"=>"",
  196. "email"=>"",
  197. "portrait"=>"",
  198. "sex"=>"",
  199. ],"post");
  200. $validate=Validate::rule([
  201. 'id|主键ID' => 'require|number|gt:0',
  202. 'nickname|名称' => 'require|max:255',
  203. 'mobile|手机号' => 'require|number|length:11|mobile',
  204. 'email|名称' => 'email',
  205. 'sex|性别' => 'number|in:0,1,2',
  206. ]);
  207. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  208. $account=Db::name("account")->where([["id","=",$post['id']],["is_del","=",0]])->findOrEmpty();
  209. if(empty($account)){
  210. return json_show(1003,"账户不存在");
  211. }
  212. $accountinfo=Db::name("user")->where([["account_id","=",$post['id']]])->findOrEmpty();
  213. if(empty($accountinfo)){
  214. return json_show(1003,"账户信息不存在");
  215. }
  216. $uiq = Db::table("sys_account")->where([["mobile","=",$post['mobile']],["id","<>",$post['id']],["is_del","=",0]])->find();
  217. if($uiq){
  218. return json_show(1002,"手机号已存在!");
  219. }
  220. Db::startTrans();
  221. try{
  222. $userinfo=[
  223. "nickname"=>$post['nickname'],
  224. "mobile"=>$post['mobile'],
  225. "email"=>$post['email'],
  226. "portrait"=>$post['portrait'],
  227. "sex"=>$post['sex'],
  228. "updatetime"=>date("Y-m-d H:i:s")
  229. ];
  230. $dat=Db::name("user")->where($accountinfo)->update($userinfo);
  231. if($dat==false){
  232. Db::rollback();
  233. return json_show(1004,"信息修改失败");
  234. }
  235. $acc= [
  236. "id"=>$post['id'],
  237. "mobile"=>$post['mobile'],
  238. "username"=>$post['mobile'],
  239. "updatetime"=>date("Y-m-d H:i:s"),
  240. ];
  241. $nu = Db::name("account")->save($acc);
  242. if($nu){
  243. Db::commit();
  244. return json_show(0,"信息修改成功");
  245. }else{
  246. Db::rollback();
  247. return json_show(1004,"账户信息修改失败");
  248. }
  249. }catch (\Exception $e){
  250. Db::rollback();
  251. return json_show(1005,$e->getMessage());
  252. }
  253. }
  254. /**
  255. * @param int $id
  256. * @param int $status
  257. * @return \think\response\Json
  258. * @throws \think\exception\DbException
  259. */
  260. public function UserStatus()
  261. {
  262. $post = $this->request->only(["id"=>"","status"=>""],"post","trim");
  263. $validate=Validate::rule([
  264. 'id|主键ID' => 'require|number|gt:0',
  265. 'status|状态' => 'require|number|in:0,1',
  266. ]);
  267. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  268. $account=Account::where("id",$post['id'])->findOrEmpty();
  269. if($account->isEmpty()){
  270. return json_show(1003,"账户不存在");
  271. }
  272. if($account['status']==$post['status']){
  273. return json_show(1004,"数据已更新");
  274. }
  275. $message = $post['status']==1?"启用":"禁用";
  276. Db::startTrans();
  277. try {
  278. $result= Db::name("account")->where("id","=",$post['id'])->save(['status'=>$post['status'],"updatetime"=>date("Y-m-d H:i:s")]);
  279. if($result){
  280. $ip= AccountCompany::update(['status'=>$post['status'],"updatetime"=>date("Y-m-d H:i:s")], ["account_id"=>$post['id'],"is_del"=>0]);
  281. if($ip){
  282. Db::commit();
  283. return json_show(0,"账户{$message}成功");
  284. }
  285. }
  286. Db::rollback();
  287. return json_show(1005,"账户{$message}失败");
  288. }catch (\Exception $e){
  289. Db::rollback();
  290. return json_show(1004,$e->getMessage());
  291. }
  292. }
  293. //根据业务公司获取用户数据
  294. public function UserListByCompany()
  295. {
  296. $post = $this->request->only(["nickname" => "", "username" => "", "status" => "", "uid" => [], "nuid" => [], "companyNo" => "", "page" => 1, "size" => 10], "post");
  297. $condition = [["a.is_del", "=", 0]];
  298. $whereor = [];
  299. isset($post['nickname']) && $post['nickname'] != "" ? $condition[] = ["nickname", "like", "%{$post['nickname']}%"] : "";
  300. isset($post['username']) && $post['username'] != "" ? $condition[] = ["username", "like", "%{$post['username']}%"] : "";
  301. isset($post['status']) && $post['status'] !== "" ? $condition[] = ["a.status", "=", $post['status']] : "";
  302. isset($post['uid']) && !empty($post['uid'])&& !empty($post['uid']) ? $condition[] = ["a.id", "in", $post['uid']] : "";
  303. isset($post['nuid']) &&!empty($post['nuid']) && !empty($post['nuid']) ? $condition[] = ["a.id", "not in", $post['nuid']] : "";
  304. isset($post['companyNo']) && $post['companyNo'] !== "" ? $condition[] = ["c.companyCode", "=", $post['companyNo']]
  305. : $whereor[] = ["c.companyCode", "=", null];
  306. $page = isset($post['page']) && $post['page'] !== "" ? intval($post['page']) : 1;
  307. $size = isset($post['size']) && $post['size'] !== "" ? intval($post['size']) : 10;
  308. $count = Db::name("account")
  309. ->alias("a")
  310. ->leftJoin("user b", "a.id=b.account_id and b.status=1")
  311. ->leftJoin("account_company c", "a.id=c.account_id and c.status=1 and c.is_del=0")
  312. ->where($condition)
  313. ->whereOr($whereor)
  314. ->count();
  315. $total = intval(ceil($count / $size));
  316. $page = $total >= $page ? $page : $total;
  317. $list = Db::name("account")
  318. ->alias("a")
  319. ->field("a.id,a.username,a.mobile,a.source,a.status,b.nickname,b.sex,b.email,a.addtime,a.updatetime,companyCode,companyName,company_type,is_main,c.status as com_status")
  320. ->leftJoin("user b", "a.id=b.account_id and b.status=1")
  321. ->leftJoin("account_company c", "a.id=c.account_id and c.is_del=0")
  322. ->where($condition)
  323. ->whereOr($whereor)
  324. ->page($page, $size)
  325. ->append(['plat', 'company_relaton'])
  326. ->withAttr('plat', function ($val, $da) {
  327. return Db::name("account_plat")
  328. ->alias("a")
  329. ->leftJoin("platform b", "a.plat_code=b.plat_code and b.is_del=0 and b.status=1")
  330. ->where(["a.status" => 1, "a.is_del" => 0, "a.account_id" => $da['id']])
  331. ->field("a.plat_code,plat_name")
  332. ->select()
  333. ->toArray();
  334. })
  335. ->withAttr('company_relaton', function ($val, $da) {
  336. return Db::name("account_company")
  337. ->where(["account_id" => $da['id'], "is_del" => 0])
  338. ->field("companyCode,companyName,company_type,is_main,status")
  339. ->select()
  340. ->toArray();
  341. })
  342. ->order("a.addtime desc")
  343. ->select()
  344. ->toArray();
  345. return json_show(0, "获取成功", ["list" => $list, "count" => $count]);
  346. }
  347. /**
  348. * @return \think\response\Json
  349. * @throws \think\db\exception\DataNotFoundException
  350. * @throws \think\db\exception\DbException
  351. * @throws \think\db\exception\ModelNotFoundException
  352. */
  353. public function userAdd(){
  354. $post = $this->request->only(["nickname"=>"","mobile"=>"","email"=>"","companyArr"=>[]],"post","trim");
  355. $validate=Validate::rule([
  356. 'nickname|真实姓名' => 'require|min:2|max:200',
  357. 'mobile|手机号' => 'require|number|length:11|mobile',
  358. 'email|邮箱' => 'email',
  359. 'companyArr|关联业务公司' => 'array',
  360. ]);
  361. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  362. Db::startTrans();
  363. $uiq = Db::table("sys_account")->where(["mobile"=>$post['mobile']])->find();
  364. if($uiq){
  365. return json_show(1002,"手机号已注册!");
  366. }
  367. try {
  368. $salt =makeSalt();
  369. $password = sha1("dingding123".$salt);
  370. $data = [
  371. 'username'=>$post['mobile'],
  372. "password"=>$password,
  373. "salt"=>$salt,
  374. "mobile"=>$post['mobile'],
  375. "source"=>"paltadd",
  376. "status"=>1,
  377. "addtime"=>date("Y-m-d H:i:s"),
  378. "updatetime"=>date("Y-m-d H:i:s")
  379. ];
  380. $reuslt = Db::table('sys_account')->insert($data,true);
  381. if($reuslt){
  382. $data=[
  383. "nickname"=>$post['nickname'],
  384. "mobile"=>$post['mobile'],
  385. "email"=>$post['email'],
  386. "portrait"=>"",
  387. "sex"=>1,
  388. "post"=>"",
  389. "department"=>"",
  390. "account_id"=>$reuslt,
  391. "status"=>1,
  392. "addtime"=>date("Y-m-d H:i:s"),
  393. "updatetime"=>date("Y-m-d H:i:s")
  394. ];
  395. $user=Db::table("sys_user")->insert($data);
  396. if($user!=false){
  397. $acount =new AccountCompany();
  398. if(!empty($post['companyArr'])){
  399. $company_insert=[];
  400. foreach ($post['companyArr'] as $company){
  401. $company_insert[]=[
  402. "account_id"=>$reuslt,
  403. "companyCode"=>$company['companyCode'],
  404. "companyName"=>$company['companyName'],
  405. "company_type"=>$company['company_type'],
  406. "is_main"=>$company['is_main'],
  407. "status"=>1,
  408. "is_del"=>0,
  409. "addtime"=>date("Y-m-d H:i:s"),
  410. "updatetime"=>date("Y-m-d H:i:s"),
  411. ];
  412. }
  413. $u= $acount->saveAll($company_insert);
  414. }else{
  415. $company_insert=[
  416. "account_id"=>$reuslt,
  417. "companyCode"=>'',
  418. "companyName"=>'',
  419. "company_type"=>'0',
  420. "is_main"=>1,
  421. "status"=>1,
  422. "is_del"=>0,
  423. "addtime"=>date("Y-m-d H:i:s"),
  424. "updatetime"=>date("Y-m-d H:i:s"),
  425. ];
  426. $u= $acount->save($company_insert);
  427. }
  428. if($u==false)throw new Exception("账户新建失败");
  429. Db::commit();
  430. return json_show(0,"账户注册成功",["userid"=>$reuslt,"nickname"=>$post['nickname']]);
  431. }
  432. }
  433. Db::rollback();
  434. return json_show(1002,"账户注册失败");
  435. }catch (\Exception $e){
  436. Db::rollback();
  437. return json_show(1002,"账户注册失败".$e->getMessage());
  438. }
  439. }
  440. }