123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- namespace app\webscoket\handler;
- use app\common\repositories\system\admin\AdminRepository;
- use ln\services\JwtTokenService;
- use Firebase\JWT\ExpiredException;
- use Swoole\Server;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use Throwable;
- /**
- * Class Handler
- * @package app\webscoket
- * @author zfy
- * @day 2020-04-29
- */
- class AdminHandler
- {
- /**
- * @var Server
- */
- protected $server;
- /**
- * AdminHandler constructor.
- * @param Server $server
- */
- public function __construct(Server $server)
- {
- $this->server = $server;
- }
- /**
- * @param array $data
- * @return mixed
- * @author zfy
- * @day 2020-05-06
- */
- public function test(array $data)
- {
- return app('json')->success($data);
- }
- /**
- * @param array $data
- * @return mixed
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author zfy
- * @day 2020-05-06
- */
- public function login(array $data)
- {
- $token = $data['token'] ?? '';
- if (!$token) return app('json')->fail('token 无效');
- /**
- * @var AdminRepository $repository
- */
- $repository = app()->make(AdminRepository::class);
- $service = new JwtTokenService();
- try {
- $payload = $service->parseToken($token);
- } catch (ExpiredException $e) {
- $repository->checkToken($token);
- $payload = $service->decode($token);
- } catch (Throwable $e) {//Token 过期
- return app('json')->fail('token 已过期');
- }
- if ('admin' != $payload->jti[1])
- return app('json')->fail('无效的 token');
- $admin = $repository->get($payload->jti[0]);
- if (!$admin)
- return app('json')->fail('账号不存在');
- if (!$admin['status'])
- return app('json')->fail('账号已被禁用');
- return app('json')->success(['uid' => $admin->admin_id, 'data' => $admin->toArray()]);
- }
- }
|