2020-01-01 13:17:19 +08:00
|
|
|
|
<?php
|
|
|
|
|
namespace app\common\model;
|
|
|
|
|
|
|
|
|
|
use think\Model;
|
|
|
|
|
use think\model\concern\SoftDelete;
|
|
|
|
|
use think\facade\Session;
|
2020-10-12 11:19:19 +08:00
|
|
|
|
use think\facade\Cookie;
|
2020-11-30 17:13:55 +08:00
|
|
|
|
use think\facade\Config;
|
|
|
|
|
use think\facade\Lang;
|
2021-05-19 16:04:05 +08:00
|
|
|
|
use app\event\UserLogin;
|
2020-01-01 13:17:19 +08:00
|
|
|
|
|
|
|
|
|
class User extends Model
|
|
|
|
|
{
|
|
|
|
|
protected $pk = 'id'; //主键
|
|
|
|
|
protected $autoWriteTimestamp = true; //开启自动时间戳
|
|
|
|
|
protected $createTime = 'false';
|
|
|
|
|
protected $updateTime = 'update_time';
|
|
|
|
|
//protected $auto = ['password']; //定义自动处理的字段
|
|
|
|
|
//自动对password进行md5加密
|
|
|
|
|
protected function setPasswordAttr($value){
|
|
|
|
|
return md5($value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//软删除
|
|
|
|
|
use SoftDelete;
|
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
|
protected $defaultSoftDelete = 0;
|
|
|
|
|
//只读字段,禁止更改
|
|
|
|
|
//protected $readonly = ['email'];
|
|
|
|
|
|
|
|
|
|
//用户关联评论
|
|
|
|
|
public function comments()
|
|
|
|
|
{
|
|
|
|
|
return $this->hasMany('Comment','user_id','id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//用户关联所属区域
|
|
|
|
|
public function userArea()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo('UserArea','user_raea_id','id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//登陆校验
|
|
|
|
|
public function login($data)
|
|
|
|
|
{
|
2020-11-29 17:27:47 +08:00
|
|
|
|
//查询使用邮箱或者用户名登陆
|
2020-11-30 17:13:55 +08:00
|
|
|
|
$user = $this::whereOr('email',$data['name'])->whereOr('name',$data['name'])->findOrEmpty();
|
2021-05-19 16:04:05 +08:00
|
|
|
|
|
|
|
|
|
if(!($user->isEmpty())){
|
|
|
|
|
//错误登陆连续3次且小于10分钟
|
|
|
|
|
if((time() - $user->login_error_time < 60) && is_int($user->login_error_num/3)){
|
|
|
|
|
return Lang::get('Please log in 10 minutes later');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//对输入的密码字段进行MD5加密,再进行数据库的查询
|
2020-11-30 17:13:55 +08:00
|
|
|
|
$salt = substr(md5($user['create_time']),-6);
|
|
|
|
|
$pwd = substr_replace(md5($data['password']),$salt,0,6);
|
|
|
|
|
$data['password'] = md5($pwd);
|
2021-05-19 16:04:05 +08:00
|
|
|
|
|
2020-11-30 17:13:55 +08:00
|
|
|
|
if($user['password'] == $data['password']){
|
|
|
|
|
//将用户数据写入Session
|
|
|
|
|
Session::set('user_id',$user['id']);
|
|
|
|
|
Session::set('user_name',$user['name']);
|
|
|
|
|
if(isset($data['remember'])){
|
|
|
|
|
$salt = Config::get('taoler.salt');
|
|
|
|
|
//加密auth存入cookie
|
|
|
|
|
$auth = md5($user['name'].$salt).":".$user['id'];
|
|
|
|
|
Cookie::set('auth',$auth,604800);
|
|
|
|
|
//Cookie::set('user_id', $user['id'], 604800);
|
|
|
|
|
//Cookie::set('user_name', $user['name'], 604800);
|
|
|
|
|
}
|
2021-05-19 16:04:05 +08:00
|
|
|
|
|
|
|
|
|
$userInfo = ['type'=>'log','id'=>$user->id];
|
|
|
|
|
event(new UserLogin($userInfo));
|
2020-01-01 13:17:19 +08:00
|
|
|
|
|
2020-11-30 17:13:55 +08:00
|
|
|
|
//查询结果1表示有用户,用户名密码正确
|
|
|
|
|
return 1;
|
2021-05-19 16:04:05 +08:00
|
|
|
|
} else {//密码错误登陆错误次数加1
|
|
|
|
|
$userInfo = ['type'=>'logError','id'=>$user->id];
|
|
|
|
|
event(new UserLogin($userInfo));
|
|
|
|
|
//echo $user->login_error_num;
|
|
|
|
|
//连续3次错误
|
|
|
|
|
if(is_int(($user->login_error_num+1)/3) && $user->login_error_num >0 ){
|
|
|
|
|
return Lang::get('Login error 3, Please log in 10 minutes later');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2020-01-01 13:17:19 +08:00
|
|
|
|
}
|
2021-05-19 16:04:05 +08:00
|
|
|
|
return Lang::get('username or password error');
|
2020-01-01 13:17:19 +08:00
|
|
|
|
}
|
2020-11-29 17:27:47 +08:00
|
|
|
|
|
|
|
|
|
//更新数据
|
|
|
|
|
public function updata($data)
|
|
|
|
|
{
|
|
|
|
|
//dump($data);
|
|
|
|
|
}
|
2020-01-01 13:17:19 +08:00
|
|
|
|
|
|
|
|
|
//注册校验
|
|
|
|
|
public function reg($data)
|
|
|
|
|
{
|
|
|
|
|
//随机存入默认头像
|
|
|
|
|
$code = mt_rand('1','11');
|
2020-01-08 17:37:41 +08:00
|
|
|
|
$data['user_img'] = "/static/res/images/avatar/$code.jpg";
|
2020-01-01 13:17:19 +08:00
|
|
|
|
$data['create_time'] = time();
|
|
|
|
|
$salt = substr(md5($data['create_time']),-6);
|
|
|
|
|
$data['password'] = substr_replace(md5($data['password']),$salt,0,6);
|
|
|
|
|
$result = $this->save($data);
|
|
|
|
|
if ($result) {
|
|
|
|
|
return 1;
|
|
|
|
|
} else{
|
|
|
|
|
return '注册失败';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//重置密码
|
|
|
|
|
public function respass($data)
|
|
|
|
|
{ //halt($data);
|
|
|
|
|
$user = $this->where('id',$data['uid'])->find();
|
|
|
|
|
$salt = substr(md5($user['create_time']),-6);
|
|
|
|
|
$data['password'] = substr_replace(md5($data['password']),$salt,0,6);
|
|
|
|
|
$result = $user->save($data);
|
|
|
|
|
if ($result) {
|
|
|
|
|
return 1;
|
|
|
|
|
} else{
|
|
|
|
|
return '更改失败';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//更新设置
|
|
|
|
|
public function setNew($data)
|
|
|
|
|
{
|
|
|
|
|
$userId = $data['user_id'];
|
|
|
|
|
$user = User::where('id',$userId)->find();
|
2020-05-23 09:51:24 +08:00
|
|
|
|
$result = $user->allowField(['email','nickname','sex','city','area_id','sign'])->save($data);
|
2020-01-01 13:17:19 +08:00
|
|
|
|
if($result){
|
|
|
|
|
return 1;
|
|
|
|
|
}else{
|
|
|
|
|
return '修改失败';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//用户修改密码
|
|
|
|
|
public function setpass($data)
|
|
|
|
|
{
|
|
|
|
|
$user = $this->find($data['user_id']);
|
|
|
|
|
$salt = substr(md5($user['create_time']),-6);
|
|
|
|
|
$pwd = substr_replace(md5($data['nowpass']),$salt,0,6);
|
|
|
|
|
$data['nowpass'] = md5($pwd);
|
|
|
|
|
$result = $data['nowpass'] == $user['password'];
|
|
|
|
|
if(!$result){
|
|
|
|
|
return '当前密码不正确';
|
|
|
|
|
}
|
|
|
|
|
$data['password'] = substr_replace(md5($data['password']),$salt,0,6);
|
|
|
|
|
$user->password = $data['password'];
|
|
|
|
|
$result = $user->save();
|
|
|
|
|
if($result){
|
|
|
|
|
return 1;
|
|
|
|
|
}else{
|
|
|
|
|
return '修改失败,请改换密码';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|