mobileMiddleware.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. namespace app\mobile\middleware;
  3. use app\mobile\logic\BaseLogic;
  4. use app\model\AccountModel;
  5. use app\model\AccountTokenModel;
  6. use app\model\CommonModel;
  7. use think\exception\ValidateException;
  8. use think\facade\Config;
  9. use think\facade\Validate;
  10. use think\Response;
  11. use app\model\AccountLogModel;
  12. //中间件
  13. class mobileMiddleware
  14. {
  15. //白名单
  16. private $white_list = ['login'];
  17. //请求入口
  18. public function handle($request, \Closure $next)
  19. {
  20. //请求的唯一标识
  21. $request->request_id = date('YmdHis') . mt_rand(100000, 999999);
  22. //接收参数
  23. $param = $request->post();
  24. //记录日志
  25. AccountLogModel::add($request->request_id, $param);
  26. //判断白名单
  27. if (!in_array(request()->pathinfo(), $this->white_list)) {
  28. $val = Validate::rule(['token' => 'require']);
  29. if (!$val->check($param)) throw new ValidateException($val->getError());
  30. //获取用户信息
  31. $account = $this->verifyMobileToken($param['token']);
  32. BaseLogic::setUserInfo($account['aid'], $account['aname'], $account['company_id'], $account['card_id']);
  33. $request->aid = $account['aid'];
  34. $request->aname = $account['aname'];
  35. $request->company_id = $account['company_id'];
  36. $request->card_id = $account['card_id'];
  37. }
  38. return $next($request);
  39. }
  40. //请求结束的回调(如果返回数据用的是app_show/error_show,即直接echo,则不会触发该方法)
  41. public function end(Response $response)
  42. {
  43. //只做记录,不做输出
  44. AccountLogModel::where('request_id', request()->request_id)->save([
  45. 'response' => $response->getContent(),
  46. 'uid' => request()->uid ?? 0,
  47. 'uname' => request()->uname ?? '',
  48. 'updatetime' => date('Y-m-d H:i:s')
  49. ]);
  50. }
  51. //校验手机端token
  52. private function verifyMobileToken(string $token = '')
  53. {
  54. $has = AccountTokenModel::where(['token' => $token])->findOrEmpty();
  55. if ($has->isEmpty()) throw new ValidateException('token不存在');
  56. if (strtotime($has->expiretime) <= time()) throw new ValidateException('token已失效');
  57. $account = AccountModel::where(['id' => $has->accountid, 'is_del' => CommonModel::$del_normal])
  58. ->field('id,status,username,salt,company_id,card_id')
  59. ->findOrEmpty();
  60. if ($account->isEmpty()) throw new ValidateException('未找到账户');
  61. if ($account->status != AccountModel::$status_activated) throw new ValidateException('账户不在激活状态,无法使用');
  62. $token_str = base64_decode($token);
  63. $account_str = substr($token_str, 0, -10);
  64. if ($account_str == $account->username . $account->salt) {
  65. AccountTokenModel::where(['token' => $token])
  66. ->save(['expiretime' => date('Y-m-d H:i:s', time() + Config::get('common.expire'))]);
  67. return ['aid' => $account->id, 'aname' => $account->username, 'company_id' => $account->company_id, 'card_id' => $account->card_id];
  68. } else throw new ValidateException('账户token无效');
  69. }
  70. }