<?php
namespace app\service\admin;
use laytp\library\Token;
use laytp\traits\Error;
class User
{
use Error;
protected $_user = null protected $_token = null protected $_isLogin = null protected $userModel = null protected $allowFields = ['id', 'username', 'nickname', 'avatar', 'is_super_manager', 'status', 'create_time'];
protected $tokenKeepTime = 365 * 24 * 60 * 60
public function init($token)
{
if (!$token) {
$this->setError('token不能为空,请重新登录');
return false;
}
$data = Token::get($token);
if (!$data) {
$this->setError('token无效,请重新登录');
return false;
}
$userId = intval($data['user_id']);
if ($userId > 0) {
$user = \app\model\admin\User::with(['avatar_file'])->findOrEmpty($userId);
if (!$user) {
$this->setError('账号不存在,请重新登录');
return false;
}
if ($user['status'] != 1) {
$this->setError('账号被禁用,请联系管理员');
return false;
}
$this->_user = $user;
$this->_isLogin = true;
$this->_token = $token;
return true;
} else {
$this->setError('账号不存在,请重新登录');
return false;
}
}
public function logout()
{
if (!$this->_isLogin) {
$this->setError('你没有登录');
return false;
}
$this->_isLogin = false;
Token::delete($this->_token);
return true;
}
public function getUserInfo()
{
$data = $this->_user->toArray();
$allowFields = $this->getAllowFields();
$userInfo = array_intersect_key($data, array_flip($allowFields));
$userInfo['avatar_file'] = $data['avatar_file'];
$userInfo = array_merge($userInfo, ['token' => $this->_token]);
return $userInfo;
}
public function getAllowFields()
{
return $this->allowFields;
}
public function getUser()
{
return $this->_user;
}
public function isLogin()
{
if ($this->_isLogin) {
return true;
}
return false;
}
public function getToken()
{
return $this->_token;
}
}