2020-01-01 13:17:19 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\admin\model;
|
|
|
|
|
|
|
|
|
|
use think\Model;
|
|
|
|
|
use think\facade\Db;
|
|
|
|
|
use think\facade\Session;
|
2021-01-30 17:47:18 +08:00
|
|
|
|
use app\oil\model\Station;
|
|
|
|
|
use think\facade\Cookie;
|
|
|
|
|
use think\facade\Config;
|
2020-01-01 13:17:19 +08:00
|
|
|
|
use think\model\concern\SoftDelete;
|
|
|
|
|
|
|
|
|
|
class Admin extends Model
|
|
|
|
|
{
|
|
|
|
|
//软删除
|
|
|
|
|
use SoftDelete;
|
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
|
protected $defaultSoftDelete = 0;
|
|
|
|
|
|
2020-01-08 17:37:41 +08:00
|
|
|
|
//管理员关联角色
|
2020-11-13 17:24:58 +08:00
|
|
|
|
/*
|
2020-01-08 17:37:41 +08:00
|
|
|
|
public function authGroup()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo('AuthGroup','auth_group_id','id');
|
|
|
|
|
}
|
2020-11-13 17:24:58 +08:00
|
|
|
|
*/
|
2021-01-30 17:47:18 +08:00
|
|
|
|
//管理员关联站点
|
|
|
|
|
public function station()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Station::class);
|
|
|
|
|
}
|
2020-11-13 17:24:58 +08:00
|
|
|
|
|
|
|
|
|
//远程一对多管理员关联角色
|
|
|
|
|
public function adminGroup()
|
|
|
|
|
{
|
|
|
|
|
return $this->hasManyThrough('AuthGroup', 'AuthGroupAccess','uid','id','id','group_id');
|
|
|
|
|
}
|
|
|
|
|
//管理员关联角色分配表
|
|
|
|
|
public function authGroupAccess()
|
|
|
|
|
{
|
2021-01-30 17:47:18 +08:00
|
|
|
|
return $this->hasMany(AuthGroupAccess::class,'uid');
|
2020-11-13 17:24:58 +08:00
|
|
|
|
}
|
2020-01-08 17:37:41 +08:00
|
|
|
|
|
2020-01-01 13:17:19 +08:00
|
|
|
|
//登陆校验
|
|
|
|
|
public function login($data)
|
2021-01-30 17:47:18 +08:00
|
|
|
|
{
|
2020-01-01 13:17:19 +08:00
|
|
|
|
//查询用户
|
2020-09-23 12:28:49 +08:00
|
|
|
|
$admin = Db::name('admin')->where('username',$data['username'])->where('delete_time',0)->find();
|
2021-07-22 17:55:10 +08:00
|
|
|
|
if(is_null($admin)){
|
|
|
|
|
return '用户名或密码错误';
|
|
|
|
|
}
|
2020-01-01 13:17:19 +08:00
|
|
|
|
if($admin['status'] !=1){
|
|
|
|
|
return '用户被禁用或未审核,请联系管理员';
|
|
|
|
|
}
|
|
|
|
|
//对输入的密码字段进行MD5加密,再进行数据库的查询
|
|
|
|
|
$salt = substr(md5($admin['create_time']),-6);
|
|
|
|
|
$pwd = substr_replace(md5($data['password']),$salt,0,6);
|
|
|
|
|
$data['password'] = md5($pwd);
|
|
|
|
|
if($admin['password'] == $data['password']){
|
|
|
|
|
|
|
|
|
|
//将用户数据写入Session
|
|
|
|
|
Session::set('admin_id',$admin['id']);
|
|
|
|
|
Session::set('admin_name',$admin['username']);
|
2021-01-30 17:47:18 +08:00
|
|
|
|
|
|
|
|
|
if(isset($data['remember'])){
|
|
|
|
|
$salt = Config::get('taoler.salt');
|
|
|
|
|
//加密auth存入cookie
|
|
|
|
|
$auth = md5($admin['username'].$salt).":".$admin['id'];
|
|
|
|
|
Cookie::set('adminAuth',$auth,604800);
|
|
|
|
|
}
|
2020-01-01 13:17:19 +08:00
|
|
|
|
|
|
|
|
|
Db::name('admin')->where('id',$admin['id'])->update(
|
|
|
|
|
[
|
|
|
|
|
'last_login_time' => time(),
|
|
|
|
|
'last_login_ip' => request()->ip(),
|
|
|
|
|
]
|
2021-01-30 17:47:18 +08:00
|
|
|
|
);
|
2020-01-01 13:17:19 +08:00
|
|
|
|
|
|
|
|
|
//用户名密码正确返回1
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|