CatchAuth.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. use catchAdmin\permissions\model\Users;
  5. use catcher\exceptions\FailedException;
  6. use catcher\exceptions\LoginFailedException;
  7. use thans\jwt\facade\JWTAuth;
  8. use think\facade\Session;
  9. use think\helper\Str;
  10. class CatchAuth
  11. {
  12. protected $auth;
  13. protected $guard;
  14. // 默认获取
  15. protected $username = 'email';
  16. // 校验字段
  17. protected $password = 'password';
  18. // 保存用户信息
  19. protected $user = [];
  20. public function __construct()
  21. {
  22. $this->auth = config('catch.auth');
  23. $this->guard = $this->auth['default']['guard'];
  24. }
  25. /**
  26. * set guard
  27. *
  28. * @time 2020年01月07日
  29. * @param $guard
  30. * @return $this
  31. */
  32. public function guard($guard)
  33. {
  34. $this->guard = $guard;
  35. return $this;
  36. }
  37. /**
  38. *
  39. * @time 2020年01月07日
  40. * @param $condition
  41. * @return mixed
  42. */
  43. public function attempt($condition)
  44. {
  45. try {
  46. $user = $this->authenticate($condition);
  47. if (!$user) {
  48. throw new LoginFailedException();
  49. }
  50. if ($user->status == Users::DISABLE) {
  51. throw new LoginFailedException('该用户已被禁用|' . $user->username, Code::USER_FORBIDDEN);
  52. }
  53. if (!password_verify($condition['password'], $user->password)) {
  54. throw new LoginFailedException('登录失败|' . $user->username);
  55. }
  56. return $this->{$this->getDriver()}($user);
  57. } catch (\Exception $exception) {
  58. //
  59. }
  60. }
  61. /**
  62. * user
  63. *
  64. * @time 2020年09月09日
  65. * @return mixed
  66. */
  67. public function user()
  68. {
  69. $user = $this->user[$this->guard] ?? null;
  70. if (!$user) {
  71. switch ($this->getDriver()) {
  72. case 'jwt':
  73. $model = app($this->getProvider()['model']);
  74. $user = $model->where($model->getPk(), JWTAuth::auth()[$this->jwtKey()])->find();
  75. break;
  76. case 'session':
  77. $user = Session::get($this->sessionUserKey(), null);
  78. break;
  79. default:
  80. throw new FailedException('user not found');
  81. }
  82. $this->user[$this->guard] = $user;
  83. return $user;
  84. }
  85. return $user;
  86. }
  87. /**
  88. *
  89. * @time 2020年01月07日
  90. * @return mixed
  91. */
  92. public function logout()
  93. {
  94. switch ($this->getDriver()) {
  95. case 'jwt':
  96. return true;
  97. case 'session':
  98. Session::delete($this->sessionUserKey());
  99. return true;
  100. default:
  101. throw new FailedException('user not found');
  102. }
  103. }
  104. /**
  105. *
  106. * @time 2020年01月07日
  107. * @param $user
  108. * @return string
  109. */
  110. protected function jwt($user)
  111. {
  112. $token = JWTAuth::builder([$this->jwtKey() => $user->id]);
  113. JWTAuth::setToken($token);
  114. return $token;
  115. }
  116. /**
  117. *
  118. * @time 2020年01月07日
  119. * @param $user
  120. * @return void
  121. */
  122. protected function session($user)
  123. {
  124. Session::set($this->sessionUserKey(), $user);
  125. }
  126. /**
  127. *
  128. * @time 2020年01月07日
  129. * @return string
  130. */
  131. protected function sessionUserKey()
  132. {
  133. return $this->guard . '_user';
  134. }
  135. /**
  136. *
  137. * @time 2020年01月07日
  138. * @return string
  139. */
  140. protected function jwtKey()
  141. {
  142. return $this->guard . '_id';
  143. }
  144. /**
  145. *
  146. * @time 2020年01月07日
  147. * @return mixed
  148. */
  149. protected function getDriver()
  150. {
  151. return $this->auth['guards'][$this->guard]['driver'];
  152. }
  153. /**
  154. *
  155. * @time 2020年01月07日
  156. * @return mixed
  157. */
  158. protected function getProvider()
  159. {
  160. if (!isset($this->auth['guards'][$this->guard])) {
  161. throw new FailedException('Auth Guard Not Found');
  162. }
  163. return $this->auth['providers'][$this->auth['guards'][$this->guard]['provider']];
  164. }
  165. /**
  166. *
  167. * @time 2020年01月07日
  168. * @param $condition
  169. * @return mixed
  170. */
  171. protected function authenticate($condition)
  172. {
  173. $provider = $this->getProvider();
  174. return $this->{$provider['driver']}($condition);
  175. }
  176. /**
  177. *
  178. * @time 2020年01月07日
  179. * @param $condition
  180. * @return void
  181. */
  182. protected function database($condition): void
  183. {}
  184. /**
  185. *
  186. * @time 2020年01月07日
  187. * @param $condition
  188. * @return mixed
  189. */
  190. protected function orm($condition)
  191. {
  192. return app($this->getProvider()['model'])->where($this->filter($condition))->find();
  193. }
  194. /**
  195. *
  196. * @time 2020年01月07日
  197. * @param $condition
  198. * @return array
  199. */
  200. protected function filter($condition): array
  201. {
  202. $where = [];
  203. foreach ($condition as $field => $value) {
  204. if ($field != $this->password) {
  205. $where[$field] = $value;
  206. }
  207. }
  208. return $where;
  209. }
  210. /**
  211. *
  212. * @time 2020年01月07日
  213. * @param $field
  214. * @return $this
  215. */
  216. public function username($field): self
  217. {
  218. $this->username = $field;
  219. return $this;
  220. }
  221. /**
  222. *
  223. * @time 2020年01月07日
  224. * @param $field
  225. * @return $this
  226. */
  227. public function password($field): self
  228. {
  229. $this->password = $field;
  230. return $this;
  231. }
  232. }