123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- <?php
- namespace app\admin\library;
- use think\facade\Cache;
- use Throwable;
- use ba\Random;
- use think\facade\Db;
- use think\facade\Config;
- use app\admin\model\Admin;
- use app\common\facade\Token;
- use app\admin\model\AdminGroup;
- /**
- * 管理员权限类
- * @property int $id 管理员ID
- * @property string $username 管理员用户名
- * @property string $nickname 管理员昵称
- * @property string $email 管理员邮箱
- * @property string $mobile 管理员手机号
- */
- class Auth extends \ba\Auth
- {
- /**
- * 需要登录时/无需登录时的响应状态代码
- */
- public const LOGIN_RESPONSE_CODE = 303;
- /**
- * 需要登录标记 - 前台应清理 token、记录当前路由 path、跳转到登录页
- */
- public const NEED_LOGIN = 'need login';
- /**
- * 已经登录标记 - 前台应跳转到基础路由
- */
- public const LOGGED_IN = 'logged in';
- /**
- * token 入库 type
- */
- public const TOKEN_TYPE = 'admin';
- /**
- * 是否登录
- * @var bool
- */
- protected bool $loginEd = false;
- /**
- * 错误消息
- * @var string
- */
- protected string $error = '';
- /**
- * Model实例
- * @var ?Admin
- */
- protected ?Admin $model = null;
- /**
- * 令牌
- * @var string
- */
- protected string $token = '';
- /**
- * 刷新令牌
- * @var string
- */
- protected string $refreshToken = '';
- /**
- * 令牌默认有效期
- * 可在 config/buildadmin.php 内修改默认值
- * @var int
- */
- protected int $keepTime = 86400;
- /**
- * 刷新令牌有效期
- * @var int
- */
- protected int $refreshTokenKeepTime = 2592000;
- /**
- * 允许输出的字段
- * @var array
- */
- protected array $allowFields = ['id', 'username', 'nickname', 'avatar', 'last_login_time','depart','depart_id','institution','institution_id'];
- public function __construct(array $config = [])
- {
- parent::__construct($config);
- $this->setKeepTime((int)Config::get('buildadmin.admin_token_keep_time'));
- }
- /**
- * 魔术方法-管理员信息字段
- * @param $name
- * @return mixed 字段信息
- */
- public function __get($name): mixed
- {
- return $this->model?->$name;
- }
- /**
- * 初始化
- * @access public
- * @param array $options 传递到 /ba/Auth 的配置信息
- * @return Auth
- */
- public static function instance(array $options = []): Auth
- {
- $request = request();
- if (!isset($request->adminAuth)) {
- $request->adminAuth = new static($options);
- }
- return $request->adminAuth;
- }
- /**
- * 根据Token初始化管理员登录态
- * @param string $token
- * @return bool
- * @throws Throwable
- */
- public function init(string $token): bool
- {
- $tokenData = Token::get($token);
- if ($tokenData) {
- /**
- * 过期检查,过期则抛出 @see TokenExpirationException
- */
- Token::tokenExpirationCheck($tokenData);
- $userId = intval($tokenData['user_id']);
- if ($tokenData['type'] == self::TOKEN_TYPE && $userId > 0) {
- $this->model = Admin::where('id', $userId)->find();
- if (!$this->model) {
- $this->setError('Account not exist');
- return false;
- }
- if ($this->model['status'] != '1') {
- $this->setError('Account disabled');
- return false;
- }
- $this->token = $token;
- $this->loginSuccessful();
- return true;
- }
- }
- $this->setError('Token login failed');
- $this->reset();
- return false;
- }
- /**
- * 管理员登录
- * @param string $username 用户名
- * @param string $password 密码
- * @param bool $keep 是否保持登录
- * @return bool
- * @throws Throwable
- */
- public function login(string $username, string $password, bool $keep = false,&$force=0,&$userId='')//: bool
- {
- $this->model = Admin::where('username', $username)->find();
- if (!$this->model) {
- $this->setError('Username is incorrect');
- return false;
- }
- if ($this->model->STATUS == '0') {
- $this->setError('Account disabled');
- return false;
- }
- $adminLoginRetry = Config::get('buildadmin.admin_login_retry');
- if ($adminLoginRetry && $this->model->LOGIN_FAILURE >= $adminLoginRetry && time() - $this->model->getData('last_login_time') < 86400) {
- $this->setError('Please try again after 1 day');
- return false;
- }
- if ($this->model->PASSWORD != encrypt_password($password, $this->model->SALT)) {
- $this->loginFailed();
- $this->setError('Password is incorrect');
- return false;
- }
- if (Config::get('buildadmin.admin_sso')) {
- Token::clear(self::TOKEN_TYPE, $this->model->ID);
- Token::clear(self::TOKEN_TYPE . '-refresh', $this->model->ID);
- }
- $userId = $this->model->ID;
- if($password == $username.'@Zskk2024')
- {
- $force = 3;
- return true;
- }
- if(empty($this->model->UPDATE_PASS_TIME))
- {
- //初始密码未更换过
- $force = 1;
- return true;
- }
- if((time()-(strtotime($this->model->UPDATE_PASS_TIME))) > 90*86400)
- {
- //密码未更新的时间超过90天
- $force = 2;
- return true;
- }
- if ($keep) {
- $this->setRefreshToken($this->refreshTokenKeepTime);
- }
- $a = $this->loginSuccessful();
- if(Cache::get('admin_only'.$username))
- {
- $other = Cache::get('admin_only'.$username);
- Cache::delete($other);
- Cache::delete('admin_only'.$username);
- }
- $token = $this->getToken();
- Cache::set('admin_only'.$username,$token);
- Cache::set($token,time());
- return true;
- }
- public function loginByToken(string $token)
- {
- $data = Cache::get($token);
- if(empty($data))
- {
- $this->setError('过期的token');
- return '';
- }
- $code = $data['orgCode'];
- $institution = Db::name('institution')->where('institution_code',$code)->find();
- if(empty($institution))
- {
- $this->setError('无效的机构码');
- return '';
- }
- $string = time().rand(0,9999);
- Cache::set($string,$token,8640);
- $arr['userInfo'] = [
- 'avatar'=>'/storage/default/20240918/8587087c718ab44a3b2a24b4584ff8321c7ecde8801f393.jpg',
- 'id'=>1,
- 'last_login_time'=>date('Y-m-d H:i:s'),
- 'nickname'=>$institution['name'],
- 'refresh_token'=>'',
- 'token'=>$string,
- 'username'=>$institution['name']
- ];
- // Token::set($string, self::TOKEN_TYPE . '-refresh', 1, 3600);
- return $arr;
- }
- /**
- * 设置刷新Token
- * @param int $keepTime
- */
- public function setRefreshToken(int $keepTime = 0): void
- {
- $this->refreshToken = Random::uuid();
- Token::set($this->refreshToken, self::TOKEN_TYPE . '-refresh', $this->model->ID, $keepTime);
- }
- /**
- * 管理员登录成功
- * @return bool
- */
- public function loginSuccessful(): bool
- {
- if (!$this->model) return false;
- $this->model->startTrans();
- try {
- $this->model->LOGIN_FAILURE = 0;
- $this->model->LAST_LOGIN_TIME = time();
- $this->model->LAST_LOGIN_IP = request()->ip();
- $this->model->save();
- $this->loginEd = true;
- if (!$this->token) {
- $this->token = Random::uuid();
- Token::set($this->token, self::TOKEN_TYPE, $this->model->ID, $this->keepTime);
- }
- $this->model->commit();
- } catch (Throwable $e) {
- $this->model->rollback();
- $this->setError($e->getMessage());
- return false;
- }
- return true;
- }
- /**
- * 管理员登录失败
- * @return bool
- */
- public function loginFailed(): bool
- {
- if (!$this->model) return false;
- $this->model->startTrans();
- try {
- $this->model->LOGIN_FAILURE++;
- $this->model->LAST_LOGIN_TIME = time();
- $this->model->LAST_LOGIN_IP = request()->ip();
- $this->model->save();
- $this->model->commit();
- } catch (Throwable $e) {
- $this->model->rollback();
- $this->setError($e->getMessage());
- return false;
- }
- return $this->reset();
- }
- /**
- * 退出登录
- * @return bool
- */
- public function logout(): bool
- {
- if (!$this->loginEd) {
- $this->setError('You are not logged in');
- return false;
- }
- return $this->reset();
- }
- /**
- * 是否登录
- * @return bool
- */
- public function isLogin(): bool
- {
- return $this->loginEd;
- }
- /**
- * 获取管理员模型
- * @return Admin
- */
- public function getAdmin(): Admin
- {
- return $this->model;
- }
- /**
- * 获取管理员Token
- * @return string
- */
- public function getToken(): string
- {
- return $this->token;
- }
- /**
- * 获取管理员刷新Token
- * @return string
- */
- public function getRefreshToken(): string
- {
- return $this->refreshToken;
- }
- /**
- * 获取管理员信息 - 只输出允许输出的字段
- * @return array
- */
- public function getInfo(): array
- {
- var_dump($this->model);die;
- if (!$this->model) return [];
- $info = $this->model->toArray();
- $info = array_intersect_key($info, array_flip($this->getAllowFields()));
- $info['token'] = $this->getToken();
- $info['refresh_token'] = $this->getRefreshToken();
- return $info;
- }
- /**
- * 获取允许输出字段
- * @return array
- */
- public function getAllowFields(): array
- {
- return $this->allowFields;
- }
- /**
- * 设置允许输出字段
- * @param $fields
- * @return void
- */
- public function setAllowFields($fields): void
- {
- $this->allowFields = $fields;
- }
- /**
- * 设置Token有效期
- * @param int $keepTime
- * @return void
- */
- public function setKeepTime(int $keepTime = 0): void
- {
- $this->keepTime = $keepTime;
- }
- public function check(string $name, int $uid = 0, string $relation = 'or', string $mode = 'url'): bool
- {
- return parent::check($name, $uid ?: $this->id, $relation, $mode);
- }
- public function getGroups(int $uid = 0): array
- {
- return parent::getGroups($uid ?: $this->id);
- }
- public function getRuleList(int $uid = 0): array
- {
- return parent::getRuleList($uid ?: $this->id);
- }
- public function getRuleIds(int $uid = 0): array
- {
- return parent::getRuleIds($uid ?: $this->id);
- }
- public function getMenus(int $uid = 0): array
- {
- return parent::getMenus($uid ?: $this->id);
- }
- /**
- * 是否是超级管理员
- * @throws Throwable
- */
- public function isSuperAdmin(): bool
- {
- return in_array('*', $this->getRuleIds());
- }
- /**
- * 获取管理员所在分组的所有子级分组
- * @return array
- * @throws Throwable
- */
- public function getAdminChildGroups(): array
- {
- $groupIds = Db::name('admin_group_access')
- ->where('uid', $this->id)
- ->select();
- $children = [];
- foreach ($groupIds as $group) {
- $this->getGroupChildGroups($group['group_id'], $children);
- }
- return array_unique($children);
- }
- /**
- * 获取一个分组下的子分组
- * @param int $groupId 分组ID
- * @param array $children 存放子分组的变量
- * @return void
- * @throws Throwable
- */
- public function getGroupChildGroups(int $groupId, array &$children): void
- {
- $childrenTemp = AdminGroup::where('pid', $groupId)
- ->where('status', '1')
- ->select();
- foreach ($childrenTemp as $item) {
- $children[] = $item['id'];
- $this->getGroupChildGroups($item['id'], $children);
- }
- }
- /**
- * 获取分组内的管理员
- * @param array $groups
- * @return array 管理员数组
- */
- public function getGroupAdmins(array $groups): array
- {
- return Db::name('admin_group_access')
- ->where('group_id', 'in', $groups)
- ->column('uid');
- }
- /**
- * 获取拥有"所有权限"的分组
- * @param string $dataLimit 数据权限
- * @return array 分组数组
- * @throws Throwable
- */
- public function getAllAuthGroups(string $dataLimit): array
- {
- // 当前管理员拥有的权限
- $rules = $this->getRuleIds();
- $allAuthGroups = [];
- $groups = AdminGroup::where('status', '1')->select();
- foreach ($groups as $group) {
- if ($group['rules'] == '*') {
- continue;
- }
- $groupRules = explode(',', $group['rules']);
- // 及时break, array_diff 等没有 in_array 快
- $all = true;
- foreach ($groupRules as $groupRule) {
- if (!in_array($groupRule, $rules)) {
- $all = false;
- break;
- }
- }
- if ($all) {
- if ($dataLimit == 'allAuth' || ($dataLimit == 'allAuthAndOthers' && array_diff($rules, $groupRules))) {
- $allAuthGroups[] = $group['id'];
- }
- }
- }
- return $allAuthGroups;
- }
- /**
- * 设置错误消息
- * @param $error
- * @return Auth
- */
- public function setError($error): Auth
- {
- $this->error = $error;
- return $this;
- }
- /**
- * 获取错误消息
- * @return string
- */
- public function getError(): string
- {
- return $this->error ? __($this->error) : '';
- }
- /**
- * 属性重置(注销、登录失败、重新初始化等将单例数据销毁)
- */
- protected function reset(bool $deleteToken = true): bool
- {
- if ($deleteToken && $this->token) {
- Token::delete($this->token);
- }
- $this->token = '';
- $this->loginEd = false;
- $this->model = null;
- $this->refreshToken = '';
- $this->setError('');
- $this->setKeepTime((int)Config::get('buildadmin.admin_token_keep_time'));
- return true;
- }
- }
|