截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TokenValidate.php 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shopapi\validate;
  20. use app\common\basics\Validate;
  21. use app\common\model\shop\ShopAdmin;
  22. use app\common\model\ShopSession as SessionModel;
  23. /**
  24. * 商家移动端管理员登录token验证
  25. * Class TokenValidate
  26. * @package app\shopapi\validate
  27. */
  28. class TokenValidate extends Validate
  29. {
  30. protected $rule = [
  31. 'token' => 'require|valid|admin',
  32. ];
  33. /**
  34. * User: 意象信息科技 lr
  35. * Desc: token验证
  36. * @param $token
  37. * @param $other
  38. * @param $data
  39. * @return bool|string
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. */
  44. protected function valid($token, $other, $data)
  45. {
  46. $session = SessionModel::where(['token' => $token])->find();
  47. if (empty($session)) {
  48. return '会话失效,请重新登录';
  49. }
  50. if ($session['expire_time'] <= time()) {
  51. return '登录超时,请重新登录';
  52. }
  53. return true;
  54. }
  55. /**
  56. * User: 意象信息科技 lr
  57. * Desc 用户验证
  58. * @param $token
  59. * @param $other
  60. * @param $data
  61. * @return string
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. * @throws \think\exception\DbException
  65. */
  66. protected function admin($token, $other, $data)
  67. {
  68. $admin_id = SessionModel::where(['token' => $token])
  69. ->value('admin_id');
  70. $admin_info = ShopAdmin::where(['id' => $admin_id, 'del' => 0])
  71. ->find();
  72. if (empty($admin_info)) {
  73. return '用户不存在';
  74. }
  75. if ($admin_info['disable'] == 1) {
  76. return '用户被禁用';
  77. }
  78. return true;
  79. }
  80. }