Files
huangjingfen/pro_v3.5.1/app/webscoket/handler/AdminHandler.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

48 lines
1.3 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\webscoket\handler;
use app\services\system\admin\AdminAuthServices;
use app\webscoket\BaseHandler;
use app\webscoket\Response;
use crmeb\exceptions\AuthException;
/**
* Class AdminHandler
* @package app\webscoket\handler
*/
class AdminHandler extends BaseHandler
{
/**
* 后台登陆
* @param array $data
* @param Response $response
* @return bool|\think\response\Json|null
* @throws \Psr\SimpleCache\InvalidArgumentException
*/
public function login(array $data, Response $response)
{
if (!isset($data['token']) || !$token = $data['token']) {
return $response->fail('授权失败!');
}
try {
/** @var AdminAuthServices $adminAuthService */
$adminAuthService = app()->make(AdminAuthServices::class);
$authInfo = $adminAuthService->parseToken($token);
} catch (AuthException $e) {
return $response->fail($e->getMessage());
}
if (!$authInfo || !isset($authInfo['id'])) {
return $response->fail('授权失败!');
}
return $response->success(['uid' => $authInfo['id']]);
}
}