Auth.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <?php
  2. namespace app\common\library;
  3. use app\common\model\User;
  4. use app\common\model\UserRule;
  5. use fast\Random;
  6. use think\Config;
  7. use think\Db;
  8. use think\Exception;
  9. use think\Hook;
  10. use think\Request;
  11. use think\Validate;
  12. class Auth
  13. {
  14. protected static $instance = null;
  15. protected $_error = '';
  16. protected $_logined = false;
  17. protected $_user = null;
  18. protected $_token = '';
  19. //Token默认有效时长
  20. protected $keeptime = 2592000;
  21. protected $requestUri = '';
  22. protected $rules = [];
  23. //默认配置
  24. protected $config = [];
  25. protected $options = [];
  26. protected $allowFields = ['id', 'username', 'nickname', 'mobile', 'avatar'];
  27. public function __construct($options = [])
  28. {
  29. if ($config = Config::get('user')) {
  30. $this->config = array_merge($this->config, $config);
  31. }
  32. $this->options = array_merge($this->config, $options);
  33. }
  34. /**
  35. *
  36. * @param array $options 参数
  37. * @return Auth
  38. */
  39. public static function instance($options = [])
  40. {
  41. if (is_null(self::$instance)) {
  42. self::$instance = new static($options);
  43. }
  44. return self::$instance;
  45. }
  46. /**
  47. * 获取User模型
  48. * @return User
  49. */
  50. public function getUser()
  51. {
  52. return $this->_user;
  53. }
  54. /**
  55. * 兼容调用user模型的属性
  56. *
  57. * @param string $name
  58. * @return mixed
  59. */
  60. public function __get($name)
  61. {
  62. return $this->_user ? $this->_user->$name : null;
  63. }
  64. /**
  65. * 兼容调用user模型的属性
  66. */
  67. public function __isset($name)
  68. {
  69. return isset($this->_user) ? isset($this->_user->$name) : false;
  70. }
  71. /**
  72. * 根据Token初始化
  73. *
  74. * @param string $token Token
  75. * @return boolean
  76. */
  77. public function init($token)
  78. {
  79. if ($this->_logined) {
  80. return true;
  81. }
  82. if ($this->_error) {
  83. return false;
  84. }
  85. $data = Token::get($token);
  86. if (!$data) {
  87. return false;
  88. }
  89. $user_id = intval($data['user_id']);
  90. if ($user_id > 0) {
  91. $user = User::get($user_id);
  92. if (!$user) {
  93. $this->setError('Account not exist');
  94. return false;
  95. }
  96. if ($user['status'] == -1) {
  97. $this->setError('账号已注销');
  98. return false;
  99. }
  100. if ($user['status'] != 1) {
  101. $this->setError('Account is locked');
  102. return false;
  103. }
  104. $this->_user = $user;
  105. $this->_logined = true;
  106. $this->_token = $token;
  107. //初始化成功的事件
  108. Hook::listen("user_init_successed", $this->_user);
  109. return true;
  110. } else {
  111. $this->setError('You are not logged in');
  112. return false;
  113. }
  114. }
  115. /**
  116. * 注册用户
  117. *
  118. * @param string $username 用户名
  119. * @param string $password 密码
  120. * @param string $email 邮箱
  121. * @param string $mobile 手机号
  122. * @param array $extend 扩展参数
  123. * @return boolean
  124. */
  125. public function register($username, $password, $email = '', $mobile = '', $extend = [])
  126. {
  127. // 检测用户名、昵称、邮箱、手机号是否存在
  128. if (User::getByUsername($username)) {
  129. $this->setError('Username already exist');
  130. return false;
  131. }
  132. if (User::getByNickname($username)) {
  133. $this->setError('Nickname already exist');
  134. return false;
  135. }
  136. if ($email && User::getByEmail($email)) {
  137. $this->setError('Email already exist');
  138. return false;
  139. }
  140. if ($mobile && User::getByMobile($mobile)) {
  141. $this->setError('Mobile already exist');
  142. return false;
  143. }
  144. $ip = request()->ip();
  145. $time = time();
  146. $data = [
  147. 'username' => $username,
  148. 'password' => $password,
  149. 'email' => $email,
  150. 'mobile' => $mobile,
  151. 'level' => 1,
  152. 'score' => 0,
  153. 'avatar' => '',
  154. ];
  155. $params = array_merge($data, [
  156. 'nickname' => preg_match("/^1[3-9]{1}\d{9}$/", $username) ? substr_replace($username, '****', 3, 4) : $username,
  157. 'salt' => Random::alnum(),
  158. 'jointime' => $time,
  159. 'joinip' => $ip,
  160. 'logintime' => $time,
  161. 'loginip' => $ip,
  162. 'prevtime' => $time,
  163. 'status' => 1
  164. ]);
  165. $params['password'] = $this->getEncryptPassword($password, $params['salt']);
  166. $params = array_merge($params, $extend);
  167. //账号注册时需要开启事务,避免出现垃圾数据
  168. Db::startTrans();
  169. try {
  170. $user = User::create($params, true);
  171. $this->_user = User::get($user->id);
  172. //设置Token
  173. $this->_token = Random::uuid();
  174. Token::set($this->_token, $user->id, $this->keeptime);
  175. //设置登录状态
  176. $this->_logined = true;
  177. //注册成功的事件
  178. Hook::listen("user_register_successed", $this->_user, $data);
  179. Db::commit();
  180. } catch (Exception $e) {
  181. $this->setError($e->getMessage());
  182. Db::rollback();
  183. return false;
  184. }
  185. return true;
  186. }
  187. /**
  188. * 用户登录
  189. *
  190. * @param string $account 账号,用户名、邮箱、手机号
  191. * @param string $password 密码
  192. * @return boolean
  193. */
  194. public function login($account, $password)
  195. {
  196. $field = Validate::is($account, 'email') ? 'email' : (Validate::regex($account, '/^1\d{10}$/') ? 'mobile' : 'username');
  197. $user = User::get([$field => $account]);
  198. if (!$user) {
  199. $this->setError('Account is incorrect');
  200. return false;
  201. }
  202. if ($user->status == -1) {
  203. $this->setError('账户已注销');
  204. return false;
  205. }
  206. if ($user->status != 1) {
  207. $this->setError('Account is locked');
  208. return false;
  209. }
  210. if ($user->password != $this->getEncryptPassword($password, $user->salt)) {
  211. $this->setError('Password is incorrect');
  212. return false;
  213. }
  214. //直接登录会员
  215. return $this->direct($user->id);
  216. }
  217. /**
  218. * 退出
  219. *
  220. * @return boolean
  221. */
  222. public function logout()
  223. {
  224. if (!$this->_logined) {
  225. $this->setError('You are not logged in');
  226. return false;
  227. }
  228. //设置登录标识
  229. $this->_logined = false;
  230. //删除Token
  231. Token::delete($this->_token);
  232. //退出成功的事件
  233. Hook::listen("user_logout_successed", $this->_user);
  234. return true;
  235. }
  236. /**
  237. * 修改密码
  238. * @param string $newpassword 新密码
  239. * @param string $oldpassword 旧密码
  240. * @param bool $ignoreoldpassword 忽略旧密码
  241. * @return boolean
  242. */
  243. public function changepwd($newpassword, $oldpassword = '', $ignoreoldpassword = false)
  244. {
  245. if (!$this->_logined) {
  246. $this->setError('You are not logged in');
  247. return false;
  248. }
  249. //判断旧密码是否正确
  250. if ($this->_user->password == $this->getEncryptPassword($oldpassword, $this->_user->salt) || $ignoreoldpassword) {
  251. Db::startTrans();
  252. try {
  253. $salt = Random::alnum();
  254. $newpassword = $this->getEncryptPassword($newpassword, $salt);
  255. $this->_user->save(['loginfailure' => 0, 'password' => $newpassword, 'salt' => $salt]);
  256. Token::delete($this->_token);
  257. //修改密码成功的事件
  258. Hook::listen("user_changepwd_successed", $this->_user);
  259. Db::commit();
  260. } catch (Exception $e) {
  261. Db::rollback();
  262. $this->setError($e->getMessage());
  263. return false;
  264. }
  265. return true;
  266. } else {
  267. $this->setError('Password is incorrect');
  268. return false;
  269. }
  270. }
  271. /**
  272. * 直接登录账号
  273. * @param int $user_id
  274. * @return boolean
  275. */
  276. public function direct($user_id)
  277. {
  278. $user = User::get($user_id);
  279. if ($user) {
  280. Db::startTrans();
  281. try {
  282. $ip = request()->ip();
  283. $time = time();
  284. //判断连续登录和最大连续登录
  285. if ($user->logintime < \fast\Date::unixtime('day')) {
  286. // $user->successions = $user->logintime < \fast\Date::unixtime('day', -1) ? 1 : $user->successions + 1;
  287. // $user->maxsuccessions = max($user->successions, $user->maxsuccessions);
  288. }
  289. $user->prevtime = $user->logintime;
  290. //记录本次登录的IP和时间
  291. $user->loginip = $ip;
  292. $user->logintime = $time;
  293. //重置登录失败次数
  294. $user->loginfailure = 0;
  295. $user->save();
  296. $this->_user = $user;
  297. $this->_token = Random::uuid();
  298. Token::set($this->_token, $user->id, $this->keeptime);
  299. $this->_logined = true;
  300. //登录成功的事件
  301. Hook::listen("user_login_successed", $this->_user);
  302. Db::commit();
  303. } catch (Exception $e) {
  304. Db::rollback();
  305. $this->setError($e->getMessage());
  306. return false;
  307. }
  308. return true;
  309. } else {
  310. return false;
  311. }
  312. }
  313. /**
  314. * 检测是否是否有对应权限
  315. * @param string $path 控制器/方法
  316. * @param string $module 模块 默认为当前模块
  317. * @return boolean
  318. */
  319. public function check($path = null, $module = null)
  320. {
  321. if (!$this->_logined) {
  322. return false;
  323. }
  324. $ruleList = $this->getRuleList();
  325. $rules = [];
  326. foreach ($ruleList as $k => $v) {
  327. $rules[] = $v['name'];
  328. }
  329. $url = ($module ? $module : request()->module()) . '/' . (is_null($path) ? $this->getRequestUri() : $path);
  330. $url = strtolower(str_replace('.', '/', $url));
  331. return in_array($url, $rules);
  332. }
  333. /**
  334. * 判断是否登录
  335. * @return boolean
  336. */
  337. public function isLogin()
  338. {
  339. if ($this->_logined) {
  340. return true;
  341. }
  342. return false;
  343. }
  344. /**
  345. * 获取当前Token
  346. * @return string
  347. */
  348. public function getToken()
  349. {
  350. return $this->_token;
  351. }
  352. /**
  353. * 获取会员基本信息
  354. */
  355. public function getUserinfo()
  356. {
  357. $data = $this->_user->toArray();
  358. $allowFields = $this->getAllowFields();
  359. $userinfo = array_intersect_key($data, array_flip($allowFields));
  360. $userinfo = array_merge($userinfo, Token::get($this->_token));
  361. return $userinfo;
  362. }
  363. /**
  364. * 获取会员组别规则列表
  365. * @return array|bool|\PDOStatement|string|\think\Collection
  366. */
  367. public function getRuleList()
  368. {
  369. if ($this->rules) {
  370. return $this->rules;
  371. }
  372. $group = $this->_user->group;
  373. if (!$group) {
  374. return [];
  375. }
  376. $rules = explode(',', $group->rules);
  377. $this->rules = UserRule::where('status', 1)->where('id', 'in', $rules)->field('id,pid,name,title,ismenu')->select();
  378. return $this->rules;
  379. }
  380. /**
  381. * 获取当前请求的URI
  382. * @return string
  383. */
  384. public function getRequestUri()
  385. {
  386. return $this->requestUri;
  387. }
  388. /**
  389. * 设置当前请求的URI
  390. * @param string $uri
  391. */
  392. public function setRequestUri($uri)
  393. {
  394. $this->requestUri = $uri;
  395. }
  396. /**
  397. * 获取允许输出的字段
  398. * @return array
  399. */
  400. public function getAllowFields()
  401. {
  402. return $this->allowFields;
  403. }
  404. /**
  405. * 设置允许输出的字段
  406. * @param array $fields
  407. */
  408. public function setAllowFields($fields)
  409. {
  410. $this->allowFields = $fields;
  411. }
  412. /**
  413. * 删除一个指定会员
  414. * @param int $user_id 会员ID
  415. * @return boolean
  416. */
  417. public function delete($user_id)
  418. {
  419. $user = User::get($user_id);
  420. if (!$user) {
  421. return false;
  422. }
  423. Db::startTrans();
  424. try {
  425. // 删除会员
  426. User::destroy($user_id);
  427. // 删除会员指定的所有Token
  428. Token::clear($user_id);
  429. Hook::listen("user_delete_successed", $user);
  430. Db::commit();
  431. } catch (Exception $e) {
  432. Db::rollback();
  433. $this->setError($e->getMessage());
  434. return false;
  435. }
  436. return true;
  437. }
  438. /**
  439. * 获取密码加密后的字符串
  440. * @param string $password 密码
  441. * @param string $salt 密码盐
  442. * @return string
  443. */
  444. public function getEncryptPassword($password, $salt = '')
  445. {
  446. return md5(md5($password) . $salt);
  447. }
  448. /**
  449. * 检测当前控制器和方法是否匹配传递的数组
  450. *
  451. * @param array $arr 需要验证权限的数组
  452. * @return boolean
  453. */
  454. public function match($arr = [])
  455. {
  456. $request = Request::instance();
  457. $arr = is_array($arr) ? $arr : explode(',', $arr);
  458. if (!$arr) {
  459. return false;
  460. }
  461. $arr = array_map('strtolower', $arr);
  462. // 是否存在
  463. if (in_array(strtolower($request->action()), $arr) || in_array('*', $arr)) {
  464. return true;
  465. }
  466. // 没找到匹配
  467. return false;
  468. }
  469. /**
  470. * 设置会话有效时间
  471. * @param int $keeptime 默认为永久
  472. */
  473. public function keeptime($keeptime = 0)
  474. {
  475. $this->keeptime = $keeptime;
  476. }
  477. /**
  478. * 渲染用户数据
  479. * @param array $datalist 二维数组
  480. * @param mixed $fields 加载的字段列表
  481. * @param string $fieldkey 渲染的字段
  482. * @param string $renderkey 结果字段
  483. * @return array
  484. */
  485. public function render(&$datalist, $fields = [], $fieldkey = 'user_id', $renderkey = 'userinfo')
  486. {
  487. $fields = !$fields ? ['id', 'nickname', 'level', 'avatar'] : (is_array($fields) ? $fields : explode(',', $fields));
  488. $ids = [];
  489. foreach ($datalist as $k => $v) {
  490. if (!isset($v[$fieldkey])) {
  491. continue;
  492. }
  493. $ids[] = $v[$fieldkey];
  494. }
  495. $list = [];
  496. if ($ids) {
  497. if (!in_array('id', $fields)) {
  498. $fields[] = 'id';
  499. }
  500. $ids = array_unique($ids);
  501. $selectlist = User::where('id', 'in', $ids)->column($fields);
  502. foreach ($selectlist as $k => $v) {
  503. $list[$v['id']] = $v;
  504. }
  505. }
  506. foreach ($datalist as $k => &$v) {
  507. $v[$renderkey] = $list[$v[$fieldkey]] ?? null;
  508. }
  509. unset($v);
  510. return $datalist;
  511. }
  512. /**
  513. * 设置错误信息
  514. *
  515. * @param string $error 错误信息
  516. * @return Auth
  517. */
  518. public function setError($error)
  519. {
  520. $this->_error = $error;
  521. return $this;
  522. }
  523. /**
  524. * 获取错误信息
  525. * @return string
  526. */
  527. public function getError()
  528. {
  529. return $this->_error ? __($this->_error) : '';
  530. }
  531. }