User.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\controller;
  4. use app\BaseController;
  5. use app\model\Account;
  6. use think\facade\Cache;
  7. use think\Exception;use think\facade\Db;
  8. use think\App;
  9. use think\facade\Validate;
  10. class User extends BaseController
  11. {
  12. private $token_time = 0;// token 有效时间
  13. public function __construct(App $app)
  14. {
  15. parent::__construct($app);
  16. $this->token_time= env("token.expire");
  17. }
  18. /**注册接口
  19. * @param string username 账户名称
  20. * @param string password 账户密码
  21. * @param string mobile 账户手机号
  22. * @param string source 来源默认register
  23. * @return \think\response\Json|void
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\DbException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. */
  28. public function register()
  29. {
  30. $post =$this->request->only(["nickname"=>'',"password"=>"","mobile"=>"","source"=>"register"],"post","trim");
  31. $validate=Validate::rule([
  32. 'nickname|真实姓名' => 'require|max:255',
  33. 'password|密码' => 'require|min:6|max:200',
  34. 'mobile|手机号' => 'require|number|length:11|mobile',
  35. ]);
  36. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  37. $source = isset($post['source']) ? trim($post['source']):"";
  38. $uiq = Db::table("sys_account")->where(["username"=>$post['mobile']])->find();
  39. if($uiq){
  40. return json_show(1002,"账户名已存在!");
  41. }
  42. $uiq = Db::table("sys_account")->where(["mobile"=>$post['mobile']])->find();
  43. if($uiq){
  44. return json_show(1002,"手机号已注册!");
  45. }
  46. Db::startTrans();
  47. try {
  48. $salt =makeSalt();
  49. $password = sha1($post['password'].$salt);
  50. $data = [
  51. 'username'=>$post['mobile'],
  52. "password"=>$password,
  53. "salt"=>$salt,
  54. "mobile"=>$post['mobile'],
  55. "source"=>$source,
  56. "status"=>1,
  57. "addtime"=>date("Y-m-d H:i:s"),
  58. "updatetime"=>date("Y-m-d H:i:s")
  59. ];
  60. $reuslt = Db::table('sys_account')->insert($data,true);
  61. if($reuslt){
  62. $data=[
  63. "nickname"=>$post['nickname'],
  64. "mobile"=>$post['mobile'],
  65. "email"=>"",
  66. "portrait"=>"",
  67. "sex"=>1,
  68. "post"=>"",
  69. "department"=>"",
  70. "account_id"=>$reuslt,
  71. "status"=>1,
  72. "addtime"=>date("Y-m-d H:i:s"),
  73. "updatetime"=>date("Y-m-d H:i:s")
  74. ];
  75. $user=Db::table("sys_user")->insert($data,true);
  76. if($user){
  77. Db::commit();
  78. return json_show(0,"账户注册成功");
  79. }
  80. }
  81. Db::rollback();
  82. return json_show(1002,"账户注册失败");
  83. }catch (\Exception $e){
  84. Db::rollback();
  85. return json_show(1002,"账户注册失败".$e->getMessage());
  86. }
  87. }
  88. /**
  89. * 显示创建资源表单页.
  90. *
  91. * @return \think\Response
  92. */
  93. public function verify_code()
  94. {
  95. $post = $this->request->only("mobile","post");
  96. $code = make_verify();
  97. $mobile = isset($post['mobile'])&&checkMobile($post['mobile']) ? $post['mobile'] :"" ;
  98. if($mobile==""){
  99. return json_show(1001,"手机号格式不正确");
  100. }
  101. $mess =Db::name("send_message")->where(['mobile'=>$mobile,"status"=>0,"msg_type"=>1])->find();
  102. if($mess){
  103. if($mess['expire']>time()-60){
  104. return json_show(1001,"验证码发送中!");
  105. }
  106. $mess['status']=1;
  107. Db::name("send_message")->save($mess);
  108. }
  109. // $sendJson = sendMessage($mobile, $code);
  110. // $sendResult = json_decode($sendJson, TRUE);
  111. // if($sendResult['description'] != 'Success') {
  112. // return json_show(1002, '短信发送失败,请重试');
  113. // }
  114. $data=['code'=>$code,"mobile"=>$mobile,"status"=>0,"msg_type"=>1,"addtime"=>date("Y-m-d H:i:s"),
  115. "expire"=>time()];
  116. $result = Db::name("send_message")->insert($data);
  117. return $result ? json_show(0,"验证码已发送",["code"=>$code]): json_show(1001,"验证码发送失败");
  118. }
  119. /**
  120. * @param string username 账户
  121. * @param string password 密码
  122. * @param string plat_code 来源
  123. * @return \think\response\Json
  124. * @throws \Psr\SimpleCache\InvalidArgumentException
  125. * @throws \think\db\exception\DataNotFoundException
  126. * @throws \think\db\exception\DbException
  127. * @throws \think\db\exception\ModelNotFoundException
  128. * @throws \think\exception\DbException
  129. */
  130. public function login()
  131. {
  132. $post = $this->request->only(["username"=>"","password"=>"","plat_code"=>""],"post","trim");
  133. $validate=Validate::rule([
  134. 'username|账户名称' => 'require|max:255',
  135. 'password|密码' => 'require|min:6|max:200',
  136. ]);
  137. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  138. $acc= Db::name("account")->where(['username'=>$post['username'],"is_del"=>Account::$account_del])->find();
  139. if($acc==false){
  140. return json_show(1003,'账户名不存在');
  141. }
  142. if($acc['status']==Account::$account_end){
  143. return json_show(1003,'账户名已禁用');
  144. }
  145. $sha1=sha1($post['password'].$acc['salt']);
  146. if($sha1!=$acc['password']){
  147. return json_show(1003,'账户或密码错误');
  148. }
  149. $token = makeToken($acc);
  150. if($token==""){
  151. return json_show(1003,'token生成失败');
  152. }
  153. if($post['plat_code']!=""){
  154. $platinfo = Db::name("account_plat")->alias("a")
  155. ->leftJoin("platform b","a.plat_code=b.plat_code and b.is_del=0 and b.status=1")
  156. ->where(["a.status"=>1,"a.is_del"=>0,"a.plat_code"=>$post['plat_code'],"a.account_id"=>$acc['id']])
  157. ->findOrEmpty();
  158. if(empty($platinfo)){
  159. return json_show(1003,'该系统账号未开通登录');
  160. }
  161. }
  162. $user =Db::name("account")->alias("a")
  163. ->leftJoin("user b","a.id=b.account_id and b.status=1")
  164. ->field("a.id,a.username,a.mobile,a.source,b.nickname,b.sex,b.email,a.addtime,a.updatetime")
  165. ->where(["a.id"=>$acc["id"]])
  166. ->find();
  167. if($user==false){
  168. return json_show(1003,'用户信息不存在');
  169. }
  170. $usercompany = Db::name("account_company")->where(["account_id"=>$user['id'],"is_del"=>0,"status"=>1])
  171. ->column("companyCode,companyName,company_type,is_main,status");
  172. $user['company_relaton'] = $usercompany;
  173. $cache = Cache::store("redis")->set("user:info:{$token}",$user ,$this->token_time);
  174. if($cache==false) return json_show(1003,'token保存失败');
  175. $user['token']=$token;
  176. return json_show(0,"登录成功",$user);
  177. }
  178. /**
  179. *钉钉登录接口
  180. *
  181. * @param \think\Request $request
  182. * @param string $code
  183. * @return \think\Response
  184. */
  185. public function DingTalk()
  186. {
  187. $config= config("dingtalk");
  188. $dingtalk =new \DingTalk($config);
  189. $post = $this->request->only(["code"=>""],"post","trim");
  190. $code=isset($post["code"])&&$post["code"]!="" ? $post["code"]:"";
  191. if($code==""){
  192. return json_show(106,"参数code不能为空");
  193. }
  194. $li = $dingtalk->getUserByCode($code);
  195. if($li['errcode']!=0){
  196. return json_show(107,"授权失败",$li);
  197. }
  198. $list = $dingtalk->getUser($li['userid']);
  199. if($list['errcode']!=0){
  200. return json_show(107,"授权失败",$list);
  201. }
  202. $userinfo = Db::name("account")->alias("a")
  203. ->leftJoin("user b","a.id=b.account_id and b.status=1")
  204. ->field("a.id,a.username,a.mobile,a.source,b.nickname,b.sex,b.email,a.addtime,a.updatetime")
  205. ->where(['DTuserid'=>$list['userid'],"unionid"=>$list['unionid'],"a.is_del"=>0])
  206. ->findOrEmpty();
  207. if(empty($userinfo)){
  208. Db::startTrans();
  209. try{
  210. $accountid = $this->DingTalkRegister($list);
  211. Db::commit();
  212. }catch (\Exception $e){
  213. Db::rollback();
  214. return json_show(106,$e->getMessage());
  215. }
  216. $userinfo = Db::name("account")->alias("a")
  217. ->leftJoin("user b","a.id=b.account_id and b.status=1")
  218. ->field("a.id,a.username,a.mobile,a.source,b.nickname,b.sex,b.email,a.addtime,a.updatetime")
  219. ->where(["a.id"=>$accountid,"a.is_del"=>0])
  220. ->findOrEmpty();
  221. }
  222. $token = makeToken($userinfo);
  223. $usercompany = Db::name("account_company")->where(["account_id"=>$userinfo['id'],"is_del"=>0,"status"=>1])
  224. ->column("companyCode,companyName,company_type,is_main,status");
  225. $user['company_relaton'] = $usercompany;
  226. $cache = Cache::store("redis")->set("user:info:{$token}",$user ,$this->token_time);
  227. if($cache==false) return json_show(1003,'token保存失败');
  228. $user['token']=$token;
  229. return json_show(0,"授权成功",$userinfo);
  230. }
  231. /**
  232. * @param $Dingtalinfo
  233. * @return int|string
  234. * @throws \think\Exception
  235. */
  236. private function DingTalkRegister($Dingtalinfo){
  237. $salt=makeSalt();
  238. $data=[
  239. "username"=>$Dingtalinfo['mobile'],
  240. "password"=>sha1("dingding123".$salt),
  241. "mobile"=>$Dingtalinfo['mobile'],
  242. "salt"=>$salt,
  243. "status"=>1,
  244. "source"=>"dingtalk",
  245. "addtime"=>date("Y-m-d H:i:s"),
  246. "updatetime"=>date("Y-m-d H:i:s")
  247. ];
  248. $account = Db::table("sys_account")->insert($data,true);
  249. if($account<=0)throw new Exception("账户创建失败");
  250. $verify = Db::name("user")->where("mobile","=",$Dingtalinfo['mobile'])->findOrEmpty();
  251. if(!empty($verify)){
  252. $verify['unionid']=$Dingtalinfo['unionid'];
  253. $verify['openId']=$Dingtalinfo['openId'];
  254. $verify['DTuserid']=$Dingtalinfo['userid'];
  255. $verify['mobile']=$Dingtalinfo['mobile'];
  256. $verify['account_id']=$account;
  257. isset($verify['portrait'])??$verify['portrait']=$Dingtalinfo['avatar'];
  258. isset($verify['email'])??$verify['email']=$Dingtalinfo['email'];
  259. $verify['updatetime']=date("Y-m-d H:i:s");
  260. $user =Db::name("user")->save($verify);
  261. if($user==false) throw new Exception("用户信息创建失败");
  262. $uid = $verify["id"];
  263. }else{
  264. $data=[
  265. "nickname"=>$Dingtalinfo['name'],
  266. "mobile"=>$Dingtalinfo['mobile'],
  267. "email"=>$Dingtalinfo['email'],
  268. "portrait"=>$Dingtalinfo['avatar'],
  269. "sex"=>1,
  270. "post"=>"",
  271. "unionid"=>$Dingtalinfo['unionid'],
  272. "openId"=>$Dingtalinfo['openId'],
  273. "DTuserid"=>$Dingtalinfo['userid'],
  274. "department"=>"",
  275. "status"=>1,
  276. "account_id"=>$account,
  277. "addtime"=>date("Y-m-d H:i:s"),
  278. "updatetime"=>date("Y-m-d H:i:s")
  279. ];
  280. $uid =Db::name("user")->insert($data,true);
  281. }
  282. if($uid==false) throw new Exception("用户信息创建失败");
  283. return $account;
  284. }
  285. /**
  286. * @return \think\response\Json
  287. * @throws \think\db\exception\DataNotFoundException
  288. * @throws \think\db\exception\DbException
  289. * @throws \think\db\exception\ModelNotFoundException
  290. * @throws \think\exception\DbException
  291. */
  292. public function verify_token(){
  293. $post=$this->request->only(["token"=>''],"post");
  294. $validate=Validate::rule([
  295. 'token' => 'require',
  296. ]);
  297. if($validate->check($post)==false) return json_show(1004,$validate->getError());
  298. $getToken=checkToken($post['token'],$this->token_time);
  299. return $getToken ==false?json_show(104,"token失效") :json_show(0,"获取成功",$getToken);
  300. }
  301. /**
  302. * @return \think\response\Json|void
  303. * @throws \think\db\exception\DataNotFoundException
  304. * @throws \think\db\exception\DbException
  305. * @throws \think\db\exception\ModelNotFoundException
  306. */
  307. public function reset_password_mobile(){
  308. $post=$this->request->post();
  309. $mobile = isset($post['mobile'])? trim($post['mobile']):"";
  310. if($mobile==""){
  311. return json_show(1001,"手机号不能为空");
  312. }
  313. if(checkMobile($mobile)==false){
  314. return json_show(1002,"手机号格式不正确!");
  315. }
  316. $code = isset($post['code'])? trim($post['code']):"";
  317. if($code==""){
  318. return json_show(1001,"验证码不能为空");
  319. }
  320. $username = isset($post['username'])?trim($post['username']):"";
  321. if($username==""){
  322. return json_show(1001,"参数username 不能为空");
  323. }
  324. $account = Db::name("account")->where("username","=",$username)->find();
  325. if($account['mobile']!=$mobile){
  326. return json_show(1004,"账户关联手机号不正确");
  327. }
  328. $password = isset($post['password'])?trim($post['password']):"";
  329. if($password==""){
  330. return json_show(1001,"新密码不能为空");
  331. }
  332. if(sha1($password.$account['salt'])==$account['password']){
  333. return json_show(1001,"新密码不能与原密码相同");
  334. }
  335. $codeinfo = Db::name("send_message")->where(["mobile"=>$mobile,"status"=>0,"msg_type"=>1])->find();
  336. if($code!=$codeinfo['code']){
  337. return json_show(1003,"验证码错误");
  338. }
  339. $codeinfo['status']=1;
  340. Db::name("send_message")->save($codeinfo);
  341. $account['salt']=makeSalt();
  342. $account['updatetime']=date("Y-m-d");
  343. $account['is_pass']=1;
  344. $account['password']=sha1($password.$account['salt']);
  345. $result=Db::name("account")->save($account);
  346. return $result?json_show(0,"密码修改成功"):json_show(1003,"密码修改失败");
  347. }
  348. }