123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- <?php
- declare(strict_types=1);
- namespace catcher;
- use catchAdmin\permissions\model\Users;
- use catcher\exceptions\FailedException;
- use catcher\exceptions\LoginFailedException;
- use thans\jwt\facade\JWTAuth;
- use think\facade\Session;
- use think\helper\Str;
- class CatchAuth
- {
- protected $auth;
- protected $guard;
- // 默认获取
- protected $username = 'email';
- // 校验字段
- protected $password = 'password';
- // 保存用户信息
- protected $user = [];
- public function __construct()
- {
- $this->auth = config('catch.auth');
- $this->guard = $this->auth['default']['guard'];
- }
- /**
- * set guard
- *
- * @time 2020年01月07日
- * @param $guard
- * @return $this
- */
- public function guard($guard)
- {
- $this->guard = $guard;
- return $this;
- }
- /**
- *
- * @time 2020年01月07日
- * @param $condition
- * @return mixed
- */
- public function attempt($condition)
- {
- try {
- $user = $this->authenticate($condition);
- if (!$user) {
- throw new LoginFailedException();
- }
- if ($user->status == Users::DISABLE) {
- throw new LoginFailedException('该用户已被禁用|' . $user->username, Code::USER_FORBIDDEN);
- }
- if (!password_verify($condition['password'], $user->password)) {
- throw new LoginFailedException('登录失败|' . $user->username);
- }
- return $this->{$this->getDriver()}($user);
- } catch (\Exception $exception) {
- //
- }
- }
- /**
- * user
- *
- * @time 2020年09月09日
- * @return mixed
- */
- public function user()
- {
- $user = $this->user[$this->guard] ?? null;
- if (!$user) {
- switch ($this->getDriver()) {
- case 'jwt':
- $model = app($this->getProvider()['model']);
- $user = $model->where($model->getPk(), JWTAuth::auth()[$this->jwtKey()])->find();
- break;
- case 'session':
- $user = Session::get($this->sessionUserKey(), null);
- break;
- default:
- throw new FailedException('user not found');
- }
- $this->user[$this->guard] = $user;
- return $user;
- }
- return $user;
- }
- /**
- *
- * @time 2020年01月07日
- * @return mixed
- */
- public function logout()
- {
- switch ($this->getDriver()) {
- case 'jwt':
- return true;
- case 'session':
- Session::delete($this->sessionUserKey());
- return true;
- default:
- throw new FailedException('user not found');
- }
- }
- /**
- *
- * @time 2020年01月07日
- * @param $user
- * @return string
- */
- protected function jwt($user)
- {
- $token = JWTAuth::builder([$this->jwtKey() => $user->id]);
- JWTAuth::setToken($token);
- return $token;
- }
- /**
- *
- * @time 2020年01月07日
- * @param $user
- * @return void
- */
- protected function session($user)
- {
- Session::set($this->sessionUserKey(), $user);
- }
- /**
- *
- * @time 2020年01月07日
- * @return string
- */
- protected function sessionUserKey()
- {
- return $this->guard . '_user';
- }
- /**
- *
- * @time 2020年01月07日
- * @return string
- */
- protected function jwtKey()
- {
- return $this->guard . '_id';
- }
- /**
- *
- * @time 2020年01月07日
- * @return mixed
- */
- protected function getDriver()
- {
- return $this->auth['guards'][$this->guard]['driver'];
- }
- /**
- *
- * @time 2020年01月07日
- * @return mixed
- */
- protected function getProvider()
- {
- if (!isset($this->auth['guards'][$this->guard])) {
- throw new FailedException('Auth Guard Not Found');
- }
- return $this->auth['providers'][$this->auth['guards'][$this->guard]['provider']];
- }
- /**
- *
- * @time 2020年01月07日
- * @param $condition
- * @return mixed
- */
- protected function authenticate($condition)
- {
- $provider = $this->getProvider();
- return $this->{$provider['driver']}($condition);
- }
- /**
- *
- * @time 2020年01月07日
- * @param $condition
- * @return void
- */
- protected function database($condition): void
- {}
- /**
- *
- * @time 2020年01月07日
- * @param $condition
- * @return mixed
- */
- protected function orm($condition)
- {
- return app($this->getProvider()['model'])->where($this->filter($condition))->find();
- }
- /**
- *
- * @time 2020年01月07日
- * @param $condition
- * @return array
- */
- protected function filter($condition): array
- {
- $where = [];
- foreach ($condition as $field => $value) {
- if ($field != $this->password) {
- $where[$field] = $value;
- }
- }
- return $where;
- }
- /**
- *
- * @time 2020年01月07日
- * @param $field
- * @return $this
- */
- public function username($field): self
- {
- $this->username = $field;
- return $this;
- }
- /**
- *
- * @time 2020年01月07日
- * @param $field
- * @return $this
- */
- public function password($field): self
- {
- $this->password = $field;
- return $this;
- }
- }
|