Login.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. namespace app\Home\controller;
  3. use think\Db;
  4. class Login
  5. {
  6. /**
  7. * @method post
  8. * @param username 账户名
  9. * @param password 密码
  10. *
  11. */
  12. public function __construct(){
  13. if(request()->isOptions()){
  14. echo '';
  15. die();
  16. }
  17. }
  18. public function index(){
  19. $post=request()->post();
  20. $username = isset($post['username'])&&$post['username']!="" ? trim($post['username']) :"";
  21. if($username==""){
  22. return error_show(1004,"参数username 不能为空");
  23. }
  24. $password = isset($post['password'])&&$post['password']!="" ? trim($post['password']):"";
  25. if($password==""){
  26. return error_show(1004,"参数username 不能为空");
  27. }
  28. $account = Db::name("account")->where(["is_del"=>0,"username"=>$username])->find();
  29. if(empty($account)){
  30. return error_show(1005,"卡号不正确");
  31. }
  32. $pass = sha1($password.$account['salt']);
  33. if($pass!=$account['password']){
  34. return error_show(1006,"账户密码错误");
  35. }
  36. if($account['status']==2){
  37. return error_show(1005,"卡号已过有效期");
  38. }
  39. $now =time();
  40. $expire = strtotime($account['expiretime']);
  41. $start = strtotime($account['starttime']);
  42. if($now<$start){
  43. return error_show(1005,"账户未到生效期");
  44. }
  45. if($now>$expire){
  46. return error_show(1005,"账户已过有效期");
  47. }
  48. if($account['status']==0){
  49. $account['status']=1;
  50. $account['activetime']=date("Y-m-d H:i:s");
  51. $account['updatetime']=date("Y-m-d H:i:s");
  52. Db::name("account")->update($account);
  53. }
  54. $token = makeToken($account);
  55. $userinfo = Db::name("account_info")->alias("a")->join("fc_rela_account b","b.account_info=a.id")->where(["b.accountid"=>$account['id']])->field("a.*")->find();
  56. $userinfo['token'] = $token;
  57. write_log("账户{$account['username']}登录系统","","homelogin","",1);
  58. return app_show(0,"登录成功",$userinfo);
  59. }
  60. public function logout(){
  61. $post=request()->post();
  62. $token = isset($post['token'])&&$post['token']!="" ? trim($post['token']) :"";
  63. if($token==""){
  64. return error_show(101,"参数token 不能为空");
  65. }
  66. $verify = verifyToken($token);
  67. if($verify['code']!=0){
  68. return error_show($verify['code'],$verify['msg']);
  69. }
  70. $info = Db::name("account_token")->where(["token"=>$token])->update(['token'=>""]);
  71. if($info){
  72. return app_show(0,"退出成功");
  73. }else{
  74. return error_show(1004,"退出失败");
  75. }
  76. }
  77. public function passwd(){
  78. $post=request()->post();
  79. $username = isset($post['username']) && $post['username'] !== "" ? $post['username'] : "";
  80. // var_dump($post);
  81. if($username==""){
  82. return error_show(1004, "参数username不能为空");
  83. }
  84. $info = Db::name("account")->where(["is_del" => 0, "username" =>$username ])->find();
  85. if (empty($info)) {
  86. return error_show(1004, "未找到数据");
  87. }
  88. $pas = isset($post['pas']) && $post['pas'] !== "" ? trim($post['pas']) : "";
  89. // var_dump($pas);
  90. if($pas==""){
  91. return error_show(1002,"参数pas不能为空");
  92. }
  93. // var_dump(sha1($pas.$info['salt']));
  94. // var_dump($info['password']);
  95. if(sha1($pas.$info['salt'])!==$info['password']){
  96. return error_show(1004, "原密码填写不正确");
  97. }
  98. $pasword = isset($post['pasword']) && $post['pasword'] !== "" ? trim($post['pasword']) : "";
  99. // var_dump($pasword);
  100. if($pasword===""){
  101. return error_show(1004, "参数password 不能为空");
  102. }
  103. if ($pas==$pasword) {
  104. return error_show(1004, "新密码不能与原密码相同");
  105. }
  106. // if (!checkPasswd($pasword)) {
  107. // return error_show(1004, "密码格式不正确");
  108. // }
  109. $salt=makeSalt();
  110. $info['salt']=$salt;
  111. $info['password']=sha1($pasword . $salt);
  112. $info['pwd']=$pasword;
  113. $info['updatetime']=date("Y-m-d H:i:s");
  114. $item = Db::name('account')->where(['username'=>$username,'is_del'=>0])->update($info);
  115. return $item ?app_show(0,"账户密码修改成功"): error_show(1005, "账户密码修改失败");
  116. }
  117. }