hyperf-chat/app/Controller/Api/V1/CController.php

42 lines
850 B
PHP
Raw Normal View History

2020-11-04 11:57:16 +08:00
<?php
2020-12-26 21:33:40 +08:00
/**
* This is my open source code, please do not use it for commercial applications.
* For the full copyright and license information,
* please view the LICENSE file that was distributed with this source code
*
* @author Yuandong<837215079@qq.com>
* @link https://github.com/gzydong/hyperf-chat
*/
2020-11-04 11:57:16 +08:00
namespace App\Controller\Api\V1;
2020-11-29 14:44:11 +08:00
use Hyperf\Di\Annotation\Inject;
2020-11-04 11:57:16 +08:00
use App\Controller\AbstractController;
2020-11-07 22:57:10 +08:00
use App\Support\Response;
2020-11-04 11:57:16 +08:00
2020-11-04 16:47:17 +08:00
/**
* 基类控制器
*
* @package App\Controller\Api\V1
*/
2020-11-04 11:57:16 +08:00
class CController extends AbstractController
{
2020-11-04 16:47:17 +08:00
/**
* @Inject
* @var Response
*/
protected $response;
2020-11-04 22:58:49 +08:00
/**
* 获取当前登录用户ID
*
* @return int
*/
2020-11-29 17:39:24 +08:00
public function uid()
{
2020-12-26 21:33:40 +08:00
$data = $this->request->getAttribute('auth_data');
return $data['user_id'] ?? 0;
2020-11-04 22:58:49 +08:00
}
2020-11-04 11:57:16 +08:00
}