56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
|
||
namespace app\webscoket\handler;
|
||
|
||
use app\services\store\LoginServices;
|
||
use app\webscoket\BaseHandler;
|
||
use app\webscoket\Response;
|
||
use crmeb\exceptions\AuthException;
|
||
|
||
/**
|
||
* Class StoreHandler
|
||
* @package app\webscoket\handler
|
||
*/
|
||
class StoreHandler extends BaseHandler
|
||
{
|
||
/**
|
||
* 门店登录
|
||
* @param array $data
|
||
* @param Response $response
|
||
* @return bool|mixed|\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 LoginServices $services */
|
||
$services = app()->make(LoginServices::class);
|
||
$authInfo = $services->parseToken($token);
|
||
} catch (AuthException $e) {
|
||
return $response->fail($e->getMessage());
|
||
}
|
||
|
||
if (!$authInfo || !isset($authInfo['id'])) {
|
||
return $response->fail('授权失败!');
|
||
}
|
||
|
||
return $response->success(['uid' => $authInfo['store_id']]);
|
||
}
|
||
|
||
}
|