UserInfo.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  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'])->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']])->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(["id"=>"","status"=>""],"post","intval");
  160. $validate=Validate::rule([
  161. 'id|主键ID' => 'require|number|gt:0',
  162. 'status|状态' => 'require|number|in:0,1',
  163. ]);
  164. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  165. $info=AccountCompany::where(["id"=>$post['id']])->find();
  166. if($info==false){
  167. return json_show(1004,"未找到数据");
  168. }
  169. if($info['status']==$post['status']){
  170. return json_show(1004,"数据已更新");
  171. }
  172. $info['status']=$post['status'];
  173. $info['updatetime']=date("Y-m-d H:i:s");
  174. $inser=AccountCompany::update($info->toArray());
  175. return $inser?json_show(0,"关联企业状态设置成功"):json_show(1005,"关联企业状态设置失败");
  176. }
  177. /**
  178. * @param int $id
  179. * @param string $nickname
  180. * @param int $mobile
  181. * @param string $email
  182. * @param string $portrait
  183. * @param int $sex
  184. * @return \think\response\Json
  185. */
  186. public function UserSave()
  187. {
  188. $post = $this->request->only([
  189. "id"=>"",
  190. "nickname"=>"",
  191. "mobile"=>"",
  192. "email"=>"",
  193. "portrait"=>"",
  194. "sex"=>"",
  195. ],"post");
  196. $validate=Validate::rule([
  197. 'id|主键ID' => 'require|number|gt:0',
  198. 'nickname|名称' => 'require|max:255',
  199. 'mobile|手机号' => 'require|number|length:11|mobile',
  200. 'email|名称' => 'email',
  201. 'sex|性别' => 'number|in:0,1,2',
  202. ]);
  203. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  204. $account=Db::name("account")->where([["id","=",$post['id']],["is_del","=",0]])->findOrEmpty();
  205. if(empty($account)){
  206. return json_show(1003,"账户不存在");
  207. }
  208. $accountinfo=Db::name("user")->where([["account_id","=",$post['id']]])->findOrEmpty();
  209. if(empty($accountinfo)){
  210. return json_show(1003,"账户信息不存在");
  211. }
  212. $uiq = Db::table("sys_account")->where([["mobile","=",$post['mobile']],["id","<>",$post['id']],["is_del","=",0]])->find();
  213. if($uiq){
  214. return json_show(1002,"手机号已存在!");
  215. }
  216. Db::startTrans();
  217. try{
  218. $userinfo=[
  219. "nickname"=>$post['nickname'],
  220. "mobile"=>$post['mobile'],
  221. "email"=>$post['email'],
  222. "portrait"=>$post['portrait'],
  223. "sex"=>$post['sex'],
  224. "updatetime"=>date("Y-m-d H:i:s")
  225. ];
  226. $dat=Db::name("user")->where($accountinfo)->update($userinfo);
  227. if($dat==false){
  228. Db::rollback();
  229. return json_show(1004,"信息修改失败");
  230. }
  231. $acc= [
  232. "id"=>$post['id'],
  233. "mobile"=>$post['mobile'],
  234. "username"=>$post['mobile'],
  235. "updatetime"=>date("Y-m-d H:i:s"),
  236. ];
  237. $nu = Db::name("account")->save($acc);
  238. if($nu){
  239. Db::commit();
  240. return json_show(0,"信息修改成功");
  241. }else{
  242. Db::rollback();
  243. return json_show(1004,"账户信息修改失败");
  244. }
  245. }catch (\Exception $e){
  246. Db::rollback();
  247. return json_show(1005,$e->getMessage());
  248. }
  249. }
  250. /**
  251. * @param int $id
  252. * @param int $status
  253. * @return \think\response\Json
  254. * @throws \think\exception\DbException
  255. */
  256. public function UserStatus()
  257. {
  258. $post = $this->request->only(["id"=>"","status"=>""],"post","trim");
  259. $validate=Validate::rule([
  260. 'id|主键ID' => 'require|number|gt:0',
  261. 'status|状态' => 'require|number|in:0,1',
  262. ]);
  263. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  264. $account=Account::where("id",$post['id'])->findOrEmpty();
  265. if(empty($account)){
  266. return json_show(1003,"账户不存在");
  267. }
  268. if($account['status']==$post['status']){
  269. return json_show(1004,"数据已更新");
  270. }
  271. $message = $post['status']==1?"启用":"禁用";
  272. $result= Db::name("account")->where("id","=",$post['id'])->save(['status'=>$post['status'],"updatetime"=>date("Y-m-d
  273. H:i:s")]);
  274. return $result?json_show(0,"账户{$message}成功") : json_show(1005,"账户{$message}失败");
  275. }
  276. //根据业务公司获取用户数据
  277. public function UserListByCompany()
  278. {
  279. $post = $this->request->only(["nickname" => "", "username" => "", "status" => "", "uid" => [], "nuid" => [], "companyNo" => "", "page" => 1, "size" => 10], "post");
  280. $condition = [["a.is_del", "=", 0]];
  281. $whereor = [];
  282. isset($post['nickname']) && $post['nickname'] != "" ? $condition[] = ["nickname", "like", "%{$post['nickname']}%"] : "";
  283. isset($post['username']) && $post['username'] != "" ? $condition[] = ["username", "like", "%{$post['username']}%"] : "";
  284. isset($post['status']) && $post['status'] !== "" ? $condition[] = ["a.status", "=", $post['status']] : "";
  285. isset($post['uid']) && !empty($post['uid'])&& !empty($post['uid']) ? $condition[] = ["a.id", "in", $post['uid']] : "";
  286. isset($post['nuid']) &&!empty($post['nuid']) && !empty($post['nuid']) ? $condition[] = ["a.id", "not in", $post['nuid']] : "";
  287. isset($post['companyNo']) && $post['companyNo'] !== "" ? $condition[] = ["c.companyCode", "=", $post['companyNo']]
  288. : $whereor[] = ["c.companyCode", "=", null];
  289. $page = isset($post['page']) && $post['page'] !== "" ? intval($post['page']) : 1;
  290. $size = isset($post['size']) && $post['size'] !== "" ? intval($post['size']) : 10;
  291. $count = Db::name("account")
  292. ->alias("a")
  293. ->leftJoin("user b", "a.id=b.account_id and b.status=1")
  294. ->leftJoin("account_company c", "a.id=c.account_id and c.status=1 and c.is_del=0")
  295. ->where($condition)
  296. ->whereOr($whereor)
  297. ->count();
  298. $total = intval(ceil($count / $size));
  299. $page = $total >= $page ? $page : $total;
  300. $list = Db::name("account")
  301. ->alias("a")
  302. ->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")
  303. ->leftJoin("user b", "a.id=b.account_id and b.status=1")
  304. ->leftJoin("account_company c", "a.id=c.account_id and c.is_del=0")
  305. ->where($condition)
  306. ->whereOr($whereor)
  307. ->page($page, $size)
  308. ->append(['plat', 'company_relaton'])
  309. ->withAttr('plat', function ($val, $da) {
  310. return Db::name("account_plat")
  311. ->alias("a")
  312. ->leftJoin("platform b", "a.plat_code=b.plat_code and b.is_del=0 and b.status=1")
  313. ->where(["a.status" => 1, "a.is_del" => 0, "a.account_id" => $da['id']])
  314. ->field("a.plat_code,plat_name")
  315. ->select()
  316. ->toArray();
  317. })
  318. ->withAttr('company_relaton', function ($val, $da) {
  319. return Db::name("account_company")
  320. ->where(["account_id" => $da['id'], "is_del" => 0])
  321. ->field("companyCode,companyName,company_type,is_main,status")
  322. ->select()
  323. ->toArray();
  324. })
  325. ->order("a.addtime desc")
  326. ->select()
  327. ->toArray();
  328. return json_show(0, "获取成功", ["list" => $list, "count" => $count]);
  329. }
  330. /**
  331. * @return \think\response\Json
  332. * @throws \think\db\exception\DataNotFoundException
  333. * @throws \think\db\exception\DbException
  334. * @throws \think\db\exception\ModelNotFoundException
  335. */
  336. public function userAdd(){
  337. $post = $this->request->only(["nickname"=>"","mobile"=>"","email"=>"","companyArr"=>[]],"post","trim");
  338. $validate=Validate::rule([
  339. 'nickname|真实姓名' => 'require|min:2|max:200',
  340. 'mobile|手机号' => 'require|number|length:11|mobile',
  341. 'email|邮箱' => 'email',
  342. 'companyArr|关联业务公司' => 'array',
  343. ]);
  344. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  345. Db::startTrans();
  346. $uiq = Db::table("sys_account")->where(["mobile"=>$post['mobile']])->find();
  347. if($uiq){
  348. return json_show(1002,"手机号已注册!");
  349. }
  350. try {
  351. $salt =makeSalt();
  352. $password = sha1("dingding123".$salt);
  353. $data = [
  354. 'username'=>$post['mobile'],
  355. "password"=>$password,
  356. "salt"=>$salt,
  357. "mobile"=>$post['mobile'],
  358. "source"=>"paltadd",
  359. "status"=>1,
  360. "addtime"=>date("Y-m-d H:i:s"),
  361. "updatetime"=>date("Y-m-d H:i:s")
  362. ];
  363. $reuslt = Db::table('sys_account')->insert($data,true);
  364. if($reuslt){
  365. $data=[
  366. "nickname"=>$post['nickname'],
  367. "mobile"=>$post['mobile'],
  368. "email"=>$post['email'],
  369. "portrait"=>"",
  370. "sex"=>1,
  371. "post"=>"",
  372. "department"=>"",
  373. "account_id"=>$reuslt,
  374. "status"=>1,
  375. "addtime"=>date("Y-m-d H:i:s"),
  376. "updatetime"=>date("Y-m-d H:i:s")
  377. ];
  378. $user=Db::table("sys_user")->insert($data);
  379. if($user!=false){
  380. $acount =new AccountCompany();
  381. if(!empty($post['companyArr'])){
  382. $company_insert=[];
  383. foreach ($post['companyArr'] as $company){
  384. $company_insert[]=[
  385. "account_id"=>$reuslt,
  386. "companyCode"=>$company['companyCode'],
  387. "companyName"=>$company['companyName'],
  388. "company_type"=>$company['company_type'],
  389. "is_main"=>$company['is_main'],
  390. "status"=>1,
  391. "is_del"=>0,
  392. "addtime"=>date("Y-m-d H:i:s"),
  393. "updatetime"=>date("Y-m-d H:i:s"),
  394. ];
  395. }
  396. $u= $acount->saveAll($company_insert);
  397. }else{
  398. $company_insert=[
  399. "account_id"=>$reuslt,
  400. "companyCode"=>'',
  401. "companyName"=>'',
  402. "company_type"=>'0',
  403. "is_main"=>1,
  404. "status"=>1,
  405. "is_del"=>0,
  406. "addtime"=>date("Y-m-d H:i:s"),
  407. "updatetime"=>date("Y-m-d H:i:s"),
  408. ];
  409. $u= $acount->save($company_insert);
  410. }
  411. if($u==false)throw new Exception("账户新建失败");
  412. Db::commit();
  413. return json_show(0,"账户注册成功",["userid"=>$reuslt,"nickname"=>$post['nickname']]);
  414. }
  415. }
  416. Db::rollback();
  417. return json_show(1002,"账户注册失败");
  418. }catch (\Exception $e){
  419. Db::rollback();
  420. return json_show(1002,"账户注册失败".$e->getMessage());
  421. }
  422. }
  423. }