Auth.php 17 KB

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