截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TokenValidate.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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\kefuapi\validate;
  20. use app\common\basics\Validate;
  21. use app\common\model\Admin;
  22. use app\common\model\kefu\Kefu;
  23. use app\common\model\kefu\KefuSession;
  24. use app\common\model\shop\ShopAdmin;
  25. /**
  26. * 客服登录验证
  27. * Class TokenValidate
  28. * @package app\kefu\validate
  29. */
  30. class TokenValidate extends Validate
  31. {
  32. protected $rule = [
  33. 'token' => 'require|valid|chat',
  34. ];
  35. /**
  36. * @notes token验证
  37. * @param $token
  38. * @param $other
  39. * @param $data
  40. * @return bool|string
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\DbException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. * @author 段誉
  45. * @date 2021/11/23 10:55
  46. */
  47. protected function valid($token, $other, $data)
  48. {
  49. $session = KefuSession::where(['token' => $token])->find();
  50. if (empty($session)) {
  51. return '会话失效,请重新登录';
  52. }
  53. if ($session['expire_time'] <= time()) {
  54. return '登录超时,请重新登录';
  55. }
  56. return true;
  57. }
  58. /**
  59. * @notes 用户验证
  60. * @param $token
  61. * @param $other
  62. * @param $data
  63. * @return bool|string
  64. * @author 段誉
  65. * @date 2021/11/23 17:29
  66. */
  67. protected function chat($token, $other, $data)
  68. {
  69. $kefu = (new Kefu())->alias('k')
  70. ->join('kefu_session ks', 'k.id = ks.kefu_id')
  71. ->where(['ks.token' => $token, 'k.del' => 0])
  72. ->field('k.*,ks.token,ks.client')
  73. ->hidden(['password'])
  74. ->findOrEmpty();
  75. if ($kefu->isEmpty()) {
  76. return '用户不存在';
  77. }
  78. // 获取客服对应的管理员信息
  79. if ($kefu['shop_id'] > 0) {
  80. $kefu_admin = (new ShopAdmin())->where(['id' => $kefu['admin_id']])->findOrEmpty();
  81. } else {
  82. $kefu_admin = (new Admin())->where(['id' => $kefu['admin_id']])->findOrEmpty();
  83. }
  84. if ($kefu_admin->isEmpty()) {
  85. return '关联管理员不存在';
  86. }
  87. if ($kefu['disable'] == 1 || $kefu_admin['disable'] == 1) {
  88. return '用户被禁用';
  89. }
  90. return true;
  91. }
  92. }