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.
59 lines
1.9 KiB
59 lines
1.9 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace crmeb\services\workerman;
|
|
|
|
|
|
use app\services\system\admin\AdminAuthServices;
|
|
use crmeb\exceptions\AuthException;
|
|
use Workerman\Connection\TcpConnection;
|
|
|
|
class WorkermanHandle
|
|
{
|
|
protected $service;
|
|
|
|
public function __construct(WorkermanService &$service)
|
|
{
|
|
$this->service = &$service;
|
|
}
|
|
|
|
public function login(TcpConnection &$connection, array $res, Response $response)
|
|
{
|
|
if (!isset($res['data']) || !$token = $res['data']) {
|
|
return $response->close([
|
|
'msg' => '授权失败!'
|
|
]);
|
|
}
|
|
|
|
try {
|
|
/** @var AdminAuthServices $adminAuthService */
|
|
$adminAuthService = app()->make(AdminAuthServices::class);
|
|
$authInfo = $adminAuthService->parseToken($token);
|
|
} catch (AuthException $e) {
|
|
return $response->close([
|
|
'msg' => $e->getMessage(),
|
|
'code' => $e->getCode()
|
|
]);
|
|
}
|
|
|
|
if (!$authInfo || !isset($authInfo['id'])) {
|
|
return $response->close([
|
|
'msg' => '授权失败!'
|
|
]);
|
|
}
|
|
|
|
$connection->adminInfo = $authInfo;
|
|
$connection->adminId = $authInfo['id'];
|
|
$this->service->setUser($connection);
|
|
|
|
return $response->success();
|
|
}
|
|
}
|
|
|