|
@@ -3,20 +3,22 @@ declare (strict_types = 1);
|
|
|
|
|
|
namespace app\controller;
|
|
|
|
|
|
-use app\BaseController;
|
|
|
use app\model\Account;
|
|
|
use think\facade\Cache;
|
|
|
-use think\Exception;use think\facade\Db;
|
|
|
+use think\Exception;
|
|
|
+use think\facade\Db;
|
|
|
use think\App;
|
|
|
use think\facade\Validate;
|
|
|
|
|
|
-class User extends BaseController
|
|
|
+class User extends Base
|
|
|
{
|
|
|
private $token_time = 0;// token 有效时间
|
|
|
+ private $model =null;// token 有效时间
|
|
|
public function __construct(App $app)
|
|
|
{
|
|
|
parent::__construct($app);
|
|
|
$this->token_time= env("token.expire");
|
|
|
+ $this->model = new Account();
|
|
|
}
|
|
|
/**注册接口
|
|
|
* @param string username 账户名称
|
|
@@ -128,11 +130,12 @@ class User extends BaseController
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @param string username 账户
|
|
|
+ * @param string username 账户
|
|
|
* @param string password 密码
|
|
|
* @param string plat_code 来源
|
|
|
* @return \think\response\Json
|
|
|
* @throws \Psr\SimpleCache\InvalidArgumentException
|
|
|
+ * @throws \think\Exception
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
* @throws \think\db\exception\DbException
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
@@ -140,53 +143,26 @@ class User extends BaseController
|
|
|
*/
|
|
|
public function login()
|
|
|
{
|
|
|
- $post = $this->request->only(["username" => "", "password" => "", "plat_code" => ""], "post", "trim");
|
|
|
+ $post = $this->request->only(["username" => "", "password" => "", "plat_code" => "","openId"=>""], "post", "trim");
|
|
|
$validate = Validate::rule([
|
|
|
'username|账户名称' => 'require|max:255',
|
|
|
'password|密码' => 'require|min:6|max:200',
|
|
|
]);
|
|
|
- if ($validate->check($post) == false) return json_show(1004, $validate->getError());
|
|
|
+ if ($validate->check($post) == false) $this->error($validate->getError(),1004);
|
|
|
|
|
|
- $acc = Db::name("account")
|
|
|
- ->where(['username' => $post['username'], "is_del" => Account::$account_del])
|
|
|
- ->find();
|
|
|
- if ($acc == false) return json_show(1003, '账户名不存在');
|
|
|
-
|
|
|
- if ($acc['status'] == Account::$account_end) return json_show(1003, '账户已禁用');
|
|
|
+ $acc = $this->model->withJoin(["userinfo","accountitem"],"left")->where(['username' => $post['username']])->findOrEmpty();
|
|
|
+ if ($acc->isEmpty() == false) return json_show(1003, '账户名不存在');
|
|
|
|
|
|
+ if ($acc['status'] == Account::$account_end)$this->error('账户已禁用',1003);
|
|
|
$sha1 = sha1($post['password'] . $acc['salt']);
|
|
|
- if ($sha1 != $acc['password']) return json_show(1003, '账户或密码错误');
|
|
|
+ if ($sha1 != $acc['password']) $this->error('账户或密码错误',1003);
|
|
|
|
|
|
$token = makeToken($acc);
|
|
|
- if ($token == "") return json_show(1003, 'token生成失败');
|
|
|
-
|
|
|
- //account_plat 是空表
|
|
|
-// if ($post['plat_code'] != "") {
|
|
|
-// $platinfo = Db::name("account_plat")
|
|
|
-// ->alias("a")
|
|
|
-// ->leftJoin("platform b", "a.plat_code=b.plat_code and b.is_del=0 and b.status=1")
|
|
|
-// ->where(["a.status" => 1, "a.is_del" => 0, "a.plat_code" => $post['plat_code'], "a.account_id" => $acc['id']])
|
|
|
-// ->findOrEmpty();
|
|
|
-// if (empty($platinfo)) return json_show(1003, '该系统账号未开通登录');
|
|
|
-//
|
|
|
-// }
|
|
|
- $user = Db::name("account")
|
|
|
- ->alias("a")
|
|
|
- ->leftJoin("user b", "a.id=b.account_id and b.status=1")
|
|
|
- ->leftJoin("account_item c", "c.account_id=a.id")
|
|
|
- ->field("a.id,a.username,a.mobile,a.source,a.level,b.nickname,b.sex,b.email,a.addtime,a.updatetime,c.itemid,c.position")
|
|
|
- ->where(["a.id" => $acc["id"]])
|
|
|
- ->find();
|
|
|
- if ($user == false) return json_show(1003, '用户信息不存在');
|
|
|
-
|
|
|
- $usercompany = Db::name("account_company")
|
|
|
- ->where(["account_id" => $user['id'], "is_del" => 0, "status" => 1])
|
|
|
- ->column("companyCode,companyCode companyNo,companyName,companyName company_name,company_type,is_main,status");
|
|
|
- $user['company_relaton'] = $usercompany;
|
|
|
- $cache = Cache::store("redis")->set("user:info:{$token}", $user, $this->token_time);
|
|
|
- if ($cache == false) return json_show(1003, 'token保存失败');
|
|
|
- $user['token'] = $token;
|
|
|
- return json_show(0, "登录成功", $user);
|
|
|
+ if ($token == "") $this->error('token生成失败',1003);
|
|
|
+ $cache = Cache::store("redis")->set("user:info:{$token}", $acc->toArray(), $this->token_time);
|
|
|
+ if ($cache == false)$this->error('token保存失败',1003);
|
|
|
+ $acc['token'] = $token;
|
|
|
+ $this->success("登录成功", $acc);
|
|
|
}
|
|
|
|
|
|
/**
|